مشاهدة النسخة كاملة : سيستم اقوي لودر حمايه لودر [XMeGo]
Mahmoud
2019-05-08, 04:14 PM
بسم الله الرحمن الرحيم
ف الاول اللودر كن نزل علي تيم اكسور لاكنو قفل والحمد لله اللودر جاب مستخدمين كتير ليه(y)
ومعظم اللعب ال موجوده بتستخدمو حتي الان
هنخش ف الموضوع علي طول بالنسبه للحمايه
1- حمايه من تغير الملفات المهمه ف اللعبه
2- حمايه من تغير Conquer.exe
3- حمايه من معظم برامج الهكر ال ممكن حد يستخدمها
4- ملوش دعوه اطلاقا بسحب السورس او مش بيزود السحب بتعو
5- شغل كامل من غير نت فروم ورك وعلي جميع انواع الويندوز
6- اللودر علي حمايه قويه من التغير :p:p:p
شرح التركيب بقي زي اي لودر عادي
ف كلاسين هيتغيرو + مفتاح اللودر وبس كدا
1- Authentication
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.IO;
using System.Text;
using XMeGo.Network.Cryptography;
namespace XMeGo.Network.AuthPackets // غير اسم البروجيكت
{
public class Authentication : Interfaces.IPacket
{
public string Username;
public string Password;
public string Server;
public string Mac;
public Authentication()
{
}
public void Deserialize(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(37);
byte[] PasswordArray = BR.ReadBytes(32);
Password = Encoding.Default.GetString(PasswordArray);
XMeGoAntiHackLoR.Packets.Cryptography.LoaderEncryp tion.Decrypt(PasswordArray);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(31);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public void Deserialize2(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(36);
var PasswordArray = BR.ReadBytes(32);
XMeGoAntiHackLoRx2.Network.Cryptography.LoaderEncr yption.Decrypt(PasswordArray, 32);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(32);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public byte[] ToArray()
{
throw new NotImplementedException();
}
public void Send(Client.GameState client)
{
throw new NotImplementedException();
}
}
}
2-LoaderEncryption
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XMeGoAntiHackLoR.Packets.Cryptography// متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key =
{
4 ,
5 ,
1 ,
3 ,
66 ,
7 ,
77 ,
44 ,
100 ,
228 ,
21 ,
254 ,
234 ,
212 ,
114 ,
141 ,
214 ,
12 ,
55 ,
99 ,
100 ,
7 ,
98 ,
187 ,
190 ,
77 ,
65 ,
55 ,
44 ,
43 ,
21 ,
99
}; // idb
private static byte[] Key2 =
{
6,
4,
1,
7,
2,
33,
77,
66,
65,
44,
21,
254,
43,
212,
90,
44,
214,
12,
56,
99,
67,
7,
87,
99,
0,
77,
43,
11,
44,
22,
21,
99
}; // idb
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr)
{
var len = Encoding.Default.GetString(arr).Replace("\0", "").Length;
for (int i = 0; i < len; ++i)
{
arr[i] ^= Key2[88 * i & 0x1F];
arr[i] ^= Key[32 * i & 0x1C];
}
}
}
}
namespace XMeGoAntiHackLoRx2.Network.Cryptography//متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key = { 12, 12, 215, 10, 20, 11, 60, 193, 11, 96, 53, 157, 71, 37, 150, 225, 86, 224, 178, 184, 230, 147, 79, 194, 160, 0, 99, 239, 218, 134, 179, 13, 247, 155, 237, 245, 165, 245, 128, 144 };
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr, int size)
{
int length = Key.Length;
for (int i = 0; i < size; i++)
{
arr[i] ^= Key[(i + 1) % length];
arr[i] ^= Key[i % length];
}
}
}
}
3-Constants
GameCryptographyKey = "XMeGoAntiHackxxx";
طيب شويه صور بقي للحمايه دي
1- دي لو غيرت ف ملفات اللعبه :D
عفواً لايمكن عرض الروابط في الإرشيف
2- دي لو فتحت برامج هكر او بحثت عنها ف جوجل او غيرو طبعا زي منتو شيفين شريط مهام بيختفي:eek:
عفواً لايمكن عرض الروابط في الإرشيف
3- دي بقي طريقه ادخال معلومات السيرفر زي الاي بي والاسم والبورت:cry::cry:
عفواً لايمكن عرض الروابط في الإرشيف
طيب اتمني يكون الموضوع عجبكم وال يقف معه حجه يكلمني
وادي الروابط
1-ملفات اللودر
عفواً لايمكن عرض الروابط في الإرشيف
2-شرح التركيب و ملفات التركيب ال ف سورس
عفواً لايمكن عرض الروابط في الإرشيف
3-وده لينك صفحتي ع الفيس
عفواً لايمكن عرض الروابط في الإرشيف
salahsayed
2019-05-08, 04:35 PM
طب انا لما باجي اعدل علي ملفات في الباتش مش بيرضي يعدل
محمد ياسر
2019-05-08, 04:55 PM
الله ينور :emoji11:
تم تنسيق الموضوع ياريت بعد كدة تنسق موضيعك ولو مش عارف خش علي الموضوع ده كيفية انشاء موضوع منسق (عفواً لايمكن عرض الروابط في الإرشيف)
من شرح مدير المنتدي Hazem
Mahmoud
2019-05-08, 05:20 PM
تم تنسيق الموضوع ياريت بعد كدة تنسق موضيعك ولو مش عارف خش علي الموضوع ده كيفية انشاء موضوع منسق (عفواً لايمكن عرض الروابط في الإرشيف)
من شرح مدير المنتدي Hazem
شكرا مكنتش اعرف
MRonlineGvrix
2019-05-08, 08:15 PM
لووودر زبااالة مش شغاااااال
Amr Khalid
2019-05-08, 11:11 PM
عاااااااااش
Mahmoud
2019-05-09, 01:51 AM
طب انا لما باجي اعدل علي ملفات في الباتش مش بيرضي يعدل
لا يباشا شغال عندي وعند الناس
SHARO5AN
2019-05-09, 09:30 PM
لووودر زبااالة مش شغاااااال
انت ال مش عارف تشغلو واللودر تمام عن تجربه ومتركب علي سورس m.h.b [2d] :d
Users
2019-05-10, 11:15 AM
شغال على السورس البرتو؟؟؟؟
MohamedModyAdel
2019-05-12, 01:28 PM
تسلم ي حوبببببببببببب
مصطفي عدلي
2019-05-13, 04:48 PM
شغال على السورس البرتو؟؟؟؟
غال على السورس الب
Mahmoud
2019-05-13, 05:43 PM
لا دا لودر لسورسات 2 دي
عبدالله صبحي السادات
2019-05-16, 04:56 AM
شكررااااااااااا;)
etetoo2015
2019-05-19, 03:23 AM
مشكورررررر
عبدالله صبحي السادات
2019-05-20, 04:39 AM
رد: سيستم اقوي لودر حمايه لودر [XMeGo]
kaka1az
2019-05-21, 12:17 AM
لودر ميجو جميل
MRonlineGx
2019-05-22, 02:24 PM
[ldg []h hsjlv dfh hf, hgfhah
Elsopky
2019-05-24, 04:13 PM
تسلم يا باشا
osamamand
2019-05-31, 01:51 AM
شكرا على الودر
ابو حمزه9
2019-05-31, 02:19 AM
عاااااااااش
AliNasser
2019-06-01, 01:53 PM
thxxxxxxxxxx
ToRWadA
2019-06-02, 05:45 AM
جاري التجربة
mohamed wahdan1
2019-06-02, 08:33 PM
الله ينور شكرا
abdallahzuhair
2019-06-03, 11:47 AM
شكرا جاري التجربة
بشيغلاشمغ
2019-06-04, 06:07 AM
عااااااش + استمر
HBESA
2019-06-04, 05:20 PM
تسلم ياغزال
ttmmxx
2019-06-15, 02:28 PM
حلووووووووووووووووووووز
ALz3em
2019-06-16, 01:41 PM
تسلم
جارى التجربة
faresali2
2019-06-26, 09:44 PM
جارى التجربة و مشكور
Users
2019-06-26, 10:33 PM
طبعا غنى عن التعريف الله ينور
AhmedBayoumi
2019-07-03, 02:53 PM
تمام
ttmm77
2019-07-05, 08:44 PM
حلووووووووووووووو
youssefabdelmanam
2019-07-07, 07:37 AM
شكرا يا معلم
TarekMando
2019-07-09, 04:16 PM
تسلم
Mrahmed
2019-07-09, 08:18 PM
شكر جد يا اخويا
pishoy
2019-07-11, 03:10 PM
ty
uncelsam
2019-07-13, 10:22 PM
جميل بجد تسلم
brownlowbobby12
2019-07-19, 05:57 PM
جميل جدا جدا
Abdokamal
2019-07-21, 12:28 PM
عااااااااااااااااااااااااش
Abdokamal
2019-07-21, 12:29 PM
عاااااااااااااااااااااااااااااااااااااش ياميجو
ahmedbahgat
2019-07-21, 07:00 PM
:emoji11::emoji11::emoji11::emoji11:
bisho2009
2019-07-21, 11:12 PM
3aaaash
AhmedTikoo
2019-07-22, 03:08 PM
شكرااااااااااااا
youssefabdelmanam
2019-07-23, 05:11 PM
thanks
ahmedfathy
2019-07-26, 06:48 PM
الله ينور
Eslamahmed
2019-07-30, 06:42 AM
جميل
osama
2019-07-30, 11:51 PM
عااااااش + استمر
MeGoo
2019-07-31, 10:05 PM
بسم الله الرحمن الرحيم
ف الاول اللودر كن نزل علي تيم اكسور لاكنو قفل والحمد لله اللودر جاب مستخدمين كتير ليه(y)
ومعظم اللعب ال موجوده بتستخدمو حتي الان
هنخش ف الموضوع علي طول بالنسبه للحمايه
1- حمايه من تغير الملفات المهمه ف اللعبه
2- حمايه من تغير conquer.exe
3- حمايه من معظم برامج الهكر ال ممكن حد يستخدمها
4- ملوش دعوه اطلاقا بسحب السورس او مش بيزود السحب بتعو
5- شغل كامل من غير نت فروم ورك وعلي جميع انواع الويندوز
6- اللودر علي حمايه قويه من التغير :p:p:p
شرح التركيب بقي زي اي لودر عادي
ف كلاسين هيتغيرو + مفتاح اللودر وبس كدا
1- authentication
[code]// created by mego
// copyright © 2018 - 2019 tq digital
// xmego - project
// xmego - 01285338963 // 01068255178
using system;
using system.io;
using system.text;
using xmego.network.cryptography;
namespace xmego.network.authpackets // غير اسم البروجيكت
{
public class authentication : Interfaces.ipacket
{
public string username;
public string password;
public string server;
public string mac;
public authentication()
{
}
public void deserialize(byte[] buffer)
{
if (buffer.length == 312)
{
ushort length = bitconverter.touint16(buffer, 0);
if (length == 312)
{
ushort type = bitconverter.touint16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
memorystream ms = new memorystream(buffer);
binaryreader br = new binaryreader(ms);
br.readuint16();
br.readuint16();
username = encoding.default.getstring(br.readbytes(32));
username = username.replace("\0", "");
br.readbytes(37);
byte[] passwordarray = br.readbytes(32);
password = encoding.default.getstring(passwordarray);
xmegoantihacklor.packets.cryptography.loaderencryp tion.decrypt(passwordarray);
password = encoding.default.getstring(passwordarray);
password = password.replace("\0", "");
br.readbytes(31);
server = encoding.default.getstring(br.readbytes(16));
server = server.replace("\0", "");
mac = encoding.default.getstring(br.readbytes(16));
mac = mac.replace("\0", "");
br.close();
ms.close();
}
}
}
}
public void deserialize2(byte[] buffer)
{
if (buffer.length == 312)
{
ushort length = bitconverter.touint16(buffer, 0);
if (length == 312)
{
ushort type = bitconverter.touint16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
memorystream ms = new memorystream(buffer);
binaryreader br = new binaryreader(ms);
br.readuint16();
br.readuint16();
username = encoding.default.getstring(br.readbytes(32));
username = username.replace("\0", "");
br.readbytes(36);
var passwordarray = br.readbytes(32);
xmegoantihacklorx2.network.cryptography.loaderencr yption.decrypt(passwordarray, 32);
password = encoding.default.getstring(passwordarray);
password = password.replace("\0", "");
br.readbytes(32);
server = encoding.default.getstring(br.readbytes(16));
server = server.replace("\0", "");
mac = encoding.default.getstring(br.readbytes(16));
mac = mac.replace("\0", "");
br.close();
ms.close();
}
}
}
}
public byte[] toarray()
{
throw new notimplementedexception();
}
public void send(client.gamestate client)
{
throw new notimplementedexception();
}
}
}
2-loaderencryption
[code]// created by mego
// copyright © 2018 - 2019 tq digital
// xmego - project
// xmego - 01285338963 // 01068255178
using system;
using system.collections.generic;
using system.linq;
using system.text;
namespace xmegoantihacklor.packets.cryptography// متغيرش اسم البروجيكت
{
public class loaderencryption
{
private static byte[] key =
{
4 ,
5 ,
1 ,
3 ,
66 ,
7 ,
77 ,
44 ,
100 ,
228 ,
21 ,
254 ,
234 ,
212 ,
114 ,
141 ,
214 ,
12 ,
55 ,
99 ,
100 ,
7 ,
98 ,
187 ,
190 ,
77 ,
65 ,
55 ,
44 ,
43 ,
21 ,
99
}; // idb
private static byte[] key2 =
{
6,
4,
1,
7,
2,
33,
77,
66,
65,
44,
21,
254,
43,
212,
90,
44,
214,
12,
56,
99,
67,
7,
87,
99,
0,
77,
43,
11,
44,
22,
21,
99
}; // idb
public static void encrypt(byte[] arr)
{
int length = key.length;
for (int i = 0; i < arr.length; i++)
{
arr[i] ^= key[i % length];
arr[i] ^= key[(i + 1) % length];
}
}
public static void decrypt(byte[] arr)
{
var len = encoding.default.getstring(arr).replace("\0", "").length;
for (int i = 0; i < len; ++i)
{
arr[i] ^= key2[88 * i & 0x1f];
arr[i] ^= key[32 * i & 0x1c];
}
}
}
}
namespace xmegoantihacklorx2.network.cryptography//متغيرش اسم البروجيكت
{
public class loaderencryption
{
private static byte[] key = { 12, 12, 215, 10, 20, 11, 60, 193, 11, 96, 53, 157, 71, 37, 150, 225, 86, 224, 178, 184, 230, 147, 79, 194, 160, 0, 99, 239, 218, 134, 179, 13, 247, 155, 237, 245, 165, 245, 128, 144 };
public static void encrypt(byte[] arr)
{
int length = key.length;
for (int i = 0; i < arr.length; i++)
{
arr[i] ^= key[i % length];
arr[i] ^= key[(i + 1) % length];
}
}
public static void decrypt(byte[] arr, int size)
{
int length = key.length;
for (int i = 0; i < size; i++)
{
arr[i] ^= key[(i + 1) % length];
arr[i] ^= key[i % length];
}
}
}
}
3-constants
gamecryptographykey = "xmegoantihackxxx";
طيب شويه صور بقي للحمايه دي
1- دي لو غيرت ف ملفات اللعبه :d
2- دي لو فتحت برامج هكر او بحثت عنها ف جوجل او غيرو طبعا زي منتو شيفين شريط مهام بيختفي:eek:
3- دي بقي طريقه ادخال معلومات السيرفر زي الاي بي والاسم والبورت:cry::cry:
طيب اتمني يكون الموضوع عجبكم وال يقف معه حجه يكلمني وادي الروابط
انتهي الموضوع
منقول من
انا عندى الحماية دي على السورس والباتش
عاوز اشلهم الغي الحماية دي ازاى او اغير اية عشان الغي الباتش دا
gem5666
2019-08-03, 12:42 PM
شكرا جدا
ابو مروان
2019-08-04, 03:00 AM
عاش
collins
2019-08-04, 02:34 PM
عاش
youssefabdelmanam
2019-08-06, 08:18 PM
thanks
islampepo33
2019-08-07, 04:04 PM
مشكووووووور
Legends02
2019-08-09, 08:29 PM
gracias hermano por esto
DragonVIP
2019-08-10, 01:07 AM
بلتوفيق ♥
jh3isson
2019-08-11, 06:34 PM
Thanks for your resource
طلعت ماهر
2019-08-11, 07:35 PM
مشكوووور
Avengers-Co
2019-08-21, 07:34 PM
جاري التجربة
DrShimanex
2019-08-22, 11:01 AM
تسلم ايدك
Hassan Emprator
2019-08-23, 11:06 AM
عاش
xQuaresma
2019-08-25, 11:45 PM
عااااش
basemm
2019-08-27, 11:53 PM
عاش تسلم ايدك
yousefhtrikano
2019-08-28, 11:25 AM
عااااش لودر حلو
loveosama
2019-09-03, 12:12 AM
شكرا
abdallah55
2019-09-04, 04:33 PM
جاري التجربه
Mo Khalid
2019-09-12, 12:10 PM
جااااااااااامد
Saad Hydra
2019-09-15, 01:03 AM
جميل
ViORX
2019-09-15, 01:50 AM
تسلم ايدك
photog
2019-09-15, 03:46 PM
nice
amosha
2019-09-15, 05:55 PM
تجروبه
AhmedLotfy
2019-09-16, 05:10 AM
تسلم
collins
2019-09-16, 08:18 AM
3a4
Zombie
2019-09-16, 12:47 PM
ش
MrTnGuO
2019-09-17, 05:40 PM
مشكوووووووووووووووووووور
ابو حمزه9
2019-09-17, 05:42 PM
مشكوووووووووووووووووووور
أسمها مشكور
ولا "مشكوووووووووووووووووووور"
:(
Diego
2019-10-06, 12:03 AM
عاااش
ahmedwpsss
2019-10-21, 02:11 PM
تسلم ي كبير
ahmedawad11
2019-10-29, 07:31 PM
تسلم
MaZzGanGYy
2019-11-01, 05:48 PM
عااش
Mostafa Shalby
2019-11-05, 02:46 AM
استمر
ahmed505010
2019-11-14, 10:24 PM
مشكور
Mawdo3jded
2019-11-24, 07:27 AM
استغفر الله العظيم
sheko12
2019-12-01, 01:27 AM
ghf
MaNGaWy
2019-12-01, 01:33 PM
تسلم ايييدك
Thinker
2019-12-06, 03:05 PM
شكراااا
Hunter
2019-12-06, 10:30 PM
boom
Alaa Ghanem
2019-12-08, 12:38 PM
الله ينور تسلم
بس مش عارف اعدل علي ملف x-mego.dat
469fb2a7c3
2019-12-11, 06:07 PM
تسلم ايدك
ElSaher
2020-01-25, 06:37 PM
عاش
mohamed wahdan
2020-01-25, 06:39 PM
عاااااااااش
aad12
2020-02-05, 01:20 PM
تم تنسيق الموضوع ياريت بعد كدة تنسق موضيعك ولو مش عارف خش علي الموضوع ده
من شرح مدير المنتدي Hazem
عاش
shkaoa
2020-02-07, 08:20 PM
شكرا
TiTo1
2020-02-12, 06:12 PM
تمام
bosha1
2020-02-16, 04:25 AM
تسلم ي رايق
abdullahasd
2020-02-20, 11:00 PM
سلسل
alaaalden
2020-02-21, 10:19 PM
tslam edak
hamza
2020-02-22, 03:58 AM
تسلم يا كبير
mohammedzonzor
2020-02-26, 06:57 AM
عاش
moamenessam222
2020-02-26, 03:29 PM
بسم الله الرحمن الرحيم
ف الاول اللودر كن نزل علي تيم اكسور لاكنو قفل والحمد لله اللودر جاب مستخدمين كتير ليه(y)
ومعظم اللعب ال موجوده بتستخدمو حتي الان
هنخش ف الموضوع علي طول بالنسبه للحمايه
1- حمايه من تغير الملفات المهمه ف اللعبه
2- حمايه من تغير Conquer.exe
3- حمايه من معظم برامج الهكر ال ممكن حد يستخدمها
4- ملوش دعوه اطلاقا بسحب السورس او مش بيزود السحب بتعو
5- شغل كامل من غير نت فروم ورك وعلي جميع انواع الويندوز
6- اللودر علي حمايه قويه من التغير :p:p:p
شرح التركيب بقي زي اي لودر عادي
ف كلاسين هيتغيرو + مفتاح اللودر وبس كدا
1- Authentication
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.IO;
using System.Text;
using XMeGo.Network.Cryptography;
namespace XMeGo.Network.AuthPackets // غير اسم البروجيكت
{
public class Authentication : Interfaces.IPacket
{
public string Username;
public string Password;
public string Server;
public string Mac;
public Authentication()
{
}
public void Deserialize(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(37);
byte[] PasswordArray = BR.ReadBytes(32);
Password = Encoding.Default.GetString(PasswordArray);
XMeGoAntiHackLoR.Packets.Cryptography.LoaderEncryp tion.Decrypt(PasswordArray);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(31);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public void Deserialize2(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(36);
var PasswordArray = BR.ReadBytes(32);
XMeGoAntiHackLoRx2.Network.Cryptography.LoaderEncr yption.Decrypt(PasswordArray, 32);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(32);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public byte[] ToArray()
{
throw new NotImplementedException();
}
public void Send(Client.GameState client)
{
throw new NotImplementedException();
}
}
}
2-LoaderEncryption
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XMeGoAntiHackLoR.Packets.Cryptography// متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key =
{
4 ,
5 ,
1 ,
3 ,
66 ,
7 ,
77 ,
44 ,
100 ,
228 ,
21 ,
254 ,
234 ,
212 ,
114 ,
141 ,
214 ,
12 ,
55 ,
99 ,
100 ,
7 ,
98 ,
187 ,
190 ,
77 ,
65 ,
55 ,
44 ,
43 ,
21 ,
99
}; // idb
private static byte[] Key2 =
{
6,
4,
1,
7,
2,
33,
77,
66,
65,
44,
21,
254,
43,
212,
90,
44,
214,
12,
56,
99,
67,
7,
87,
99,
0,
77,
43,
11,
44,
22,
21,
99
}; // idb
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr)
{
var len = Encoding.Default.GetString(arr).Replace("\0", "").Length;
for (int i = 0; i < len; ++i)
{
arr[i] ^= Key2[88 * i & 0x1F];
arr[i] ^= Key[32 * i & 0x1C];
}
}
}
}
namespace XMeGoAntiHackLoRx2.Network.Cryptography//متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key = { 12, 12, 215, 10, 20, 11, 60, 193, 11, 96, 53, 157, 71, 37, 150, 225, 86, 224, 178, 184, 230, 147, 79, 194, 160, 0, 99, 239, 218, 134, 179, 13, 247, 155, 237, 245, 165, 245, 128, 144 };
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr, int size)
{
int length = Key.Length;
for (int i = 0; i < size; i++)
{
arr[i] ^= Key[(i + 1) % length];
arr[i] ^= Key[i % length];
}
}
}
}
3-Constants
GameCryptographyKey = "XMeGoAntiHackxxx";
طيب شويه صور بقي للحمايه دي
1- دي لو غيرت ف ملفات اللعبه :D
عفواً لايمكن عرض الروابط في الإرشيف
2- دي لو فتحت برامج هكر او بحثت عنها ف جوجل او غيرو طبعا زي منتو شيفين شريط مهام بيختفي:eek:
عفواً لايمكن عرض الروابط في الإرشيف
3- دي بقي طريقه ادخال معلومات السيرفر زي الاي بي والاسم والبورت:cry::cry:
عفواً لايمكن عرض الروابط في الإرشيف
طيب اتمني يكون الموضوع عجبكم وال يقف معه حجه يكلمني وادي الروابط
عفواً لايمكن عرض الروابط في الإرشيف (عفواً لايمكن عرض الروابط في الإرشيف)
2- شرح التركيب و ملفات التركيب ال ف سورس (عفواً لايمكن عرض الروابط في الإرشيف %D8%A7%D9%84%D9%84%D9%88%D8%AF%D8%B1.rar)
3- حساب الفيس بوك بتاع ميجو (عفواً لايمكن عرض الروابط في الإرشيف)
انتهي الموضوع
منقول من منتدى فكرة (عفواً لايمكن عرض الروابط في الإرشيف)
عااش
magicoteam
2020-02-28, 04:29 AM
ty
Tarek Roshdi
2020-03-10, 02:02 AM
شكرا
Dragonfantasy05
2020-03-13, 05:54 PM
نرجو أن تكون البركة معك دائما
tekatop0
2020-03-16, 03:53 AM
تسلم ايدك
Circle
2020-03-16, 10:12 PM
بسم الله الرحمن الرحيم
ف الاول اللودر كن نزل علي تيم اكسور لاكنو قفل والحمد لله اللودر جاب مستخدمين كتير ليه(y)
ومعظم اللعب ال موجوده بتستخدمو حتي الان
هنخش ف الموضوع علي طول بالنسبه للحمايه
1- حمايه من تغير الملفات المهمه ف اللعبه
2- حمايه من تغير Conquer.exe
3- حمايه من معظم برامج الهكر ال ممكن حد يستخدمها
4- ملوش دعوه اطلاقا بسحب السورس او مش بيزود السحب بتعو
5- شغل كامل من غير نت فروم ورك وعلي جميع انواع الويندوز
6- اللودر علي حمايه قويه من التغير :p:p:p
شرح التركيب بقي زي اي لودر عادي
ف كلاسين هيتغيرو + مفتاح اللودر وبس كدا
1- Authentication
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.IO;
using System.Text;
using XMeGo.Network.Cryptography;
namespace XMeGo.Network.AuthPackets // غير اسم البروجيكت
{
public class Authentication : Interfaces.IPacket
{
public string Username;
public string Password;
public string Server;
public string Mac;
public Authentication()
{
}
public void Deserialize(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(37);
byte[] PasswordArray = BR.ReadBytes(32);
Password = Encoding.Default.GetString(PasswordArray);
XMeGoAntiHackLoR.Packets.Cryptography.LoaderEncryp tion.Decrypt(PasswordArray);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(31);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public void Deserialize2(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(36);
var PasswordArray = BR.ReadBytes(32);
XMeGoAntiHackLoRx2.Network.Cryptography.LoaderEncr yption.Decrypt(PasswordArray, 32);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(32);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public byte[] ToArray()
{
throw new NotImplementedException();
}
public void Send(Client.GameState client)
{
throw new NotImplementedException();
}
}
}
2-LoaderEncryption
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XMeGoAntiHackLoR.Packets.Cryptography// متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key =
{
4 ,
5 ,
1 ,
3 ,
66 ,
7 ,
77 ,
44 ,
100 ,
228 ,
21 ,
254 ,
234 ,
212 ,
114 ,
141 ,
214 ,
12 ,
55 ,
99 ,
100 ,
7 ,
98 ,
187 ,
190 ,
77 ,
65 ,
55 ,
44 ,
43 ,
21 ,
99
}; // idb
private static byte[] Key2 =
{
6,
4,
1,
7,
2,
33,
77,
66,
65,
44,
21,
254,
43,
212,
90,
44,
214,
12,
56,
99,
67,
7,
87,
99,
0,
77,
43,
11,
44,
22,
21,
99
}; // idb
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr)
{
var len = Encoding.Default.GetString(arr).Replace("\0", "").Length;
for (int i = 0; i < len; ++i)
{
arr[i] ^= Key2[88 * i & 0x1F];
arr[i] ^= Key[32 * i & 0x1C];
}
}
}
}
namespace XMeGoAntiHackLoRx2.Network.Cryptography//متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key = { 12, 12, 215, 10, 20, 11, 60, 193, 11, 96, 53, 157, 71, 37, 150, 225, 86, 224, 178, 184, 230, 147, 79, 194, 160, 0, 99, 239, 218, 134, 179, 13, 247, 155, 237, 245, 165, 245, 128, 144 };
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr, int size)
{
int length = Key.Length;
for (int i = 0; i < size; i++)
{
arr[i] ^= Key[(i + 1) % length];
arr[i] ^= Key[i % length];
}
}
}
}
3-Constants
GameCryptographyKey = "XMeGoAntiHackxxx";
طيب شويه صور بقي للحمايه دي
1- دي لو غيرت ف ملفات اللعبه :D
عفواً لايمكن عرض الروابط في الإرشيف
2- دي لو فتحت برامج هكر او بحثت عنها ف جوجل او غيرو طبعا زي منتو شيفين شريط مهام بيختفي:eek:
عفواً لايمكن عرض الروابط في الإرشيف
3- دي بقي طريقه ادخال معلومات السيرفر زي الاي بي والاسم والبورت:cry::cry:
عفواً لايمكن عرض الروابط في الإرشيف
طيب اتمني يكون الموضوع عجبكم وال يقف معه حجه يكلمني وادي الروابط
عفواً لايمكن عرض الروابط في الإرشيف (عفواً لايمكن عرض الروابط في الإرشيف)
2- شرح التركيب و ملفات التركيب ال ف سورس (عفواً لايمكن عرض الروابط في الإرشيف %D8%A7%D9%84%D9%84%D9%88%D8%AF%D8%B1.rar)
3- حساب الفيس بوك بتاع ميجو (عفواً لايمكن عرض الروابط في الإرشيف)
انتهي الموضوع
منقول من منتدى فكرة (عفواً لايمكن عرض الروابط في الإرشيف)
عاش
Medoz
2020-03-19, 10:24 AM
تسلم
divad12345
2020-03-19, 09:34 PM
yes
mhmad123
2020-03-20, 01:25 AM
املس
anakarioky55
2020-03-20, 03:11 PM
جامد
lzhlxhxa
2020-03-21, 05:07 PM
thhis llla
llla thank lcl
anabatal
2020-03-22, 04:22 PM
عاش!
محمودمحمدسالم
2020-03-25, 04:30 PM
عاش
MohamedStarHell
2020-03-28, 04:29 PM
عاش
Abod ayman
2020-04-04, 05:08 AM
جاري التجربة
Tyranny-Team's
2020-04-05, 11:58 PM
مشكوور
ahmeddd
2020-04-07, 05:05 PM
عاش
Peter
2020-04-07, 07:48 PM
غااش
titohere766
2020-04-12, 06:27 PM
شكرا
Hardconquer02
2020-04-12, 10:31 PM
Lo necesito para 6030
sa3ed
2020-04-17, 05:51 PM
جميل
MahmoudElsndbad
2020-04-18, 05:26 AM
تسلم
ahmedwagih
2020-04-18, 11:20 PM
تلسم يا حبي
Mr3bdallahPro
2020-04-19, 02:52 PM
عاش
Dahmsh1020
2020-04-20, 03:45 AM
عاش
amr69940
2020-04-22, 09:01 AM
عااااش
Hazem20
2020-04-22, 11:31 PM
شكرا
Mr Coder
2020-04-24, 05:12 PM
:surrender::harhar1::harhar1::harhar1:
ahmedsamirali
2020-05-01, 04:53 AM
تالتالت
xAttack
2020-05-02, 03:37 PM
عااااش
ttmm22
2020-05-03, 12:44 AM
عاااااص
Eslam Elbana
2020-05-03, 01:40 PM
tmam
Royal-Co
2020-05-05, 08:17 PM
♥♥
Mr NemNem
2020-05-07, 05:51 PM
مشككور بس مفيش ايقونة للفتح بس تكون مفهاش فيرس
Uchiha T3Alo
2020-05-08, 07:37 AM
؟!
Lucifer
2020-05-09, 07:37 AM
.
algendyking2020
2020-05-11, 03:33 PM
شكرا
algendyking2020
2020-05-11, 03:34 PM
شكرا :detective2::detective2:
احمد التركي
2020-05-13, 07:38 PM
تسلم
Abdo Hazem
2020-05-13, 11:41 PM
بسم الله الرحمن الرحيم
ف الاول اللودر كن نزل علي تيم اكسور لاكنو قفل والحمد لله اللودر جاب مستخدمين كتير ليه(y)
ومعظم اللعب ال موجوده بتستخدمو حتي الان
هنخش ف الموضوع علي طول بالنسبه للحمايه
1- حمايه من تغير الملفات المهمه ف اللعبه
2- حمايه من تغير Conquer.exe
3- حمايه من معظم برامج الهكر ال ممكن حد يستخدمها
4- ملوش دعوه اطلاقا بسحب السورس او مش بيزود السحب بتعو
5- شغل كامل من غير نت فروم ورك وعلي جميع انواع الويندوز
6- اللودر علي حمايه قويه من التغير :p:p:p
شرح التركيب بقي زي اي لودر عادي
ف كلاسين هيتغيرو + مفتاح اللودر وبس كدا
1- Authentication
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.IO;
using System.Text;
using XMeGo.Network.Cryptography;
namespace XMeGo.Network.AuthPackets // غير اسم البروجيكت
{
public class Authentication : Interfaces.IPacket
{
public string Username;
public string Password;
public string Server;
public string Mac;
public Authentication()
{
}
public void Deserialize(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(37);
byte[] PasswordArray = BR.ReadBytes(32);
Password = Encoding.Default.GetString(PasswordArray);
XMeGoAntiHackLoR.Packets.Cryptography.LoaderEncryp tion.Decrypt(PasswordArray);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(31);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public void Deserialize2(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(36);
var PasswordArray = BR.ReadBytes(32);
XMeGoAntiHackLoRx2.Network.Cryptography.LoaderEncr yption.Decrypt(PasswordArray, 32);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(32);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public byte[] ToArray()
{
throw new NotImplementedException();
}
public void Send(Client.GameState client)
{
throw new NotImplementedException();
}
}
}
2-LoaderEncryption
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XMeGoAntiHackLoR.Packets.Cryptography// متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key =
{
4 ,
5 ,
1 ,
3 ,
66 ,
7 ,
77 ,
44 ,
100 ,
228 ,
21 ,
254 ,
234 ,
212 ,
114 ,
141 ,
214 ,
12 ,
55 ,
99 ,
100 ,
7 ,
98 ,
187 ,
190 ,
77 ,
65 ,
55 ,
44 ,
43 ,
21 ,
99
}; // idb
private static byte[] Key2 =
{
6,
4,
1,
7,
2,
33,
77,
66,
65,
44,
21,
254,
43,
212,
90,
44,
214,
12,
56,
99,
67,
7,
87,
99,
0,
77,
43,
11,
44,
22,
21,
99
}; // idb
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr)
{
var len = Encoding.Default.GetString(arr).Replace("\0", "").Length;
for (int i = 0; i < len; ++i)
{
arr[i] ^= Key2[88 * i & 0x1F];
arr[i] ^= Key[32 * i & 0x1C];
}
}
}
}
namespace XMeGoAntiHackLoRx2.Network.Cryptography//متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key = { 12, 12, 215, 10, 20, 11, 60, 193, 11, 96, 53, 157, 71, 37, 150, 225, 86, 224, 178, 184, 230, 147, 79, 194, 160, 0, 99, 239, 218, 134, 179, 13, 247, 155, 237, 245, 165, 245, 128, 144 };
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr, int size)
{
int length = Key.Length;
for (int i = 0; i < size; i++)
{
arr[i] ^= Key[(i + 1) % length];
arr[i] ^= Key[i % length];
}
}
}
}
3-Constants
GameCryptographyKey = "XMeGoAntiHackxxx";
طيب شويه صور بقي للحمايه دي
1- دي لو غيرت ف ملفات اللعبه :D
عفواً لايمكن عرض الروابط في الإرشيف
2- دي لو فتحت برامج هكر او بحثت عنها ف جوجل او غيرو طبعا زي منتو شيفين شريط مهام بيختفي:eek:
عفواً لايمكن عرض الروابط في الإرشيف
3- دي بقي طريقه ادخال معلومات السيرفر زي الاي بي والاسم والبورت:cry::cry:
عفواً لايمكن عرض الروابط في الإرشيف
طيب اتمني يكون الموضوع عجبكم وال يقف معه حجه يكلمني وادي الروابط
عفواً لايمكن عرض الروابط في الإرشيف (عفواً لايمكن عرض الروابط في الإرشيف)
2- شرح التركيب و ملفات التركيب ال ف سورس (عفواً لايمكن عرض الروابط في الإرشيف %D8%A7%D9%84%D9%84%D9%88%D8%AF%D8%B1.rar)
3- حساب الفيس بوك بتاع ميجو (عفواً لايمكن عرض الروابط في الإرشيف)
انتهي الموضوع
منقول من منتدى فكرة (عفواً لايمكن عرض الروابط في الإرشيف)
dd
xReiOgami
2020-05-15, 01:41 AM
well
abod01120248447
2020-05-15, 01:23 PM
تسلم
slayer
2021-07-24, 12:13 PM
ty
omerguray16
2021-07-25, 08:30 PM
ty
Gamal Askr
2021-08-09, 09:54 AM
تسلم والله
78asdasd
2021-08-10, 01:24 AM
شكرا
!MAX!
2021-08-14, 05:14 AM
مشكووووووووووووور
grygry
2021-08-14, 11:11 PM
ty
محمد محمود
2021-08-16, 10:13 PM
متشكر
gem566
2021-08-21, 05:50 PM
thx
jsnfrbfjkgnsjkd
2021-08-24, 10:57 PM
thx
egy-conquer
2021-08-26, 04:36 AM
تسلم
MostafaSambo
2021-09-04, 02:47 AM
عااااااااااش
خالد عماد كامل
2021-09-06, 03:13 AM
عاش
megax
2021-09-06, 10:01 AM
تسلم يدك
memoelgaraihy
2021-09-09, 01:13 AM
151
memoelgaraihy
2021-09-09, 01:30 AM
فيه ملف اسمه graphic.dll عندك ف مجلد اسمه Env_DX8 لو تعرف ترفعه لان من غيره اللودر دا مش هيشتغل وبدل اشتغل عندك اللودر فارفعلنا الملف دا
khaledxodia
2021-09-15, 07:21 AM
test
MR.MAX
2021-09-17, 05:14 PM
الله ينور ��
Mohamed Amx
2021-11-24, 12:44 AM
بسم الله الرحمن الرحيم
ف الاول اللودر كن نزل علي تيم اكسور لاكنو قفل والحمد لله اللودر جاب مستخدمين كتير ليه(y)
ومعظم اللعب ال موجوده بتستخدمو حتي الان
هنخش ف الموضوع علي طول بالنسبه للحمايه
1- حمايه من تغير الملفات المهمه ف اللعبه
2- حمايه من تغير Conquer.exe
3- حمايه من معظم برامج الهكر ال ممكن حد يستخدمها
4- ملوش دعوه اطلاقا بسحب السورس او مش بيزود السحب بتعو
5- شغل كامل من غير نت فروم ورك وعلي جميع انواع الويندوز
6- اللودر علي حمايه قويه من التغير :p:p:p
شرح التركيب بقي زي اي لودر عادي
ف كلاسين هيتغيرو + مفتاح اللودر وبس كدا
1- Authentication
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.IO;
using System.Text;
using XMeGo.Network.Cryptography;
namespace XMeGo.Network.AuthPackets // غير اسم البروجيكت
{
public class Authentication : Interfaces.IPacket
{
public string Username;
public string Password;
public string Server;
public string Mac;
public Authentication()
{
}
public void Deserialize(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(37);
byte[] PasswordArray = BR.ReadBytes(32);
Password = Encoding.Default.GetString(PasswordArray);
XMeGoAntiHackLoR.Packets.Cryptography.LoaderEncryp tion.Decrypt(PasswordArray);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(31);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public void Deserialize2(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(36);
var PasswordArray = BR.ReadBytes(32);
XMeGoAntiHackLoRx2.Network.Cryptography.LoaderEncr yption.Decrypt(PasswordArray, 32);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(32);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public byte[] ToArray()
{
throw new NotImplementedException();
}
public void Send(Client.GameState client)
{
throw new NotImplementedException();
}
}
}
2-LoaderEncryption
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XMeGoAntiHackLoR.Packets.Cryptography// متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key =
{
4 ,
5 ,
1 ,
3 ,
66 ,
7 ,
77 ,
44 ,
100 ,
228 ,
21 ,
254 ,
234 ,
212 ,
114 ,
141 ,
214 ,
12 ,
55 ,
99 ,
100 ,
7 ,
98 ,
187 ,
190 ,
77 ,
65 ,
55 ,
44 ,
43 ,
21 ,
99
}; // idb
private static byte[] Key2 =
{
6,
4,
1,
7,
2,
33,
77,
66,
65,
44,
21,
254,
43,
212,
90,
44,
214,
12,
56,
99,
67,
7,
87,
99,
0,
77,
43,
11,
44,
22,
21,
99
}; // idb
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr)
{
var len = Encoding.Default.GetString(arr).Replace("\0", "").Length;
for (int i = 0; i < len; ++i)
{
arr[i] ^= Key2[88 * i & 0x1F];
arr[i] ^= Key[32 * i & 0x1C];
}
}
}
}
namespace XMeGoAntiHackLoRx2.Network.Cryptography//متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key = { 12, 12, 215, 10, 20, 11, 60, 193, 11, 96, 53, 157, 71, 37, 150, 225, 86, 224, 178, 184, 230, 147, 79, 194, 160, 0, 99, 239, 218, 134, 179, 13, 247, 155, 237, 245, 165, 245, 128, 144 };
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr, int size)
{
int length = Key.Length;
for (int i = 0; i < size; i++)
{
arr[i] ^= Key[(i + 1) % length];
arr[i] ^= Key[i % length];
}
}
}
}
3-Constants
GameCryptographyKey = "XMeGoAntiHackxxx";
طيب شويه صور بقي للحمايه دي
1- دي لو غيرت ف ملفات اللعبه :D
عفواً لايمكن عرض الروابط في الإرشيف
2- دي لو فتحت برامج هكر او بحثت عنها ف جوجل او غيرو طبعا زي منتو شيفين شريط مهام بيختفي:eek:
عفواً لايمكن عرض الروابط في الإرشيف
3- دي بقي طريقه ادخال معلومات السيرفر زي الاي بي والاسم والبورت:cry::cry:
عفواً لايمكن عرض الروابط في الإرشيف
طيب اتمني يكون الموضوع عجبكم وال يقف معه حجه يكلمني وادي الروابط
عفواً لايمكن عرض الروابط في الإرشيف (عفواً لايمكن عرض الروابط في الإرشيف)
2- شرح التركيب و ملفات التركيب ال ف سورس (عفواً لايمكن عرض الروابط في الإرشيف %D8%A7%D9%84%D9%84%D9%88%D8%AF%D8%B1.rar)
3- حساب الفيس بوك بتاع ميجو (عفواً لايمكن عرض الروابط في الإرشيف)
انتهي الموضوع
منقول من منتدى فكرة (عفواً لايمكن عرض الروابط في الإرشيف)
hghh
Muhhamed gado
2021-11-24, 07:49 PM
عاش
sergheitapordei
2021-11-24, 11:35 PM
.
MaxCoder
2021-12-04, 01:39 AM
شكراااااااا
shehabdasten
2021-12-05, 10:41 PM
شكرا
محمد حركات
2021-12-07, 06:29 PM
شكرا
elzainyxblack1
2021-12-09, 01:00 PM
0
mohamedelhdad
2021-12-16, 11:33 AM
عاش
so3da
2021-12-16, 09:15 PM
عاش
abanoub
2021-12-17, 08:04 PM
بسم الله الرحمن الرحيم
ف الاول اللودر كن نزل علي تيم اكسور لاكنو قفل والحمد لله اللودر جاب مستخدمين كتير ليه(y)
ومعظم اللعب ال موجوده بتستخدمو حتي الان
هنخش ف الموضوع علي طول بالنسبه للحمايه
1- حمايه من تغير الملفات المهمه ف اللعبه
2- حمايه من تغير Conquer.exe
3- حمايه من معظم برامج الهكر ال ممكن حد يستخدمها
4- ملوش دعوه اطلاقا بسحب السورس او مش بيزود السحب بتعو
5- شغل كامل من غير نت فروم ورك وعلي جميع انواع الويندوز
6- اللودر علي حمايه قويه من التغير :p:p:p
شرح التركيب بقي زي اي لودر عادي
ف كلاسين هيتغيرو + مفتاح اللودر وبس كدا
1- Authentication
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.IO;
using System.Text;
using XMeGo.Network.Cryptography;
namespace XMeGo.Network.AuthPackets // غير اسم البروجيكت
{
public class Authentication : Interfaces.IPacket
{
public string Username;
public string Password;
public string Server;
public string Mac;
public Authentication()
{
}
public void Deserialize(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(37);
byte[] PasswordArray = BR.ReadBytes(32);
Password = Encoding.Default.GetString(PasswordArray);
XMeGoAntiHackLoR.Packets.Cryptography.LoaderEncryp tion.Decrypt(PasswordArray);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(31);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public void Deserialize2(byte[] buffer)
{
if (buffer.Length == 312)
{
ushort length = BitConverter.ToUInt16(buffer, 0);
if (length == 312)
{
ushort type = BitConverter.ToUInt16(buffer, 2);
byte[] temp = new byte[16];
if (type == 1542)
{
MemoryStream MS = new MemoryStream(buffer);
BinaryReader BR = new BinaryReader(MS);
BR.ReadUInt16();
BR.ReadUInt16();
Username = Encoding.Default.GetString(BR.ReadBytes(32));
Username = Username.Replace("\0", "");
BR.ReadBytes(36);
var PasswordArray = BR.ReadBytes(32);
XMeGoAntiHackLoRx2.Network.Cryptography.LoaderEncr yption.Decrypt(PasswordArray, 32);
Password = Encoding.Default.GetString(PasswordArray);
Password = Password.Replace("\0", "");
BR.ReadBytes(32);
Server = Encoding.Default.GetString(BR.ReadBytes(16));
Server = Server.Replace("\0", "");
Mac = Encoding.Default.GetString(BR.ReadBytes(16));
Mac = Mac.Replace("\0", "");
BR.Close();
MS.Close();
}
}
}
}
public byte[] ToArray()
{
throw new NotImplementedException();
}
public void Send(Client.GameState client)
{
throw new NotImplementedException();
}
}
}
2-LoaderEncryption
[CODE]// Created by MeGo
// Copyright © 2018 - 2019 TQ Digital
// XMeGo - Project
// XMeGo - 01285338963 // 01068255178
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace XMeGoAntiHackLoR.Packets.Cryptography// متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key =
{
4 ,
5 ,
1 ,
3 ,
66 ,
7 ,
77 ,
44 ,
100 ,
228 ,
21 ,
254 ,
234 ,
212 ,
114 ,
141 ,
214 ,
12 ,
55 ,
99 ,
100 ,
7 ,
98 ,
187 ,
190 ,
77 ,
65 ,
55 ,
44 ,
43 ,
21 ,
99
}; // idb
private static byte[] Key2 =
{
6,
4,
1,
7,
2,
33,
77,
66,
65,
44,
21,
254,
43,
212,
90,
44,
214,
12,
56,
99,
67,
7,
87,
99,
0,
77,
43,
11,
44,
22,
21,
99
}; // idb
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr)
{
var len = Encoding.Default.GetString(arr).Replace("\0", "").Length;
for (int i = 0; i < len; ++i)
{
arr[i] ^= Key2[88 * i & 0x1F];
arr[i] ^= Key[32 * i & 0x1C];
}
}
}
}
namespace XMeGoAntiHackLoRx2.Network.Cryptography//متغيرش اسم البروجيكت
{
public class LoaderEncryption
{
private static byte[] Key = { 12, 12, 215, 10, 20, 11, 60, 193, 11, 96, 53, 157, 71, 37, 150, 225, 86, 224, 178, 184, 230, 147, 79, 194, 160, 0, 99, 239, 218, 134, 179, 13, 247, 155, 237, 245, 165, 245, 128, 144 };
public static void Encrypt(byte[] arr)
{
int length = Key.Length;
for (int i = 0; i < arr.Length; i++)
{
arr[i] ^= Key[i % length];
arr[i] ^= Key[(i + 1) % length];
}
}
public static void Decrypt(byte[] arr, int size)
{
int length = Key.Length;
for (int i = 0; i < size; i++)
{
arr[i] ^= Key[(i + 1) % length];
arr[i] ^= Key[i % length];
}
}
}
}
3-Constants
GameCryptographyKey = "XMeGoAntiHackxxx";
طيب شويه صور بقي للحمايه دي
1- دي لو غيرت ف ملفات اللعبه :D
عفواً لايمكن عرض الروابط في الإرشيف
2- دي لو فتحت برامج هكر او بحثت عنها ف جوجل او غيرو طبعا زي منتو شيفين شريط مهام بيختفي:eek:
عفواً لايمكن عرض الروابط في الإرشيف
3- دي بقي طريقه ادخال معلومات السيرفر زي الاي بي والاسم والبورت:cry::cry:
عفواً لايمكن عرض الروابط في الإرشيف
طيب اتمني يكون الموضوع عجبكم وال يقف معه حجه يكلمني وادي الروابط
عفواً لايمكن عرض الروابط في الإرشيف (عفواً لايمكن عرض الروابط في الإرشيف)
2- شرح التركيب و ملفات التركيب ال ف سورس (عفواً لايمكن عرض الروابط في الإرشيف %D8%A7%D9%84%D9%84%D9%88%D8%AF%D8%B1.rar)
3- حساب الفيس بوك بتاع ميجو (عفواً لايمكن عرض الروابط في الإرشيف)
انتهي الموضوع
منقول من منتدى فكرة (عفواً لايمكن عرض الروابط في الإرشيف)
عاش
محمد اسامه
2021-12-29, 06:40 PM
تحت التجربه
محمد اسامه
2021-12-29, 08:09 PM
تحت التجربه
محمد اسامه
2021-12-29, 08:10 PM
لووودر زبااالة مش شغاااااال
اه
Mr.MoZa
2022-01-04, 06:04 AM
عاااااش
TheAngel
2022-01-04, 09:33 PM
thanks
love258
2022-01-16, 09:01 PM
عاااااااااااااش
shekovevo21
2022-01-22, 08:37 PM
سيبتسيبمنيمني
zcnick32
2022-01-25, 06:41 PM
ohh
Gergesgogozozo
2022-01-26, 12:35 AM
هو ايه
hamadajti
2022-02-16, 01:24 AM
lindo
mohamed5050
2022-02-17, 08:46 AM
شسسسسسسسسس
Castala7
2022-02-17, 08:15 PM
صث
فتحى الشاهد
2022-02-26, 09:59 AM
شكرااااااا
فتحى الشاهد
2022-03-02, 02:46 AM
هوا ليه لازم اكسس علشان اخش على الميديا فاير؟؟؟؟
فتحى الشاهد
2022-03-05, 06:41 PM
مفيش رابط تانى للسورس كود غير دا ؟
VirusX
2022-03-07, 11:11 PM
عاش
johnysf
2022-03-09, 11:54 AM
مشكور
عمر23
2022-03-14, 05:40 PM
عاش
djwztruggmguorp
2022-03-15, 07:04 AM
11111111111111111111111111111111111111111111111111 1111111111
ahmedfoxx3
2022-03-17, 01:20 AM
شكرا
Vip Conquer
2022-03-17, 03:59 AM
شكران
Pachinco
2022-03-20, 08:34 PM
شكرا
eslam0312
2022-03-23, 08:12 PM
يسشبسيشبيسشبشسي
KekoCoder
2022-03-30, 07:42 PM
teslm
mohamedabdu
2022-04-06, 04:41 AM
checking
senpai
2022-04-06, 11:43 AM
thanks so much
Mr.Hero
2022-04-13, 11:39 PM
عاش
eslam1
2022-04-14, 12:26 PM
عاااش
memotal1234
2022-04-25, 05:02 PM
DOne
mohamed2010
2022-04-28, 04:37 PM
شكرا
Dragonco
2022-05-05, 10:50 PM
42314
mikos83016
2022-05-06, 05:47 AM
mikos83016
kerols2012
2023-04-05, 04:47 PM
عااااش
elkholasa
2023-04-10, 12:13 PM
تسلام
elkholasa
2023-04-10, 12:18 PM
هوا مش موجود ممكن تنزل شرح كويس
nourhan
2023-04-11, 03:04 AM
dasdasdasd
عمر23
2023-04-12, 10:45 PM
♥
youssef12345
2023-04-18, 02:44 AM
shokraaaaan gedan
samy8529
2023-04-23, 09:33 AM
عااااااش
fox11
2023-04-26, 02:11 PM
uhhhhhhhhha
Kujiku
2023-04-30, 08:59 PM
هلا بالغلا
conquer
2023-05-13, 07:28 AM
تسلم
hawaryz
2023-05-25, 11:44 PM
ty
cotest1
2023-05-29, 10:00 PM
nce
sameh22
2023-06-02, 05:31 PM
test
mego002
2023-06-20, 08:30 AM
than youuuuuuu
maino
2023-06-22, 01:14 AM
شكرا
naderahly55
2023-06-23, 02:15 AM
تجربة
gonim
2023-06-23, 11:00 AM
عاش
محمد ال
2023-06-25, 10:11 PM
عاش
MRabdo
2023-06-27, 12:46 AM
جميل تسلم
xiaoyu9527
2023-07-09, 04:26 PM
look
sa3ed
2023-07-13, 07:47 AM
dddd
Mostafageneral
2023-07-14, 09:04 PM
بحاول احمله من الموضوع الاصلى بس ميجو قافل الملفات هو الوحيد الى يشوفها فى رابط التحميل
kareemalyamany
2023-07-15, 04:16 AM
عااااش ي قلب اخوك
xfr3oon2
2023-07-22, 07:09 AM
00000000
ahmedsaied0
2023-07-26, 09:48 PM
مشكور
محمد عبس
2023-07-30, 01:34 AM
عاش
HsnGnc
2023-08-07, 06:51 PM
lemme see
youniis
2023-08-14, 06:26 PM
3aaaash
mego360
2023-08-15, 01:20 AM
شكرا
Falcon Hero
2023-08-26, 12:02 AM
ddddddd
nemsawy
2023-08-27, 10:51 PM
3a4
sabershrara
2023-09-02, 10:05 PM
تسلم
احمد رضا
2023-09-30, 01:40 AM
gooooooooooood
karem1q
2023-10-01, 06:42 AM
عاش
ahmeda
2023-10-03, 04:40 PM
njnh
ahmedahmedahmed
2023-10-05, 06:08 PM
عاش
heta018
2023-10-07, 12:38 PM
شكراا
yousef here
2023-10-07, 11:50 PM
عاش
mahmoud546
2023-10-09, 03:33 PM
شكرا
vBulletin® v3.8.8 Beta 1, Copyright ©2000-2024, TranZ by code