原文地址:https://uyiplus.com/2020/pcwechat_helper
注入dll到微信
0x0 首先要打开微信进程
wchar_t wxPath[] = LC:\\Program Files (x86)\\Tencent\\WeChat\\WeChat.exe;
STARTUPINFO si = { 0 };
PROCESS_INFORMATION pi = { 0 };
ZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
Ze