如何在内核模式下获取Windows标题?

发布于 2024-12-03 02:21:08 字数 177 浏览 0 评论 0原文

我通过 NtUserGetThreadState 获得了 hwnd,并使用 NtUserDestroyWindow 进行了测试。

但我无法使用 NtUserInternalGetWindowText 或使用 NtUserMessageCall 发送 WM_GETTEXT 来获取窗口标题文本。

我应该怎么办?

I've got hwnd through NtUserGetThreadState, and tested with NtUserDestroyWindow.

But I can't get windows caption text by using NtUserInternalGetWindowText or by sending WM_GETTEXT using NtUserMessageCall.

What should I do?

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

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

发布评论

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

评论(2

甜点 2024-12-10 02:21:08

根据这个站点,NtUserInternalGetWindowText的签名是:

INT NTAPI NtUserInternalGetWindowText (HWND  hWnd, 
                                       LPWSTR  lpString,
                                       INT nMaxCount)

First :

你不能调试来理解什么是append。

第二:

你是否注意到它使用unicode字符串这一事实

According to this site, the signature of NtUserInternalGetWindowText is :

INT NTAPI NtUserInternalGetWindowText (HWND  hWnd, 
                                       LPWSTR  lpString,
                                       INT nMaxCount)

First :

Can't you debug to understand what append.

Second :

Do you take care of the fact it use unicode string

—━☆沉默づ 2024-12-10 02:21:08

我忘记在目标进程中分配内存。

通过使用ZwAllocateVirtualMemory在目标进程中分配内存,现在可以工作了。

I forgot to allocate memory in target process.

By using ZwAllocateVirtualMemory to allocate memory in target process, it is working now.

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