-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.c
79 lines (70 loc) · 2.65 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
/*
Cuckoo Sandbox - Automated Malware Analysis
Copyright (C) 2010-2012 Cuckoo Sandbox Developers
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 <windows.h>
#include "ntapi.h"
#include "config.h"
void read_config()
{
// TODO unicode support
char buf[512], config_fname[MAX_PATH];
sprintf(config_fname, "%s\\%d.ini",
getenv("TEMP"), GetCurrentProcessId());
FILE *fp = fopen(config_fname, "r");
if(fp != NULL) {
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) {
*p = 0;
const char *key = buf, *value = p + 1;
if(!strcmp(key, "pipe")) {
strncpy(g_config.pipe_name, value,
ARRAYSIZE(g_config.pipe_name));
}
else if(!strcmp(key, "results")) {
strncpy(g_config.results, value,
ARRAYSIZE(g_config.results));
}
else if(!strcmp(key, "analyzer")) {
strncpy(g_config.analyzer, value,
ARRAYSIZE(g_config.analyzer));
}
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, "retaddr-check")) {
g_config.retaddr_check = value[0] == '1';
}
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);
}
}
}
fclose(fp);
DeleteFile(config_fname);
}
}