wxhelper/README.md

78 lines
2.4 KiB
Markdown
Raw Permalink Normal View History

2022-12-21 17:13:03 +08:00
# wxhelper
2023-12-20 17:56:37 +08:00
wechat hook 。PC端微信逆向学习。
2022-12-21 20:30:44 +08:00
#### 免责声明:
本仓库发布的内容,仅用于学习研究,请勿用于非法用途和商业用途!如因此产生任何法律纠纷,均与作者无关!
#### 项目说明:
2023-07-07 14:57:14 +08:00
<font color= "#dd0000">本项目是逆向练习项目,可能会造成封号等后果。请自行承担风险。仅用于学习研究,请勿于非法用途。</font>
2022-12-21 20:30:44 +08:00
2023-02-18 16:51:35 +08:00
#### 实现原理:
逆向分析PC端微信客户端定位相关功能关键Call编写dll调用关键Call。然后将该dll文件注入到微信进程。
2023-03-23 12:09:24 +08:00
dll在注入成功时创建了一个默认端口为19088的http服务端然后所有的功能直接可以通过http协议调用。
```
|----------------
-------------------------- 注入 | WeChat.exe |
| ConsoleApplication.exe |————————> |---------------- -------------- 访问 ---------
| | | wxhelper.dll |————————>| 启动http服务 | <----------| clent |
|-------------------------- |----------------- -------------- --------
2023-02-18 16:51:35 +08:00
2023-03-23 12:09:24 +08:00
```
2023-12-20 17:56:37 +08:00
#### 快速开始:
2023-01-10 10:03:57 +08:00
2023-12-20 17:56:37 +08:00
1.使用注入工具将wxhelper.dll注入到WeChat中。
2.执行
```
curl --location --request POST '127.0.0.1:19088/api/checkLogin'
```
即可检查登录状态。
如果已经登录则执行获取登录用户信息
```
curl --location --request POST '127.0.0.1:19088/api/userInfo'
```
3.其他更多接口参考相关文档。
2023-03-28 11:03:45 +08:00
2023-02-09 16:11:43 +08:00
#### 参与项目
个人精力和水平有限,项目还有许多不足,欢迎提出 issues 或 pr。期待你的贡献。
2023-01-10 10:03:57 +08:00
2022-12-21 20:30:44 +08:00
2023-02-10 17:05:11 +08:00
2023-03-23 12:09:24 +08:00
#### 问题讨论
个人常用的方法请参考https://github.com/ttttupup/wxhelper/wiki
2023-03-28 11:03:45 +08:00
使用上的问题可查询https://github.com/ttttupup/wxhelper/discussions
2023-03-29 10:10:21 +08:00
数据库解密请参考https://github.com/ttttupup/wxhelper/wiki
2023-03-30 23:18:46 +08:00
个人精力有限只维护最新版本旧版本的bug会在新版本中修复不维护旧版本。
2023-02-10 17:05:11 +08:00
2022-12-21 20:42:34 +08:00
#### 编译环境
2022-12-21 20:30:44 +08:00
2023-12-20 17:56:37 +08:00
Visual Studio 2022
2022-12-26 16:57:18 +08:00
Visual Studio code
cmake
2022-12-21 20:42:34 +08:00
vcpkg
2023-03-28 11:03:45 +08:00
#### 编译构建
2023-07-07 14:57:14 +08:00
2023-04-08 15:25:22 +08:00
```
cd wxhelper
mkdir build
cd build
cmake -DCMAKE_C_COMPILER=cl.exe \
-DCMAKE_CXX_COMPILER=cl.exe \
-DCMAKE_BUILD_TYPE=Debug \
2023-12-20 17:56:37 +08:00
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=${vcpkg install dir}/scripts/buildsystems/vcpkg.cmake \
2023-04-08 15:25:22 +08:00
-SC:/wxhelper \
2023-12-20 17:56:37 +08:00
-BC:/wxhelper/build/x64-debug\
2023-04-08 15:25:22 +08:00
-G Ninja
2023-05-11 16:57:54 +08:00
#### 讨论组
https://t.me/+LmvAauweyUpjYzJl