how to add method in dsetup.dll to block programs

angel of death

Путник
Пользователь
Сообщения
3
Розыгрыши
0
Репутация
0
Реакции
0
Баллы
0
Hello everyone I am new to the forum..I would like a help on a question I want to make ... we are dealing with the DLL to block some programs ..
this is the code you are on the ip and you enter the game.
this then build it into DLL ...
I have to write code
 

but where is the question?
 
the questions are. write it as a code to be able to block a program like L2phx
 
if for free then
Код:
...
PROCESSENTRY32 entry;
    entry.dwSize = sizeof(PROCESSENTRY32);
   DWORD ids;
   char*  proc_name = "l2phx.exe";
    HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL);

    if(Process32First(snapshot, &entry))
        while(Process32Next(snapshot, &entry))
            if(!stricmp(entry.szExeFile, proc_name))
                ExitProcess(0);
...
 
Maybe you stop fucking ft-guard sources? This sources are too old and useless. Now any kid could bypass this shit.
 
Код:
[QUOTE = "Zubastic, post: 84831, member: 1880"] Maybe you stop fucking ft-guard sources? This sources are too old and useless. Now any kid could bypass this shit. [/ QUOTE]

how can you protect?

which I have to go to add this
[QUOTE = "DaVilka, post: 84830, member: 3944"] if for free then
[SPOILER = "234"]
Код:
 ...
PROCESSENTRY32 entry;
    entry.dwSize = sizeof (PROCESSENTRY32);
   DWORD ids;
   char * proc_name = "l2phx.exe";
    HANDLE snapshot = CreateToolhelp32Snapshot (TH32CS_SNAPPROCESS, NULL);

    if (Process32First (snapshot, & entry))
        while (Process32Next (snapshot, & entry))
            if (! stricmp (entry.szExeFile, proc_name))
                ExitProcess (0);
... [/ CODE]
 [/ QUOTE] [/ CODE] [/ CODE]
 

Похожие темы

Назад
Сверху Снизу