QT后台进程进行键盘输入嗅探
我正在开发一个简单的应用程序,该应用程序将在后台运行并捕获用户的键盘输入(如键盘记录器,但用于 LAN)
我正在发送 UDP 数据包以传输击键 但从后台进程捕获键盘输入的问题似乎仍然无法解决。 所以需要帮助。
am working on a simple application which would run in the background and capture keyboard input from the user (like a keylogger , but for the LAN )
I am sending UDP packets for transferring keystrokes
But the problem of capturing keyboard input from a background process still seems unreachable .
So help needed .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在 Windows 上执行此操作,则必须使用 WinAPI:
SetWindowsHookEx
。我不知道适用于 Linux 或 MacOS编辑:
这是文档:SetWindowsHookEx
例如此处。
If you want to do it for Windows you will have to use the WinAPI :
SetWindowsHookEx
. I don't know for Linux or MacOSEdit :
Here is the documentation : SetWindowsHookEx
Wih an exemple here.