gpt4 book ai didi

.net - 没有客户端证书的 WCF 消息/方法安全性

转载 作者:行者123 更新时间:2023-11-30 23:53:58 28 4
gpt4 key购买 nike

我有一个 WCF 服务,托管在 IIS 中。在服务上,我在服务中有大约 20 种方法。我想用用户名/密码保护其中一些方法。我无法控制调用该服务的客户端,因此无法在客户端上安装证书。我们的服务充当平台,保存所有用户个人资料信息,包括登录信息。

我认为我希望客户端对 WCF 服务上的 Authenticate(username,password) 方法进行一次身份验证,获取授权 token ,并将该 token 传递给后续调用。 (有点像 Asp.net 成员(member)提供商使用表单例份验证 session )。如果可能的话,我不希望客户端必须为每个方法调用传递用户名/密码。这是正确的模式吗?有没有更好的方法让这个功能使用标准 WCF 功能工作?有没有人有任何示例配置/代码来展示让它工作的正确方法?

最佳答案

WCF 不提供开箱即用的按操作身份验证。如果您想要安全和不安全的操作,最简单的方法是将它们分成两个服务契约(Contract),并使用不同的安全设置公开每个服务契约(Contract)。

您对授权 token 的想法已经在 WCF 中实现,但在您的场景中,您必须使用 wsHttpBinding、UserName 客户端凭据、SecurityContext 和服务证书。

  <system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="securedService">
<serviceCredentials>
<serviceCertificate x509FindType="FindBySubjectName" findValue="ServerCert"
storeLocation="LocalMachine" storeName="My"/>
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<wsHttpBinding>
<binding name="Secured">
<security mode="Message">
<message clientCredentialType="UserName" establishSecurityContext="true" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<services>
<service name="MessageSecurity.Service" behaviorConfiguration="securedService">
<endpoint address="" binding="wsHttpBinding" bindingConfiguration="Secured"
contract="MessageSecurity.IService">
</endpoint>
</service>
</services>
</system.serviceModel>

SecurityContext 是基于 WS-SecureConversation 的互操作特性。它只需要在从服务代理实例的第一次调用中传递用户名和密码(在 WCF 中这是完全透明的 - 客户端代理实例维护安全上下文)。后续调用仅使用第一次调用期间发出的安全 token 。 SecurityContext 在 wsHttpBinding 中默认开启。

此配置还将加密和签署消息 - 它是全功能的 WS-Security。任何其他方法都取决于您。您必须自己完全实现它。

您提到您无法控制客户。这并不意味着您不能使用证书。如果您使用证书,客户有责任在他们想要调用您的服务时获取它。它与控制客户端对证书的信任无关 - 对于公共(public) Web 服务,这意味着从受信任的证书颁发机构购买证书。

此外,无需安装即可获得服务证书。第一种可能性是使用证书作为端点身份。在这种情况下,编码证书是 WSDL 的一部分:
<wsdl:service name="Service">
<wsdl:port name="WSHttpBinding_IService" binding="tns:WSHttpBinding_IService">
<soap12:address location="http://localhost:1432/Service.svc" />
<wsa10:EndpointReference>
<wsa10:Address>http://localhost:1432/Service.svc</wsa10:Address>
<Identity xmlns="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity">
<KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
<X509Data>
<X509Certificate>MIICmzCCAYegAwI....<X509Certificate>
</X509Data>
</KeyInfo>
</Identity>
</wsa10:EndpointReference>
</wsdl:port>
</wsdl:service>

如果您指定配置了服务证书的 wsHttpBinding 端点并且未设置其身份,则会自动完成此操作。这种方法的缺点是证书过期。如果您更改过期证书,则必须更新所有客户端。

第二种可能性是启用服务凭证协商:
<bindings>
<wsHttpBinding>
<binding name="Secured">
<security mode="Message">
<message clientCredentialType="UserName" negotiateServiceCredential="true"/>
</security>
</binding>
</wsHttpBinding>
</bindings>

默认情况下启用协商。它使用 TLSNego 协议(protocol)在安全通信开始之前交换服务凭证(证书)。这种方法的缺点是不是所有平台都支持TLSNego。

关于.net - 没有客户端证书的 WCF 消息/方法安全性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4807342/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com