forked from spender-sandbox/cuckoomon-modified
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.c
227 lines (213 loc) · 6.91 KB
/
config.c
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
Cuckoo Sandbox - Automated Malware Analysis
Copyright (C) 2010-2015 Cuckoo Sandbox Developers, Optiv, Inc. ([email protected])
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include "ntapi.h"
#include "config.h"
#include "misc.h"
#include "log.h"
#include "hooking.h"
int read_config(void)
{
// TODO unicode support
char buf[32768], config_fname[MAX_PATH];
FILE *fp;
unsigned int i;
unsigned int vallen;
sprintf(config_fname, "C:\\%u.ini", GetCurrentProcessId());
fp = fopen(config_fname, "r");
if (fp == NULL) {
// for debugging purposes
fp = fopen("C:\\config.ini", "r");
if (fp == NULL)
return 0;
}
g_config.force_sleepskip = -1;
#ifdef _WIN64
g_config.hook_type = HOOK_JMP_INDIRECT;
#else
g_config.hook_type = HOOK_HOTPATCH_JMP_INDIRECT;
#endif
memset(buf, 0, sizeof(buf));
while (fgets(buf, sizeof(buf), fp) != NULL)
{
// cut off the newline
char *p = strchr(buf, '\r');
if(p != NULL) *p = 0;
p = strchr(buf, '\n');
if(p != NULL) *p = 0;
// split key=value
p = strchr(buf, '=');
if(p != NULL) {
const char *key = buf;
char *value = p + 1;
*p = 0;
vallen = (unsigned int)strlen(value);
if(!strcmp(key, "pipe")) {
for (i = 0; i < vallen; i++)
g_config.pipe_name[i] = (wchar_t)(unsigned short)value[i];
}
else if (!strcmp(key, "logserver")) {
strncpy(g_config.logserver, value,
ARRAYSIZE(g_config.logserver));
}
else if (!strcmp(key, "results")) {
strncpy(g_config.results, value,
ARRAYSIZE(g_config.results) - 1);
for (i = 0; i < ARRAYSIZE(g_config.results); i++)
g_config.w_results[i] = (wchar_t)(unsigned short)g_config.results[i];
}
else if (!strcmp(key, "file-of-interest")) {
unsigned int len = (unsigned int)strlen(value);
if (len > 1) {
if (value[1] == ':') {
// is a file
char *tmp = calloc(1, MAX_PATH);
ensure_absolute_ascii_path(tmp, value);
g_config.file_of_interest = ascii_to_unicode_dup(tmp);
free(tmp);
// if the file of interest is our own executable, then don't do any special handling
if (wcsicmp(our_process_path, g_config.file_of_interest))
g_config.suspend_logging = TRUE;
}
else {
// is a URL
g_config.url_of_interest = ascii_to_unicode_dup(value);
g_config.suspend_logging = TRUE;
}
}
}
else if (!strcmp(key, "referrer")) {
g_config.w_referrer = ascii_to_unicode_dup(value);
g_config.referrer = strdup(value);
}
else if (!strcmp(key, "analyzer")) {
strncpy(g_config.analyzer, value,
ARRAYSIZE(g_config.analyzer)-1);
for (i = 0; i < ARRAYSIZE(g_config.analyzer); i++)
g_config.w_analyzer[i] = (wchar_t)(unsigned short)g_config.analyzer[i];
wcscpy(g_config.dllpath, g_config.w_analyzer);
if (wcslen(g_config.dllpath) < ARRAYSIZE(g_config.dllpath) - 5)
wcscat(g_config.dllpath, L"\\dll\\");
}
else if(!strcmp(key, "shutdown-mutex")) {
strncpy(g_config.shutdown_mutex, value,
ARRAYSIZE(g_config.shutdown_mutex));
}
else if(!strcmp(key, "first-process")) {
g_config.first_process = value[0] == '1';
}
else if(!strcmp(key, "startup-time")) {
g_config.startup_time = atoi(value);
}
else if (!strcmp(key, "debug")) {
g_config.debug = atoi(value);
}
else if (!strcmp(key, "hook-type")) {
#ifndef _WIN64
if (!strcmp(value, "direct"))
g_config.hook_type = HOOK_JMP_DIRECT;
else if (!strcmp(value, "indirect"))
g_config.hook_type = HOOK_JMP_INDIRECT;
else if (!strcmp(value, "safe"))
g_config.hook_type = HOOK_SAFEST;
#endif
}
else if (!strcmp(key, "disable_hook_content")) {
g_config.disable_hook_content = atoi(value);
}
/*
else if(!strcmp(key, "host-ip")) {
g_config.host_ip = inet_addr(value);
}
else if(!strcmp(key, "host-port")) {
g_config.host_port = atoi(value);
}
*/
else if(!strcmp(key, "force-sleepskip")) {
g_config.force_sleepskip = value[0] == '1';
}
else if (!strcmp(key, "serial")) {
g_config.serial_number = (unsigned int)strtoul(value, NULL, 16);
}
else if (!strcmp(key, "sysvol_ctimelow")) {
g_config.sysvol_ctime.dwLowDateTime = (unsigned int)strtoul(value, NULL, 16);
}
else if (!strcmp(key, "sysvol_ctimehigh")) {
g_config.sysvol_ctime.dwHighDateTime = (unsigned int)strtoul(value, NULL, 16);
}
else if (!strcmp(key, "sys32_ctimelow")) {
g_config.sys32_ctime.dwLowDateTime = (unsigned int)strtoul(value, NULL, 16);
}
else if (!strcmp(key, "sys32_ctimehigh")) {
g_config.sys32_ctime.dwHighDateTime = (unsigned int)strtoul(value, NULL, 16);
}
else if (!strcmp(key, "full-logs")) {
g_config.full_logs = value[0] == '1';
}
else if (!strcmp(key, "force-flush")) {
g_config.force_flush = atoi(value);
}
else if (!strcmp(key, "terminate-event")) {
strncpy(g_config.terminate_event_name, value,
ARRAYSIZE(g_config.terminate_event_name));
}
else if (!strcmp(key, "no-stealth")) {
g_config.no_stealth = value[0] == '1';
}
else if (!strcmp(key, "buffer-max")) {
buffer_log_max = (unsigned int)strtoul(value, NULL, 10);
}
else if (!strcmp(key, "large-buffer-max")) {
large_buffer_log_max = (unsigned int)strtoul(value, NULL, 10);
}
else if (!strcmp(key, "exclude-apis")) {
unsigned int x = 0;
char *p2;
p = value;
while (p && x < EXCLUSION_MAX) {
p2 = strchr(p, ':');
if (p2) {
*p2 = '\0';
}
g_config.excluded_apinames[x++] = strdup(p);
if (p2 == NULL)
break;
p = p2 + 1;
}
}
else if (!strcmp(key, "exclude-dlls")) {
unsigned int x = 0;
char *p2;
p = value;
while (p && x < EXCLUSION_MAX) {
p2 = strchr(p, ':');
if (p2) {
*p2 = '\0';
}
g_config.excluded_dllnames[x++] = ascii_to_unicode_dup(p);
if (p2 == NULL)
break;
p = p2 + 1;
}
}
}
}
/* don't suspend logging if this isn't the first process or if we want all the logs */
if (!g_config.first_process || g_config.full_logs)
g_config.suspend_logging = FALSE;
fclose(fp);
DeleteFileA(config_fname);
return 1;
}