- Katılım
- 3 Eki 2018
- Mesajlar
- 1,018
- Tepki puanı
- 13
Piyasaya yeni gelen bi exploit ama oyuna aşırı derece zarar verecek bi exploit.
Exploit'in Amacı:
exploitten oyuna giriş yaparsınz char oluşturma yerinde char oluştururken oyundaki bütün herkez dc yer exploit denenip kanıtlanmıştır calışıyor:
FİX:
PHP:
if(_pck.Opcode == 0xB007) // server opcode
{
if(_pck.ReadUInt8() == 2)
{
return false;
}
}
PHP:
#region Logout - Restart Packet
if (packet.Opcode == 0x7005)
{
// DC Exploit Check!
if (string.IsNullOrEmpty(Charname))
{
Methods.AddLog("Character list packet exploit detected, Disconnect..", Color.Red);
this.Disconnect();
continue;
}
// Double Check!
if (bytes.Length > 1)
{
Methods.AddLog("Character list packet exploit detected, Disconnect..", Color.Red);
this.Disconnect();
continue;
}
int type = packet.ReadInt8();
// here we go!
// logout delay or any shits
}
#endregion
Exploit'in Amacı:
exploitten oyuna giriş yaparsınz char oluşturma yerinde char oluştururken oyundaki bütün herkez dc yer exploit denenip kanıtlanmıştır calışıyor:
FİX:
PHP:
if(_pck.Opcode == 0xB007) // server opcode
{
if(_pck.ReadUInt8() == 2)
{
return false;
}
}
PHP:
#region Logout - Restart Packet
if (packet.Opcode == 0x7005)
{
// DC Exploit Check!
if (string.IsNullOrEmpty(Charname))
{
Methods.AddLog("Character list packet exploit detected, Disconnect..", Color.Red);
this.Disconnect();
continue;
}
// Double Check!
if (bytes.Length > 1)
{
Methods.AddLog("Character list packet exploit detected, Disconnect..", Color.Red);
this.Disconnect();
continue;
}
int type = packet.ReadInt8();
// here we go!
// logout delay or any shits
}
#endregion