IAT Hooking、QT 库

发布于 2024-10-09 04:17:48 字数 234 浏览 4 评论 0原文

我有一个 .dll 注入到另一个进程的地址空间中。目标应用程序使用 QT 库。我可以插入一条弯路,以便每次QT函数 ?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z 被调用,我的函数被调用,然后调用被传递。但是,如何访问传递到 ?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z 的参数?这个名字是不是乱码,这种情况下通常是什么?

谢谢。

I have a .dll injected into the address space of another process. The target app uses the QT library. I can insert a detour so that each time the QT function
?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z is called my function is called instead and then the call passed on. However, how do I get access to the parameters passed into ?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z? Is this name garbled, in which case what is it normally?

Thanks.

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

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

发布评论

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

评论(2

与君绝 2024-10-16 04:17:48

看起来该函数可能是 QListView::rowsInserted(const QModelIndex & ,整数,整数)。函数参考中列出了参数。

It looks like the function is probably QListView::rowsInserted(const QModelIndex &, int, int). The parameters are listed in the function reference.

紫罗兰の梦幻 2024-10-16 04:17:48

您可以使用 undname 工具来取消修饰函数调用。它随 Visual C++ 一起提供。
Raymond Chen 在博客中对此进行了介绍:取消修饰名称以了解函数的用途找不到

C:\Program Files\Microsoft SDKs\Windows\v7.1>undname ?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z

Undecoration of :- "?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z"
is :- "protected: virtual void __thiscall QListView::rowsInserted(class QModelIndex const &,int,int)"

You could use the undname tool to undecorate function calls. It ships with Visual C++.
Raymond Chen blogged about it: Undecorating names to see why a function can't be found

C:\Program Files\Microsoft SDKs\Windows\v7.1>undname ?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z

Undecoration of :- "?rowsInserted@QListView@@MAEXABVQModelIndex@@HH@Z"
is :- "protected: virtual void __thiscall QListView::rowsInserted(class QModelIndex const &,int,int)"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文