-
Notifications
You must be signed in to change notification settings - Fork 10
/
NetLogger.cpp
340 lines (258 loc) · 7.47 KB
/
NetLogger.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
#include "NetLogger.hpp"
#define OFFSET_SUM 0xB3902E8
NetLogger::NetLogger()
{
//printf("BoE Debug: NetLogger Enabled \n");
this->CryptoKey = new std::vector<char>();
for (int i = 0; i < 8; i++)
{
char j = i;
this->CryptoKey->push_back(j);
}
this->IsCompromised = FALSE;
}
BOOL NetLogger::SetSocket(SOCKET S)
{
if (S != NULL)
{
this->Socket = S;
return TRUE;
}
this->Socket = NULL;
return FALSE;
}
BOOL NetLogger::SetSocketPort(USHORT Port)
{
if (Port != 0)
{
this->Port = Port;
return TRUE;
}
this->Port = 0;
return FALSE;
}
BOOL NetLogger::SetIP(const char* IP)
{
return TRUE;
}
BOOL NetLogger::GetClientIPv4(IPv4 & myIP)
{
char szBuffer[1024];
#ifdef WIN32
WSADATA wsaData;
WORD wVersionRequested = MAKEWORD(2, 0);
if (::WSAStartup(wVersionRequested, &wsaData) != 0)
return false;
#endif
if (gethostname(szBuffer, sizeof(szBuffer)) == SOCKET_ERROR)
{
#ifdef WIN32
WSACleanup();
#endif
return false;
}
struct hostent *host = gethostbyname(szBuffer);
if (host == NULL)
{
#ifdef WIN32
WSACleanup();
#endif
return false;
}
//Obtain the computer's IP
myIP.b1 = ((struct in_addr *)(host->h_addr))->S_un.S_un_b.s_b1;
myIP.b2 = ((struct in_addr *)(host->h_addr))->S_un.S_un_b.s_b2;
myIP.b3 = ((struct in_addr *)(host->h_addr))->S_un.S_un_b.s_b3;
myIP.b4 = ((struct in_addr *)(host->h_addr))->S_un.S_un_b.s_b4;
#ifdef WIN32
WSACleanup();
#endif
return true;
}
ItemEntry* NetLogger::GetItemEntries(LPWSTR PathName)
{
return new ItemEntry();
}
bool NetLogger::SendHWID()
{
WSADATA wsaData;
SOCKET Socket = INVALID_SOCKET;
SOCKADDR_IN SockAddr;
std::string HWID = this->FillHardwareID();
unsigned char buffer[512] = { 0 };
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0)
{
//printf("WSAStartup failed: %d.\n", WSAGetLastError());
return false;
}
//for (int i = 0; i < strlen(url); i++) //unmask the URL by xorring..
//{
// url[i] = url[i] ^ NetCipher::XorKey;
//}
Socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
SockAddr.sin_addr.S_un.S_addr = inet_addr(GetUnpackedServerIP().c_str());
SockAddr.sin_port = htons(5445);
SockAddr.sin_family = AF_INET;
this->Socket = Socket;
if (connect(Socket, (SOCKADDR*)(&SockAddr), sizeof(SockAddr)) != 0)
{
this->HelloApproved = false;
return false;
}
byte* CipherHWID = NetCipher::CipherString((char*)HWID.c_str());
int CipherLen = strlen(HWID.c_str());
int BytesSent = send(Socket, (const char*)CipherHWID, CipherLen, 0);
int nDataLength;
if (BytesSent >= strlen(HWID.c_str())) //make sure we sent the hwid
{
while ((nDataLength = recv(Socket, (char*)buffer, 512, 0)) == 0);
if (nDataLength > 8 * 5) //change this later... MINIMUM OFFSETS NEEDED..
{
int nOffsets = nDataLength / 8;
UINT64 Sum = 0;
for (int i = 0; i < nOffsets; i++)
{
memcpy((void*)&Offsets[i], (void*)&buffer[i * 8], 8);
Sum = Sum + Offsets[i];
}
if (Sum > 0xE000000)
{
this->HelloApproved = true;
//create listener thread
//HANDLE ListenerThread = CreateThread(0, 0, (LPTHREAD_START_ROUTINE)&NetLogger::Listen, this, 0, 0);
//return this->HelloApproved;
}
}
}
//closesocket(Socket);
//WSACleanup();
//shutdown(Socket, 0);
return this->HelloApproved;
}
void NetLogger::Listen(LPVOID param)
{
NetLogger* p = reinterpret_cast<NetLogger*>(param);
char buffer[512];
bool recieving = true;
while (recieving)
{
int nDataLength = recv(p->Socket, (char*)buffer, 512, 0);
if (nDataLength != SOCKET_ERROR && nDataLength > 0)
{
//printf("Message recieved from license server: %s!\n", buffer);
if (buffer[0] == 0x02) //opcode get item data
{
}
}
Sleep(1000);
}
closesocket(p->Socket);
WSACleanup();
shutdown(p->Socket, 0);
}
bool NetLogger::TransactHeartbeat()
{
this->HeartbeatApproved = false;
WSADATA wsaData;
SOCKET Socket = INVALID_SOCKET;
SOCKADDR_IN SockAddr;
std::string HWID = this->FillHardwareID(); //part of final sent packet
unsigned char buffer[256] = { 0 };
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0)
{
return false;
}
Socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
SockAddr.sin_addr.S_un.S_addr = inet_addr(GetUnpackedServerIP().c_str());
SockAddr.sin_port = htons(5445);
SockAddr.sin_family = AF_INET;
if (connect(Socket, (SOCKADDR*)(&SockAddr), sizeof(SockAddr)) != 0)
return false;
byte Heartbeat[] = { 0x01, 0x02, 0x03, 0x04 };
byte* CipherHWID = NetCipher::CipherString((char*)Heartbeat); //encipher bytes
int CipherLen = 4;
int BytesSent = send(Socket, (const char*)CipherHWID, CipherLen, 0);
int nDataLength = 1;
while ((nDataLength = recv(Socket, (char*)this->HeartbeatRecvBytes, 256, 0)) == 0); //this will loop forever in the case of no reply... guess we can leave this intentional
//start conditional ... maybe throw back hwid and do comparison once again and test for true or false finally?
if (nDataLength == BytesSent)
{
if ((this->HeartbeatRecvBytes[0] == Heartbeat[0] * 2) && (this->HeartbeatRecvBytes[1] == Heartbeat[1] * 2) && (this->HeartbeatRecvBytes[2] == Heartbeat[2] * 2) && (this->HeartbeatRecvBytes[3] == Heartbeat[3] * 2))
this->HeartbeatApproved = true;
}
closesocket(Socket);
WSACleanup();
return this->HeartbeatApproved;
}
int NetLogger::SendData(string data)
{
this->HeartbeatApproved = false;
WSADATA wsaData;
SOCKET Socket = INVALID_SOCKET;
SOCKADDR_IN SockAddr;
unsigned char buffer[256] = { 0 };
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0)
{
return false;
}
Socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
SockAddr.sin_addr.S_un.S_addr = inet_addr(GetUnpackedServerIP().c_str());
SockAddr.sin_port = htons(5445);
SockAddr.sin_family = AF_INET;
if (connect(Socket, (SOCKADDR*)(&SockAddr), sizeof(SockAddr)) != 0)
return false;
byte opcode = 2;
byte* packet = new byte[1 + strlen(data.c_str())];
packet[0] = opcode;
strcpy((char*)&packet[1], data.c_str());
byte* CipherData = NetCipher::CipherString((char*)packet); //encipher bytes
int CipherLen = strlen(data.c_str()) + sizeof(byte);
int BytesSent = send(Socket, (const char*)CipherData, CipherLen, 0); //no response needed here?
closesocket(Socket);
WSACleanup();
return BytesSent;
}
//WARNING: will fail if windows is not on C:/...
string NetLogger::FillHardwareID()
{
string HWID;
CHAR volumeName[MAX_PATH + 1] = { 0 };
CHAR fileSystemName[MAX_PATH + 1] = { 0 };
DWORD serialNumber = 0;
DWORD maxComponentLen = 0;
DWORD fileSystemFlags = 0;
if (GetVolumeInformationA("C:\\", volumeName, ARRAYSIZE(volumeName), &serialNumber, &maxComponentLen, &fileSystemFlags, fileSystemName, ARRAYSIZE(fileSystemName)))
{
CHAR serialBuf[20];
_itoa_s(serialNumber, serialBuf, 10);
CHAR username[1024];
DWORD size = 1024;
GetUserNameA((CHAR*)username, &size);
HWID = username;
HWID += "-";
HWID += serialBuf;
HWID += '\0';
}
else
{
HWID = "Failed to generate HWID.";
return NULL;
}
return HWID;
}
string NetLogger::GetUnpackedServerIP()
{
char unpackedIP[15] = { 0 };
for (int i = 0; i < strlen((const char*)serverIP); i++)
{
unpackedIP[i] = (serverIP[i] ^ unpackKey);
}
return "127.0.0.1";
//return string(unpackedIP);
}
BOOL NetLogger::SendPCInfo()
{
string user = OS::GetCurrentUsername();
int cpuid = OS::GetCPUID();
return true;
}