绕道去获取全局指针?

发布于 2024-08-19 04:00:13 字数 390 浏览 6 评论 0原文

我需要获取应用程序的协议版本,并且我对绕道的内部工作原理不太了解。我通常使用我的朋友编写的 detour 类(不是 Windows detour,因为这适用于 win/linux),但我想知道是否有人可以给我一些关于如何检索全局指针的值的见解?我找到了一个使用它的函数,但我使用的类只允许您重写函数,而不能访问单独的行。这是 IDA 中的程序集的样子...

我需要获取“gpszVersionString_ptr”的值

http:// www.ampaste.net/m57f13aba

编辑

抱歉,它丢失了格式,所以我不得不将其粘贴。

I need to get the protocol version of an application, and I don't know too much about the inner workings of detouring. I usually use a detour class written by a friend of mine (Not windows detour, as this works on win/linux) but im wondering if anyone can give me some insight on how to retrieve the value of a global pointer? I found a function which uses it, but the class I use only allows for you to rewrite functions, not access individual lines. Here is what the assembly looks like from IDA...

I need to get the value of "gpszVersionString_ptr"

http://www.ampaste.net/m57f13aba

Edit

Sorry, it lost formatting so i had to ampaste it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

留蓝 2024-08-26 04:00:13

如果它已经是编译的二进制文件。使用字符串模式匹配提取字符串怎么样?
例如,您可以逐个字符地读取文件并搜索模式:

协议版本 %i\nExe 版本 %s
(%s)

if it's already a compiled binary. How about extracting the string using string pattern match?
For example you can read in the file char by char and search for the pattern:

Protocol version %i\nExe version %s
(%s)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文