20-10-2016, 01:21 PM
|
#11
|
|
|
• الانـتـسـاب » Aug 2012
|
|
• رقـم العـضـويـة » 103935
|
|
• المشـــاركـات » 1,662
|
|
• الـدولـة » Mansoura
|
|
• الـهـوايـة » Love the Destruction
|
|
• اسـم الـسـيـرفـر » Private Server
|
|
• الـجـنـس » Male
|
|
• نقـاط التقييم » 75
|
|
|
|
رد: شرح كامل لغلق ثغرة SQL Inject at about guild
اها تمام المشكلة في المسار نفسه دي بتختلف من سورس لسورس يعني عندي شغاله علي
اقتباس:
if (packet.Opcode == 0x705E)
{
#region 0x705E_CLIENT_EXPLOIT
string message = packet.Opcode.ReadAscii();
if (message.Contains("'"))
{
//message;
continue;
}
else if (message.Contains("\""))
{
//message;
continue;
}
else if (message.Contains("-"))
{
//message;
continue;
}
}
#
endregion
|
علي K Guard هتبقي كدا
اقتباس:
if (packet.Opcode == 0x705E)
{
#region 0x705E_CLIENT_EXPLOIT
string message = packet.ReadAscii();
if (message.Contains("'"))
{
//message;
continue;
}
else if (message.Contains("\""))
{
//message;
continue;
}
else if (message.Contains("-"))
{
//message;
continue;
}
}
#endregion
|
|
|
|
|