如何使用 NetNamedPipesBinding 保护 WCF 服务,使其只能由当前用户调用?

发布于 2024-08-26 00:20:44 字数 186 浏览 9 评论 0原文

我使用带有 NetNamedPipesBinding 的 WCF 服务在进程中的两个 AppDomain 之间进行通信。

如何保护服务的安全,使同一台计算机上的其他用户无法访问该服务?

我已经采取了在端点地址中使用 GUID 的预防措施,因此通过模糊性有一点安全性,但我正在寻找一种使用 ACL 或类似的东西来锁定服务的方法。

I'm using a WCF service with the NetNamedPipesBinding to communicate between two AppDomains in my process.

How do I secure the service so that it is not accessible to other users on the same machine?

I have already taken the precaution of using a GUID in the Endpoint Address, so there's a little security through obscurity, but I'm looking for a way of locking the service down using ACL or something similar.

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

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

发布评论

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

评论(3

怎言笑 2024-09-02 00:20:44

您可以使用 WCF 身份验证。其中一种选项是根据 Windows 用户名和密码进行验证。如果您使用活动目录,您也可以使用它(设置更困难,负担更少)。 http: //blogs.msdn.com/pedram/archive/2007/10/05/wcf-authentication-custom-username-and-password-validator.aspx

you can use WCF authentication. One of the options is to validate against the windows username and password. If you use active directory, you can use that too (harder to set up, put less of a burden). http://blogs.msdn.com/pedram/archive/2007/10/05/wcf-authentication-custom-username-and-password-validator.aspx.

╄→承喏 2024-09-02 00:20:44

WCF NetNamedPipesBinding 仅具有传输安全

http://msdn.microsoft.com/en- us/library/ms731699.aspx

这是共享电脑吗?您是否有多个用户本地登录到同一台物理机?

WCF NetNamedPipesBinding has only Transport Security

http://msdn.microsoft.com/en-us/library/ms731699.aspx

Is this a shared PC? Do you have several users logging on locally to the same physical machine?

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