-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCAutoFunction.cpp
464 lines (401 loc) · 11 KB
/
CAutoFunction.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
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
#include "stdafx.h"
#include "message.h"
#include "offset.h"
#include "CAutoFunction.h"
#include <atlconv.h>
#include <string>
#include <direct.h> //_mkdir函数的头文件
#include <io.h> //_access函数的头文件
#include <iostream>
#include <cstdio>
#include <ctime>
#include <stdio.h>
using namespace std;
//备份的原数据
BYTE bbackcode[5] = { 0 };
BYTE bjmpcode[5] = { 0 };
DWORD pEax = 0; //eax寄存器
DWORD dwReternAddress = (DWORD)GetModuleHandle(L"WeChatWin.dll") + WxGetExpressionsAddr + 5; //返回地址
DWORD dwCallAddr = (DWORD)GetModuleHandle(L"WeChatWin.dll") + WxGetExpressionsCallAddr;
//************************************************************
// 函数名称: AgreeUserRequest
// 函数说明: 同意好友请求
// 作 者: GuiShou
// 时 间: 2019/7/17
// 参 数: v1 v2
// 返 回 值: void
//************************************************************
void AgreeUserRequest(wchar_t* v1, wchar_t* v2)
{
struct v1Info
{
int fill = 0;
wchar_t* v1 = 0;
int v1Len;
int maxV1Len;
char fill2[0x41C] = { 0 };
DWORD v2 = { 0 };
};
struct v2Info
{
char fill[0x24C] = { 0 };
DWORD fill3 = 0x25;
char fill4[0x40] = { 0 };
wchar_t* v2;
int v2Len;
int maxV2Len;
char fill2[0x8] = { 0 };
};
DWORD base = (DWORD)LoadLibrary(L"WeChatWin.dll");
DWORD callAdd1 = base + WxAgreeUserRequestCall1;
DWORD callAdd2 = base + WxAgreeUserRequestCall2;
DWORD callAdd3 = base + WxAgreeUserRequestCall3;
DWORD callAdd4 = base + WxAgreeUserRequestCall4;
DWORD params = base + 0x126E050;
DWORD* asmP = (DWORD*)params;
v1Info userInfoV1 = { 0 };
v2Info userInfoV2 = { 0 };
userInfoV1.v2 = (DWORD)&userInfoV2.fill;
userInfoV1.v1 = v1;
userInfoV1.v1Len = wcslen(v1);
userInfoV1.maxV1Len = wcslen(v1) * 2;
userInfoV2.v2 = v2;
userInfoV2.v2Len = wcslen(v2);
userInfoV2.maxV2Len = wcslen(v2) * 2;
char* asmUser = (char*)&userInfoV1.fill;
char buff[0x14] = { 0 };
char buff2[0x48] = { 0 };
char* asmBuff = buff2;
__asm
{
mov ecx, asmUser;
push 0x6;
sub esp, 0x14;
push esp;
call callAdd1;
mov ecx, asmUser;
lea eax, buff;
push eax;
call callAdd2;
mov esi, eax;
sub esp, 0x8;
mov ecx, asmP;
call callAdd3;
mov ecx, asmBuff;
mov edx, ecx;
push edx;
push eax;
push esi;
call callAdd4;
}
}
//************************************************************
// 函数名称: AutoAgreeUserRequest
// 函数说明: 自动同意好友请求
// 作 者: GuiShou
// 时 间: 2019/7/17
// 参 数: msg 消息内容
// 返 回 值: void
//************************************************************
void AutoAgreeUserRequest(wstring msg)
{
int v1strat = msg.find(L"v1_");
int v1end = msg.find(L"@stranger");
wstring v1;
v1 = msg.substr(v1strat, v1end - v1strat + 9);
//找到v2
int v2strat = msg.find(L"v2_");
int v2end = msg.rfind(L"@stranger");
wstring v2;
v2 = msg.substr(v2strat, v2end - v2strat + 9);
//调用同意好友请求的call
AgreeUserRequest((wchar_t*)v1.c_str(), (wchar_t*)v2.c_str());
}
//************************************************************
// 函数名称: CllectMoney
// 函数说明: 收款
// 作 者: GuiShou
// 时 间: 2019/7/15
// 参 数: transferid 转账ID wxid 微信ID
// 返 回 值: void
//************************************************************
void CllectMoney(wchar_t* transferid, wchar_t* wxid)
{
struct CllectMoneyStruct
{
wchar_t* ptransferid;
int transferidLen;
int transferidMaxLen;
char full[0x8] = { 0 };
wchar_t* pwxid;
int wxidLen;
int wxidMaxLen;
char full2[0x8] = { 0 };
};
CllectMoneyStruct cllect;
cllect.ptransferid = transferid;
cllect.transferidLen = wcslen(transferid) + 1;
cllect.transferidMaxLen = (wcslen(transferid) + 1) * 2;
cllect.pwxid = wxid;
cllect.wxidLen = wcslen(wxid) + 1;
cllect.wxidMaxLen = (wcslen(wxid) + 1) * 2;
char* asmBuff = (char*)&cllect.ptransferid;
DWORD dwWeChatWinAddr = (DWORD)GetModuleHandle(L"WeChatWin.dll");
DWORD dwCall1 = dwWeChatWinAddr + WxCllectMoneyCall1;
DWORD dwCall2 = dwWeChatWinAddr + WxCllectMoneyCall2;
__asm
{
sub esp, 0x30;
mov ecx, esp;
mov eax, asmBuff;
push eax;
call dwCall1;
call dwCall2;
add esp, 0x30;
}
}
//************************************************************
// 函数名称: AutoCllectMoney
// 函数说明: 自动收款
// 作 者: GuiShou
// 时 间: 2019/7/17
// 参 数: msg 消息内容
// 返 回 值: void
//************************************************************
void AutoCllectMoney(wstring msg,wchar_t* wxid)
{
// 找到<transferid>字符串的位置
int pos1 = msg.find(L"<transferid>");
//找到]]></transferid>字符串的位置
int pos2 = msg.find(L"]]></transferid>");
//取出多余的字符串长度
wstring noneed = L"<transferid><![CDATA[";
int noneedLen = noneed.length();
//取出转账ID
wstring transferid;
transferid = msg.substr(pos1 + noneedLen, (pos2 - pos1) - noneedLen);
//调用收款call 实现自动收款
CllectMoney((wchar_t*)transferid.c_str(), wxid);
}
//************************************************************
// 函数名称: AddCardUser
// 函数说明: 添加名片好友
// 作 者: GuiShou
// 时 间: 2019/7/18
// 参 数: v1 msg 消息内容
// 返 回 值: void
//************************************************************
void AddCardUser(wchar_t* v1, wchar_t* msg)
{
DWORD dwWeChatWinAddr = (DWORD)GetModuleHandle(L"WeChatWin.dll");
DWORD dwParam1 = dwWeChatWinAddr + WxAddWxUserParam1;
DWORD dwCall1 = dwWeChatWinAddr + WxAddWxUserCall1;
DWORD dwCall2 = dwWeChatWinAddr + WxAddWxUserCall2;
DWORD dwCall3 = dwWeChatWinAddr + WxAddWxUserCall3;
DWORD dwCall4 = dwWeChatWinAddr + WxAddWxUserCall4;
DWORD dwCall5 = dwWeChatWinAddr + WxAddWxUserCall5;
struct TextStruct
{
wchar_t* pStr;
int strLen;
int strMaxLen;
};
TextStruct pV1 = { 0 };
pV1.pStr = v1;
pV1.strLen = wcslen(v1) + 1;
pV1.strMaxLen = (wcslen(v1) + 1) * 2;
char* asmV1 = (char*)&pV1.pStr;
char buff3[0x100] = { 0 };
char* buff = buff3;
__asm
{
sub esp, 0x18;
mov ecx, esp;
mov dword ptr ss : [ebp - 0xDC], esp;
push dwParam1;
call dwCall1;
sub esp, 0x18;
mov eax, buff;
mov dword ptr ss : [ebp - 0xE4], esp;
mov ecx, esp;
push eax;
call dwCall2;
push 0x11;
sub esp, 0x14;
mov ecx, esp;
mov dword ptr ss : [ebp - 0xE8], esp;
push - 0x1;
mov edi, msg;
push edi;
call dwCall3;
push 0x2;
sub esp, 0x14;
mov ecx, esp;
mov dword ptr ss : [ebp - 0xE0], esp;
mov ebx, asmV1;
push ebx;
call dwCall4;
mov ecx, eax;
call dwCall5;
}
}
//************************************************************
// 函数名称: AutoAddCardUser
// 函数说明: 自动添加名片好友
// 作 者: GuiShou
// 时 间: 2019/7/18
// 参 数: msg 消息内容
// 返 回 值: void
//************************************************************
void AutoAddCardUser(wstring msg)
{
//拿到V1
int v1strat = msg.find(L"v1_");
int v1end = msg.find(L"@stranger");
wstring v1;
v1 = msg.substr(v1strat, v1end - v1strat + 9);
//调用添加名片好友函数
AddCardUser((wchar_t*)v1.c_str(), (wchar_t*)L"快通过~快通过~ 吼吼!");
}
//************************************************************
// 函数名称: HookExtractExpression
// 函数说明: HOOK提取表情Call
// 作 者: GuiShou
// 时 间: 2019/7/21
// 参 数: dwHookOffset 偏移
// 返 回 值: void
//************************************************************
void HookExtractExpression(DWORD dwHookOffset)
{
//拿到模块基址
DWORD dwWeChatWinAddr = (DWORD)GetModuleHandle(L"WeChatWin.dll");
//计算需要HOOK的地址
DWORD dwHookAddr = dwWeChatWinAddr + dwHookOffset;
//填充数据
bjmpcode[0] = 0xE9;
//计算偏移
*(DWORD*)(&bjmpcode[1]) = (DWORD)ExtractExpression - dwHookAddr - 5;
// 保存以前的属性用于还原
DWORD OldProtext = 0;
// 因为要往代码段写入数据,又因为代码段是不可写的,所以需要修改属性
VirtualProtect((LPVOID)dwHookAddr, 5, PAGE_EXECUTE_READWRITE, &OldProtext);
//保存原有的指令
memcpy(bbackcode, (void*)dwHookAddr, 5);
//写入自己的代码
memcpy((void*)dwHookAddr, bjmpcode, 5);
// 执行完了操作之后需要进行还原
VirtualProtect((LPVOID)dwHookAddr, 5, OldProtext, &OldProtext);
}
//************************************************************
// 函数名称: ExtractExpression
// 函数说明: 提取表情
// 作 者: GuiShou
// 时 间: 2019/7/21
// 参 数: void
// 返 回 值: void
//************************************************************
void __declspec(naked) ExtractExpression()
{
//备份寄存器
__asm pushad;
__asm pushfd;
//取出ecx的内容
__asm mov pEax, eax;
OutputExpression(pEax);
//恢复寄存器
__asm popfd;
__asm popad;
__asm call dwCallAddr; //调用原来的call 这里可能出错
//跳转到返回地址
__asm jmp dwReternAddress;
}
//************************************************************
// 函数名称: OutputExpression
// 函数说明: 输出表情
// 作 者: GuiShou
// 时 间: 2019/7/21
// 参 数: dwExpressionAddr 地址
// 返 回 值: void
//************************************************************
void OutputExpression(DWORD dwExpressionAddr)
{
//取出图片长度
DWORD dwImageLen = *((DWORD*)(dwExpressionAddr + 4));
//取出图片内容
DWORD dwImage = *((DWORD*)(dwExpressionAddr));
unsigned char magic_head[4] = { 0 };
char postfix[5] = { 0 };
memcpy(magic_head, (void*)dwImage, 3);
//根据MAGIC头判断后缀
if (magic_head[0] == 137 && magic_head[1] == 80 && magic_head[2] == 78)
{
strcpy_s(postfix, 5, ".png");
}
else if (magic_head[0] == 71 && magic_head[1] == 73 && magic_head[2] == 70)
{
strcpy_s(postfix, 5, ".gif");
}
else if (magic_head[0] == 255 && magic_head[1] == 216 && magic_head[2] == 255)
{
strcpy_s(postfix, 5, ".jpg");
}
//获取临时文件夹目录
char temppath[MAX_PATH] = { 0 };
GetTempPathA(MAX_PATH, temppath);
char imagedir[20] = { "WeChatExpressions" };
//拼接存放微信表情的目录
char WeChatExpressionsPath[MAX_PATH] = { 0 };
sprintf_s(WeChatExpressionsPath, "%s%s\\", temppath, imagedir);
//创建目录存放图片
CreateDir(WeChatExpressionsPath);
//获取当前时间作为文件名
time_t rawtime;
struct tm *ptminfo = new struct tm;
time(&rawtime);
localtime_s(ptminfo, &rawtime);
char currenttime[30] = { 0 };
sprintf_s(currenttime, "%02d%02d%02d%02d%02d%02d", ptminfo->tm_year + 1900,
ptminfo->tm_mon + 1, ptminfo->tm_mday, ptminfo->tm_hour, ptminfo->tm_min, ptminfo->tm_sec);
//拼接完整的图片路径
char imagepath[MAX_PATH] = { 0 };
sprintf_s(imagepath, "%s%s%s", WeChatExpressionsPath, currenttime, postfix);
//创建文件
HANDLE hFile = CreateFileA(imagepath, GENERIC_ALL, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
if (hFile == INVALID_HANDLE_VALUE)
{
MessageBoxA(NULL, "创建文件失败", "错误", 0);
return;
}
//写入文件
DWORD dwWrite = 0;
WriteFile(hFile, (LPCVOID)dwImage, dwImageLen, &dwWrite, 0);
//关闭句柄
CloseHandle(hFile);
}
//************************************************************
// 函数名称: CreateDir
// 函数说明: 创建目录
// 作 者: GuiShou
// 时 间: 2019/7/21
// 参 数: dir 目录
// 返 回 值: void
//************************************************************
void CreateDir(const char *dir)
{
int m = 0, n;
string str1, str2;
str1 = dir;
str2 = str1.substr(0, 2);
str1 = str1.substr(3, str1.size());
while (m >= 0)
{
m = str1.find('\\');
str2 += '\\' + str1.substr(0, m);
n = _access(str2.c_str(), 0); //判断该目录是否存在
if (n == -1)
{
_mkdir(str2.c_str()); //创建目录
}
str1 = str1.substr(m + 1, str1.size());
}
}