捕获远程桌面请求

发布于 2024-10-08 01:59:01 字数 164 浏览 4 评论 0 原文

我有一个应用程序在机器 A 上运行,现在机器 B 正在请求机器 A 的远程桌面。在 Machine-A 上运行的应用程序需要捕获此请求并记录它。这可以通过 C++/C# 实现吗?

我用谷歌搜索是否有任何寡妇消息正在传输,但徒劳无功。另外,我将无法绑定到端口 3389,因为它已被远程桌面服务器使用。

I have an app running at the Machine-A, now Machine-B is requesting a remote desktop to Machine-A. The app running at Machine-A needs to capture this request and log it. Is this possible through either C++/C#.

I have googled to find, if there's any widows message being transmitted, but in vain. Also I won't be able to bind to the port 3389, as its already being used by Remote Desktop server.

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

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

发布评论

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

评论(2

橘和柠 2024-10-15 01:59:01

您可以通过 ServiceBase.OnSessionChange 接收各种远程桌面事件的通知(如果您的 .NET 应用程序作为 Windows 服务运行)或 WTSRegisterSessionNotification。要获取有关新会话的更多信息,您可以使用其他 WTS* 函数或 Cassia 库 来自 .NET 应用程序。

You can receive notifications of various remote desktop events via ServiceBase.OnSessionChange (if your .NET application is running as a Windows service) or WTSRegisterSessionNotification. To get additional information about the new session, you can use other WTS* functions, or the Cassia library from a .NET application.

瘫痪情歌 2024-10-15 01:59:01

当然你不能绑定,但你可以嗅探流量 - 读取原始套接字和/或 PCAP 驱动程序。

Surely you cannot bind, but you CAN sniff traffic - read for raw sockets and/or PCAP driver.

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