首页
社区
课程
招聘
未解决 [求助]关于聊天基址找法
发表于: 2020-12-30 21:19 2994

未解决 [求助]关于聊天基址找法

2020-12-30 21:19
2994

如题,我想读取像 LOL CF 游戏里的聊天内容,各位大佬有没有找相关基址的思路?


[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (4)
雪    币: 181
活跃值: (621)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2

       std::unique_ptr<Chat> MyChat{ std::make_unique<Chat>(chatdata) };
       MyChat->Send()

万一是这种new出来的,没有基址怎么办。

最后于 2020-12-30 21:51 被柒雪天尚编辑 ,原因:
2020-12-30 21:50
0
雪    币: 1235
活跃值: (1330)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
typedef void(__thiscall *fnPrintChat)(DWORD ChatClient, const char *Message, int Color);
Typedefs::fnPrintChat PrintChat;

PrintChat = (Typedefs::fnPrintChat)(baseAddr + oPrintChat);//基质+偏移
PrintChat(*(DWORD *)(baseAddr + oChatClientPtr), u8"辅助启动注入成功!", RGB(0, 255, 0));
2020-12-30 22:02
0
雪    币: 12848
活跃值: (9142)
能力值: ( LV9,RANK:280 )
在线值:
发帖
回帖
粉丝
4
you can find oChatClient by xref string "game_ping_[Throttled]_EmoteThrottled"
2020-12-31 07:52
0
雪    币: 9632
活跃值: (3299)
能力值: ( LV3,RANK:30 )
在线值:
发帖
回帖
粉丝
5
是别人发的聊天内容吗?那就从收包入手了
2020-12-31 11:30
0
游客
登录 | 注册 方可回帖
返回
//