提交 e5d71296 编写于 作者: D Duo

Fix image and video auto download issue

上级 6f113b1c
......@@ -92,6 +92,17 @@ void __stdcall HookImageMsg()
char settime[] = "00:00-00:00";
DWORD AutoDownloadTimeSettingAddr = GetWeChatWinBase() + AutoDownloadTimeSettingOffset;
WriteProcessMemory(GetCurrentProcess(), (LPVOID)AutoDownloadTimeSettingAddr, settime, strlen(settime) + 1, 0);
// video auto
BYTE nopVideo[] = {0x90, 0x90, 0x90, 0x90, 0x90, 0x90};
DWORD nopVideoAddr = WeChatWinBase + 0x48CE1B;
WriteProcessMemory(GetCurrentProcess(), (LPVOID)nopVideoAddr, &nopVideo, sizeof(nopVideo), 0);
// image auto
BYTE nopImg[] = {0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90};
DWORD nopImgAddr = WeChatWinBase + 0x48D56B;
WriteProcessMemory(GetCurrentProcess(), (LPVOID)nopImgAddr, &nopImg, sizeof(nopImg), 0);
ImageMsgHooked = true;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册