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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
|
/*
WhatsApp plugin for Miranda NG
Copyright © 2019-22 George Hazan
*/
#include "stdafx.h"
WAJid::WAJid(const char *pszUser, const char *pszServer, int iDevice, int iAgent) :
user(pszUser ? pszUser : ""),
server(pszServer ? pszServer : ""),
device(iDevice),
agent(iAgent)
{}
WAJid::WAJid(const char *pszJid)
{
if (pszJid == nullptr)
pszJid = "";
auto *tmp = NEWSTR_ALLOCA(pszJid);
auto *p = strrchr(tmp, '@');
if (p) {
*p = 0;
server = p + 1;
}
if (p = strrchr(tmp, ':')) {
*p = 0;
device = atoi(p + 1);
}
else device = 0;
if (p = strrchr(tmp, '_')) {
*p = 0;
agent = atoi(p + 1);
}
else agent = 0;
user = tmp;
}
bool WAJid::isUser() const
{ return server == "s.whatsapp.net";
}
bool WAJid::isGroup() const
{ return server == "g.us";
}
bool WAJid::isBroadcast() const
{
return server == "broadcast";
}
bool WAJid::isStatusBroadcast() const
{
return isBroadcast() && user == "status";
}
CMStringA WAJid::toString() const
{
CMStringA ret(user);
if (agent > 0)
ret.AppendFormat("_%d", agent);
if (device > 0)
ret.AppendFormat(":%d", device);
ret.AppendFormat("@%s", server.c_str());
return ret;
}
/////////////////////////////////////////////////////////////////////////////////////////
static uint8_t sttLtHashInfo[] = "WhatsApp Patch Integrity";
void LT_HASH::add(const void *pData, size_t len)
{
uint16_t tmp[_countof(hash)];
HKDF(EVP_sha256(), (BYTE *)"", 0, (BYTE*)pData, len, sttLtHashInfo, sizeof(sttLtHashInfo) - 1, (BYTE *)tmp, sizeof(tmp));
for (int i = 0; i < _countof(hash); i++)
hash[i] += tmp[i];
}
void LT_HASH::sub(const void *pData, size_t len)
{
uint16_t tmp[_countof(hash)];
HKDF(EVP_sha256(), (BYTE *)"", 0, (BYTE *)pData, len, sttLtHashInfo, sizeof(sttLtHashInfo) - 1, (BYTE *)tmp, sizeof(tmp));
for (int i = 0; i < _countof(hash); i++)
hash[i] -= tmp[i];
}
/////////////////////////////////////////////////////////////////////////////////////////
WAUser* WhatsAppProto::FindUser(const char *szId)
{
if (szId == nullptr)
return nullptr;
mir_cslock lck(m_csUsers);
auto *tmp = (WAUser *)_alloca(sizeof(WAUser));
tmp->szId = (char*)szId;
return m_arUsers.find(tmp);
}
WAUser* WhatsAppProto::AddUser(const char *szId, bool bTemporary)
{
auto *pUser = FindUser(szId);
if (pUser != nullptr)
return pUser;
MCONTACT hContact = db_add_contact();
Proto_AddToContact(hContact, m_szModuleName);
pUser = new WAUser(hContact, mir_strdup(szId));
pUser->bIsGroupChat = WAJid(szId).isGroup();
if (pUser->bIsGroupChat) {
setByte(hContact, "ChatRoom", 1);
setString(hContact, "ChatRoomID", szId);
}
else {
setString(hContact, DBKEY_ID, szId);
if (m_wszDefaultGroup)
Clist_SetGroup(hContact, m_wszDefaultGroup);
}
if (bTemporary)
Contact::RemoveFromList(hContact);
mir_cslock lck(m_csUsers);
m_arUsers.insert(pUser);
return pUser;
}
/////////////////////////////////////////////////////////////////////////////////////////
WA_PKT_HANDLER WhatsAppProto::FindPersistentHandler(const WANode &pNode)
{
auto *pChild = pNode.getFirstChild();
CMStringA szChild = (pChild) ? pChild->title : "";
CMStringA szTitle = pNode.title;
CMStringA szType = pNode.getAttr("type");
CMStringA szXmlns = pNode.getAttr("xmlns");
for (auto &it : m_arPersistent) {
if (it->pszTitle && szTitle != it->pszTitle)
continue;
if (it->pszType && szType != it->pszType)
continue;
if (it->pszXmlns && szXmlns != it->pszXmlns)
continue;
if (it->pszChild && szChild != it->pszChild)
continue;
return it->pHandler;
}
return nullptr;
}
/////////////////////////////////////////////////////////////////////////////////////////
CMStringA WhatsAppProto::GenerateMessageId()
{
return CMStringA(FORMAT, "%d.%d-%d", m_wMsgPrefix[0], m_wMsgPrefix[1], m_iPacketId++);
}
/////////////////////////////////////////////////////////////////////////////////////////
// sends a piece of JSON to a server via a websocket, masked
int WhatsAppProto::WSSend(const ProtobufCMessage &msg)
{
if (m_hServerConn == nullptr)
return -1;
MBinBuffer buf(proto::Serialize(&msg));
Netlib_Dump(m_hServerConn, buf.data(), buf.length(), true, 0);
MBinBuffer payload = m_noise->encodeFrame(buf.data(), buf.length());
WebSocket_SendBinary(m_hServerConn, payload.data(), payload.length());
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
static char zeroData[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
int WhatsAppProto::WSSendNode(WANode &node, WA_PKT_HANDLER pHandler)
{
if (m_hServerConn == nullptr)
return 0;
if (pHandler != nullptr) {
CMStringA id(GenerateMessageId());
node.addAttr("id", id);
mir_cslock lck(m_csPacketQueue);
m_arPacketQueue.insert(new WARequest(id, pHandler));
}
CMStringA szText;
node.print(szText);
debugLogA("Sending binary node:\n%s", szText.c_str());
WAWriter writer;
writer.writeNode(&node);
MBinBuffer encData = m_noise->encrypt(writer.body.data(), writer.body.length());
MBinBuffer payload = m_noise->encodeFrame(encData.data(), encData.length());
WebSocket_SendBinary(m_hServerConn, payload.data(), payload.length());
return 1;
}
/////////////////////////////////////////////////////////////////////////////////////////
std::string decodeBinStr(const std::string &buf)
{
size_t cbLen;
void *pData = mir_base64_decode(buf.c_str(), &cbLen);
if (pData == nullptr)
return "";
std::string res((char *)pData, cbLen);
mir_free(pData);
return res;
}
MBinBuffer decodeBufStr(const std::string &buf)
{
MBinBuffer res;
size_t cbLen;
void *pData = mir_base64_decode(buf.c_str(), &cbLen);
if (pData == nullptr)
return res;
res.assign(pData, cbLen);
mir_free(pData);
return res;
}
uint32_t decodeBigEndian(const ProtobufCBinaryData &buf)
{
uint32_t ret = 0;
for (int i = 0; i < buf.len; i++) {
ret <<= 8;
ret += buf.data[i];
}
return ret;
}
std::string encodeBigEndian(uint32_t num, size_t len)
{
std::string res;
for (int i = 0; i < len; i++) {
char c = num & 0xFF;
res = c + res;
num >>= 8;
}
return res;
}
void generateIV(uint8_t *iv, uint32_t &pVar)
{
auto counter = encodeBigEndian(pVar);
memset(iv, 0, 8);
memcpy(iv + 8, counter.c_str(), sizeof(uint32_t));
pVar++;
}
/////////////////////////////////////////////////////////////////////////////////////////
// Padding
void padBuffer16(MBinBuffer &buf)
{
uint8_t c = buf.length() % 16;
if (c == 0)
c = 16;
for (uint8_t i = 0; i < c; i++)
buf.append(&c, 1);
}
MBinBuffer unpadBuffer16(const MBinBuffer &buf)
{
size_t len = buf.length();
auto p = buf.data() + len - 1;
if (*p <= 0x10) {
MBinBuffer res;
res.assign(buf.data(), len - *p);
return res;
}
return buf;
}
/////////////////////////////////////////////////////////////////////////////////////////
// Popups
void WhatsAppProto::InitPopups(void)
{
g_plugin.addPopupOption(CMStringW(FORMAT, TranslateT("%s error notifications"), m_tszUserName), m_bUsePopups);
char name[256];
mir_snprintf(name, "%s_%s", m_szModuleName, "Error");
wchar_t desc[256];
mir_snwprintf(desc, L"%s/%s", m_tszUserName, TranslateT("Errors"));
POPUPCLASS ppc = {};
ppc.flags = PCF_UNICODE;
ppc.pszName = name;
ppc.pszDescription.w = desc;
ppc.hIcon = IcoLib_GetIconByHandle(m_hProtoIcon);
ppc.colorBack = RGB(191, 0, 0); //Red
ppc.colorText = RGB(255, 245, 225); //Yellow
ppc.iSeconds = 60;
m_hPopupClass = Popup_RegisterClass(&ppc);
IcoLib_ReleaseIcon(ppc.hIcon);
}
void WhatsAppProto::Popup(MCONTACT hContact, const wchar_t *szMsg, const wchar_t *szTitle)
{
if (!m_bUsePopups)
return;
char name[256];
mir_snprintf(name, "%s_%s", m_szModuleName, "Error");
CMStringW wszTitle(szTitle);
if (hContact == 0) {
wszTitle.Insert(0, L": ");
wszTitle.Insert(0, m_tszUserName);
}
POPUPDATACLASS ppd = {};
ppd.szTitle.w = wszTitle;
ppd.szText.w = szMsg;
ppd.pszClassName = name;
ppd.hContact = hContact;
Popup_AddClass(&ppd);
}
/////////////////////////////////////////////////////////////////////////////////////////
MBinBuffer WhatsAppProto::unzip(const MBinBuffer &src)
{
z_stream strm = {};
inflateInit(&strm);
strm.avail_in = (uInt)src.length();
strm.next_in = (Bytef *)src.data();
MBinBuffer res;
Bytef buf[2048];
while (strm.avail_in > 0) {
strm.avail_out = sizeof(buf);
strm.next_out = buf;
int ret = inflate(&strm, Z_NO_FLUSH);
switch (ret) {
case Z_NEED_DICT:
ret = Z_DATA_ERROR;
__fallthrough;
case Z_DATA_ERROR:
case Z_MEM_ERROR:
inflateEnd(&strm);
return res;
}
res.append(buf, sizeof(buf) - strm.avail_out);
if (ret == Z_STREAM_END)
break;
}
inflateEnd(&strm);
return res;
}
/////////////////////////////////////////////////////////////////////////////////////////
void bin2file(const MBinBuffer &buf, const wchar_t *pwszFileName)
{
int fileId = _wopen(pwszFileName, _O_WRONLY | _O_TRUNC | _O_BINARY | _O_CREAT, _S_IREAD | _S_IWRITE);
if (fileId != -1) {
write(fileId, buf.data(), (unsigned)buf.length());
close(fileId);
}
}
void string2file(const std::string &str, const wchar_t *pwszFileName)
{
int fileId = _wopen(pwszFileName, _O_WRONLY | _O_TRUNC | _O_BINARY | _O_CREAT, _S_IREAD | _S_IWRITE);
if (fileId != -1) {
write(fileId, str.c_str(), (unsigned)str.size());
close(fileId);
}
}
CMStringA file2string(const wchar_t *pwszFileName)
{
CMStringA res;
int fileId = _wopen(pwszFileName, _O_RDONLY | _O_BINARY, _S_IREAD | _S_IWRITE);
if (fileId != -1) {
res.Truncate(filelength(fileId));
read(fileId, res.GetBuffer(), res.GetLength());
close(fileId);
}
return res;
}
void WhatsAppProto::GetMessageContent(
CMStringA &txt,
const char *szType,
const char *szMimeType,
const char *szUrl,
const char *szDirectPath,
const ProtobufCBinaryData &pMediaKey,
const char *szCaption)
{
if (szCaption) {
if (m_bUseBbcodes)
txt.Append("<b>");
txt.Append(szCaption);
if (m_bUseBbcodes)
txt.Append("</b>");
txt.Append("\n");
}
CMStringA url = szUrl;
int idx = url.ReverseFind('/');
if (idx != -1)
url.Delete(0, idx+1);
idx = url.ReverseFind('.');
if (idx != -1)
url.Truncate(idx);
if (szMimeType)
url.Append(_T2A(ProtoGetAvatarExtension(ProtoGetAvatarFormatByMimeType(szMimeType))));
char *szMediaType = NEWSTR_ALLOCA(szType);
szMediaType[0] = toupper(szMediaType[0]);
MBinBuffer buf = DownloadEncryptedFile(directPath2url(szDirectPath), pMediaKey, szMediaType);
if (buf.data()) {
CMStringW pwszFileName(GetTmpFileName(szType, url));
bin2file(buf, pwszFileName);
pwszFileName.Replace(L"\\", L"/");
txt.AppendFormat("file://%s", T2Utf(pwszFileName).get());
}
}
CMStringA WhatsAppProto::GetMessageText(const Wa__Message *pMessage)
{
CMStringA szMessageText;
if (pMessage) {
if (auto *pExt = pMessage->extendedtextmessage) {
if (pExt->title) {
if (m_bUseBbcodes)
szMessageText.Append("<b>");
szMessageText.Append(pExt->title);
if (m_bUseBbcodes)
szMessageText.Append("</b>");
szMessageText.Append("\n");
}
if (pExt->contextinfo && pExt->contextinfo->quotedmessage)
szMessageText.AppendFormat("> %s\n\n", pExt->contextinfo->quotedmessage->conversation);
if (pExt->text)
szMessageText.Append(pExt->text);
}
else if (auto *pAudio = pMessage->audiomessage) {
GetMessageContent(szMessageText, "audio", pAudio->url, pAudio->directpath, pAudio->mimetype, pAudio->mediakey);
}
else if (auto *pVideo = pMessage->videomessage) {
GetMessageContent(szMessageText, "video", pVideo->url, pVideo->directpath, pVideo->mimetype, pVideo->mediakey, pVideo->caption);
}
else if (auto *pImage = pMessage->imagemessage) {
GetMessageContent(szMessageText, "image", pImage->url, pImage->directpath, pImage->mimetype, pImage->mediakey, pImage->caption);
}
else if (mir_strlen(pMessage->conversation))
szMessageText = pMessage->conversation;
}
return szMessageText;
}
/////////////////////////////////////////////////////////////////////////////////////////
void proto::CleanBinary(ProtobufCBinaryData &field)
{
if (field.data) {
free(field.data);
field.data = nullptr;
}
field.len = 0;
}
ProtobufCBinaryData proto::SetBinary(const void *pData, size_t len)
{
ProtobufCBinaryData res;
if (pData == nullptr) {
res.data = nullptr;
res.len = 0;
}
else {
res.data = (uint8_t *)malloc(res.len = len);
memcpy(res.data, pData, len);
}
return res;
}
MBinBuffer proto::Serialize(const ProtobufCMessage *msg)
{
MBinBuffer res(protobuf_c_message_get_packed_size(msg));
protobuf_c_message_pack(msg, res.data());
return res;
}
/////////////////////////////////////////////////////////////////////////////////////////
CMStringA directPath2url(const char *pszDirectPath)
{
return CMStringA("https://mmg.whatsapp.net") + pszDirectPath;
}
WAMediaKeys::WAMediaKeys(const uint8_t *pKey, size_t keyLen, const char *pszMediaType)
{
CMStringA pszHkdfString(FORMAT, "WhatsApp %s Keys", pszMediaType);
HKDF(EVP_sha256(), (BYTE *)"", 0, pKey, (int)keyLen, (BYTE *)pszHkdfString.c_str(), pszHkdfString.GetLength(), (BYTE *)this, sizeof(*this));
}
MBinBuffer WhatsAppProto::DownloadEncryptedFile(const char *url, const ProtobufCBinaryData &mediaKeys, const char *pszMediaType)
{
NETLIBHTTPHEADER headers[1] = {{"Origin", "https://web.whatsapp.com"}};
NETLIBHTTPREQUEST req = {};
req.cbSize = sizeof(req);
req.requestType = REQUEST_GET;
req.szUrl = (char*)url;
req.headersCount = _countof(headers);
req.headers = headers;
MBinBuffer ret;
auto *pResp = Netlib_HttpTransaction(m_hNetlibUser, &req);
if (pResp) {
if (pResp->resultCode == 200) {
WAMediaKeys out(mediaKeys.data, mediaKeys.len, pszMediaType);
ret = aesDecrypt(EVP_aes_256_cbc(), out.cipherKey, out.iv, pResp->pData, pResp->dataLength);
}
}
return ret;
}
CMStringW WhatsAppProto::GetTmpFileName(const char *pszClass, const char *pszAddition)
{
CMStringW ret(VARSW(L"%miranda_userdata%"));
ret.AppendFormat(L"/%S/%S_%S", m_szModuleName, pszClass, pszAddition);
return ret;
}
|