عرض مشاركة واحدة
قديم 2019-08-19, 08:06 PM
المشاركة 4
Rider
.:: عضو خبير ::.
  • غير متواجد
افتراضي رد: موضوع بخصوص الحمايا الصغيورة الموجودا فى القسم تطوير
مفتاح اللودر

كود:
A238xs65pjy7sd9s 

LoaderEncryption.cs

كود:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace 
EL3FREIT.Network.Cryptography
{
    public class 
LoaderEncryption
    
{
        private static 
byte[] LoginKey = { 1212215102011601931196531577137150225862241781842301477919416009923921813417913247155237245165245128144 };
        public static 
void Encrypt(byte[] arr)
        {
 
            
int length LoginKey.Length;
            for (
int i 0arr.Lengthi++)
            {
 
                
arr[i] ^= LoginKey[length];
                
arr[i] ^= LoginKey[(1) % length];
 
            }
 
        }
        public static 
void DoLogin(byte[] arrint size)
        {
            
int length LoginKey.Length;
            for (
int i 0sizei++)
            {
 
                
arr[i] ^= LoginKey[(1) % length];
                
arr[i] ^= LoginKey[length];
 
            }
        }
    }


authentication.cs

كود:
using System
using System.IO
using System.Text
using EL3FREIT.Network.Cryptography
namespace 
EL3FREIT.Network.AuthPackets 

public class 
Authentication Interfaces.IPacket 

public 
string Username
public 
string Password
public 
string Server
public 
Authentication() 


public 
void Deserialize(byte[] buffer

if (
buffer.Length == 312

ushort length BitConverter.ToUInt16(buffer0); 
if (
length == 312

ushort type BitConverter.ToUInt16(buffer2); 
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); 
Password Encoding.Default.GetString(BR.ReadBytes(32)); 
Password Password.Replace("\0"""); 
BR.ReadBytes(32); 
Server Encoding.Default.GetString(BR.ReadBytes(32)); 
Server Server.Replace("\0"""); 
BR.Close(); 
MS.Close(); 




public 
byte[] ToArray() 

throw new 
NotImplementedException(); 

public 
void Send(Client.GameState client

throw new 
NotImplementedException(); 




لودر

كود:
https://drive.google.com/file/d/1aE-9yx2EyCAQmOHIPxj9Q4Ih1iu4yUdD/view 

تشغيل لودر ادخل علي ENv_DX8

بعدين علي Microsoft.VC90.MFC

وعدل الايبي والبورت من خلال ملف mfcn90

وطبعا التعديل من خلال برنامج 7-ZIP
[منقول جميع الحقوق محقوظه لصاحب اللودر و في بي اس كايرو]