启用MSDTC的安全风险
默认情况下禁用 MSDTC(Windows 2003 - 及以后版本),我希望为我正在开发的需要 .Net C# 分布式事务的应用程序启用它。
我不认为启用它会带来任何安全问题,但是 SO 是否知道启用 DTC 会带来任何安全问题?
干杯
奥利
MSDTC is disabled by default (windows 2003 - onwards) and I want to have it enabled for an application I'm developing that requires distributed transactions from .Net C#.
I don't believe there are any security issues with enabling it, but does SO know of any security issues with enabling the DTC?
Cheers
Ollie
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要机器已完全修补,您就应该相当安全。据我所知,过去可能有一些与此相关的漏洞的补丁(但操作系统中的所有组件都有)。
如果它正在侦听外部端口,那么您可能需要锁定可以连接到它的主机。如果将来发现某种蠕虫病毒,这将为您提供一定程度的保护。通常,您不想在面向互联网的计算机上公开这种内容。
As long as the machine is fully patched you should be reasonably safe. AFAIK there may have been some patches in the past for vulnerabilities related to this (but then there is for all components in the OS).
If it is listening on an external port then you may want to lock down the hosts which can connect to it. This would give you a level of protection if some sort of worm on compromise is discovered the in future. It is generally not the sort of thing you want to expose on internet-facing machines.