【问题标题】:How to perform ssl user authentication如何执行 ssl 用户身份验证
【发布时间】:2020-10-30 21:56:11
【问题描述】:

自签名证书用于 WCF 应用程序中的身份验证。指定的服务器:

<security mode="Message">
    <message clientCredentialType="Certificate"/>
</security>
...
<clientCertificate>
  <authentication certificateValidationMode="PeerOrChainTrust" revocationMode="NoCheck"/>
</clientCertificate>

证书已在客户端正确启用:

<endpointBehaviors>
<behavior name="wsHttpCertificateBehavior">          
  <clientCredentials>
    <clientCertificate findValue="<Thumbprint>" storeName="My" storeLocation="LocalMachine" x509FindType="FindByThumbprint"/>    
  </clientCredentials>          
</behavior>
</endpointBehaviors>

在客户端,证书被添加到受信任的根证书中。调用服务方法时出现错误:调用用户的身份未经服务验证。我不明白您还需要指定什么进行验证。如果您删除证书并指定

<security mode= "None"/>

调用服务方法时客户端挂起。我不明白为什么。我已经为此奋斗了一周。请帮帮我!

【问题讨论】:

    标签: wcf ssl


    【解决方案1】:

    这是一个使用 X.509 自签名证书验证的演示:

    <system.serviceModel>
        <services>
          <service name="Microsoft.Samples.X509CertificateValidator.CalculatorService" behaviorConfiguration="CalculatorServiceBehavior">
            <!-- use host/baseAddresses to configure base address provided by host -->
            <host>
              <baseAddresses>
                <add baseAddress="http://localhost:8001/servicemodelsamples/service"/>
              </baseAddresses>
            </host>
            <!-- use base address specified above, provide one endpoint -->
            <endpoint address="certificate" binding="wsHttpBinding" bindingConfiguration="Binding" contract="Microsoft.Samples.X509CertificateValidator.ICalculator"/>
          </service>
        </services>
    
        <bindings>
          <wsHttpBinding>
            <!-- X509 certificate binding -->
            <binding name="Binding">
              <security mode="Message">
                <message clientCredentialType="Certificate"/>
              </security>
            </binding>
          </wsHttpBinding>
        </bindings>
    
        <behaviors>
          <serviceBehaviors>
            <behavior name="CalculatorServiceBehavior">
              <serviceDebug includeExceptionDetailInFaults="true"/>
              <serviceCredentials>
                <!-- 
                The serviceCredentials behavior allows one to specify authentication constraints on client certificates.
                -->
                <clientCertificate>
                  <!-- 
                  Setting the certificateValidationMode to Custom means that if the custom X509CertificateValidator
                  does NOT throw an exception, then the provided certificate will be trusted without performing any
                  validation beyond that performed by the custom validator. The security implications of this 
                  setting should be carefully considered before using Custom in production code. 
                  -->
                  <authentication certificateValidationMode="Custom" customCertificateValidatorType="Microsoft.Samples.X509CertificateValidator.CustomX509CertificateValidator, service"/>
                </clientCertificate>
                <!-- 
                The serviceCredentials behavior allows one to define a service certificate.
                A service certificate is used by a client to authenticate the service and provide message protection.
                This configuration references the "localhost" certificate installed during the setup instructions.
                -->
                <serviceCertificate findValue="localhost" storeLocation="LocalMachine" storeName="My" x509FindType="FindBySubjectName"/>
              </serviceCredentials>
            </behavior>
          </serviceBehaviors>
        </behaviors>
        
      </system.serviceModel>
    

    这是服务的配置文件,我们需要指定证书的位置。

    serviceHost.Credentials.ClientCertificate.Authentication.CertificateValidationMode = System.ServiceModel.Security.X509CertificateValidationMode.Custom;
                  
    serviceHost.Credentials.ClientCertificate.Authentication.CustomCertificateValidator = new CustomX509CertificateValidator();
    

    我们自定义验证自签名证书。

    public class CustomX509CertificateValidator : System.IdentityModel.Selectors.X509CertificateValidator
        {
            // This Validation function accepts any X.509 Certificate that is self-issued. As anyone can construct such
            // a certificate this custom validator is less secure than the default behavior provided by the
            // ChainTrust X509CertificateValidationMode. The security implications of this should be carefully 
            // considered before using this validation logic in production code. 
            public override void Validate(X509Certificate2 certificate)
            {
                // Check that we have been passed a certificate
                if (certificate == null)
                    throw new ArgumentNullException("certificate");
    
                // Only accept self-issued certificates
                if (certificate.Subject != certificate.Issuer)
                    throw new SecurityTokenException("Certificate is not self-issued");
            }
        }
    

    如果您需要此演示的完整示例,可以在此链接中下载:

    https://www.microsoft.com/en-us/download/details.aspx?id=21459

    【讨论】:

    • 非常感谢。但还有另一个问题。连接失败:证书没有用于消息传递的私钥,或者进程没有对私钥的访问权限。服务配置指定了提升的访问级别: 这没有效果。 This section 描述了如何解决此问题,但适用于本地计算机。如何在 Azure 上执行此操作?
    • 你可以参考这个链接,我在SO上发现了一个类似的问题:stackoverflow.com/questions/13184586/…
    • 我不太了解 Azure。我认为这个问题应该与Azure有关。您可以在 Azure 标记下发布此问题。
    • @丁鹏,第二天早上,问题就消失了……所以,很遗憾,我对此无能为力)但是谢谢你的回答,它帮助解决了另一个问题!跨度>
    • 我无法标记它,因为“感谢您的反馈!声望低于 15 人的投票会被记录,但不要更改公开显示的帖子得分。” =) 我最近才在 SO =)
    猜你喜欢
    • 1970-01-01
    • 2012-10-14
    • 2014-04-23
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-09-15
    • 2014-11-13
    相关资源
    最近更新 更多