从winsock数据中检测用户?

发布于 2024-09-08 06:16:48 字数 98 浏览 6 评论 0原文

例如,我在名为 Admin 的帐户下使用 Winsock 创建套接字。是否有可能检测哪个用户创建了该套接字?我想在我的程序中写入:此套接字是由“Admin”创建的。我正在使用 c++

For example i create socket using winsock under account named Admin. Is there any possibility to detect which user created that socket? I would like to write in my program: This socket was created by "Admin". i am using c++

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

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

发布评论

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

评论(2

林空鹿饮溪 2024-09-15 06:16:49

套接字不是安全对象(请参阅此处)因此不能有与它们关联的安全描述符,因此您无法知道“创建套接字”的用户帐户。

您可以使用 GetExtendedTcpTable 获取信息关于连接,然后找到创建套接字的进程的 PID;然后你可以决定使用基于流程的东西......

你为什么要这样做?

Sockets are not securable objects (see here) and so cannot have a security descriptor associated with them and so there's no way you can know the user account that 'created the socket'.

You could use GetExtendedTcpTable to get information about connections and then locate the PID of the process that created the socket; you could then decide to use something based on the process...

Why do you want to do this anyway?

我的影子我的梦 2024-09-15 06:16:49

netstat -o 应该为您提供创建套接字的进程 ID;从那里,您可以找到流程所有者。如果其他一切都失败了,您可以在新进程中生成 netstat 并解析输出。

netstat -o should give you process IDs which created the socket; from there, you can find the process owner. If everything else fails, you could spawn netstat in a new process and parse the output.

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