7

是否可以(如果可以,如何?)配置一个自托管的 o​​win 端点以使用带有 A/D 的客户端证书映射身份验证?IIS 有这个功能链接,但到目前为止我还没有找到自托管端点的等价物。

虽然我得到这个工作的方式(记住这种方法可能不是 100% 万无一失的),是通过结合使用 authenticationSchemeSelectorDelegate 和 OWIN 的两步过程。

这将选择适当的 AuthenticationScheme(允许包含证书的请求通过,否则推迟到 NTLM 身份验证)

public void Configuration(IAppBuilder appBuilder)
{
    var listener = (HttpListener)appBuilder.Properties[typeof(HttpListener).FullName];
    listener.AuthenticationSchemeSelectorDelegate += AuthenticationSchemeSelectorDelegate;
}

private AuthenticationSchemes AuthenticationSchemeSelectorDelegate(HttpListenerRequest httpRequest)
{
    if (!httpRequest.IsSecureConnection) return AuthenticationSchemes.Ntlm;
    var clientCert = httpRequest.GetClientCertificate();
    if (clientCert == null) return AuthenticationSchemes.Ntlm;
    else return AuthenticationSchemes.Anonymous;
}

这将读取证书的内容并相应地填充“server.User”环境变量

public class CertificateAuthenticator
{
    readonly Func<IDictionary<string, object>, Task> _appFunc;

    public CertificateAuthenticator(Func<IDictionary<string, object>, Task> appFunc)
    {
        _appFunc = appFunc;
    }

    public Task Invoke(IDictionary<string, object> environment)
    {
        // Are we authenticated already (NTLM)
        var user = environment["server.User"] as IPrincipal;
        if (user != null && user.Identity.IsAuthenticated) return _appFunc.Invoke(environment);

        var context = environment["System.Net.HttpListenerContext"] as HttpListenerContext;
        if (context == null) return _appFunc.Invoke(environment);

        var clientCertificate = context.Request.GetClientCertificate();

        // Parse out username from certificate

        var identity = new GenericPrincipal
        (
            new GenericIdentity(username), new string[0]
        );

        environment["server.User"] = identity;
    }
}

没有更好/标准化的方式吗?

4

1 回答 1

3

我还没有看到为此构建的任何标准组件。也就是说,应该可以稍微清理一下您的代码:

  • 您无需向下转换为 HttpListenerContext 即可获得客户端证书。客户端证书应该已经在“ssl.ClientCertificate”下的 OWIN 环境中可用。请参阅https://katanaproject.codeplex.com/wikipage?title=OWIN%20Keys。您还需要检查 ssl.ClientCertificateErrors 因为证书可能未通过所有验证检查。
  • 您不需要 AuthenticationSchemeSelectorDelegate 代码。您可以设置 listner.AuthenticationSchemes = NTLM | 匿名的。然后在您的证书中间件之后添加一个中间件,如果 server.User 无效,则返回 401。
于 2013-12-06T18:13:34.283 回答