gpt4 book ai didi

authentication - 企业代理背后的 asp.net core 3.1 azure ad SSO 身份验证

转载 作者:行者123 更新时间:2023-12-05 03:40:43 26 4
gpt4 key购买 nike

我正在尝试运行在 RHEL 7 上托管的 debian 10 容器上运行的 asp.net core 3.1 mvc 网络应用程序。该应用程序通过 Azure Ad OIDC SSO 进行身份验证。该应用程序必须通过公司代理连接到 Azure AD。我正在尝试在 asp.net core 中设置代理,以便只有身份验证流量通过代理。我的启动文件如下所示:

using AutoMapper;
using CMM_MVP.Factories;
using CMM_MVP.Models;
using CMM_MVP.Services;
using CMM_MVP.Utils;
using Microsoft.AspNetCore.Authentication.OpenIdConnect;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.DataProtection;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc.Authorization;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Identity.Web;
using Microsoft.Identity.Web.UI;
using Microsoft.IdentityModel.Logging;
using System;
using System.Data;
using System.Data.SqlClient;
using System.Net;
using System.Net.Http;

namespace CMM_MVP
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}

public IConfiguration Configuration { get; }

// This method gets called by the runtime. Use this method to add services to the container.
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
public void ConfigureServices(IServiceCollection services)
{
services.AddAutoMapper(typeof(Startup));
services.AddCors();
services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme)
.AddMicrosoftIdentityWebApp(Configuration.GetSection("AzureAd"));

IdentityModelEventSource.ShowPII = true;

services.AddControllersWithViews(options =>
{
var policy = new AuthorizationPolicyBuilder()
.RequireAuthenticatedUser()
.Build();
options.Filters.Add(new AuthorizeFilter(policy));
});

services.AddRazorPages().AddMicrosoftIdentityUI();


//allow the HTTP Context object to be passed as a service to the controllers.
services.AddHttpContextAccessor();

services.AddSingleton<ISqlServerConnectionUtil, SqlServerConnectionUtil>();
services.AddSingleton<IRepository<CustomerModel>, MockCustomersRepository>();
services.AddScoped<ICustomerService, CustomerService>();
services.AddSingleton<IUserService, UserService>();
services.AddScoped<ICaseService, CaseService>();
services.AddScoped<IViewCaseService, ViewCaseService>();
services.AddScoped(typeof(IModelFactory<>), typeof(ModelFactory<>));

services.AddDataProtection()
.SetApplicationName("xxx")
.PersistKeysToFileSystem(new System.IO.DirectoryInfo(@"/var/dpkeys/"));

}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
IdentityModelEventSource.ShowPII = true;
}
else {
app.UseHsts();
}
// Add support for sessions before using routing
//app.UseSession();
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseCors(builder =>
{
builder
.AllowAnyOrigin()
.AllowAnyMethod()
.AllowAnyHeader();
});

app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
}
}
}

我已经看到其他线程存在使用 OpenIDConnect :Authenticate with Azure AD using .Net Core 3.00 from behind Corporate Proxy但是从那时起,Microsoft 引入并推荐了 Microsoft.Identity.Web 用于我正在使用的 Azure AD OIDC 身份验证。我发现另一位同事使用了以下设置成功工作(开始后.AddMicrosoftIdentityWebApp(Configuration.GetSection("AzureAd")); ):

        var aadProxy = new WebProxy()
{
Address = new Uri("http://address:port"),
UseDefaultCredentials = true

};

IdentityModelEventSource.ShowPII = true;

services.AddHttpClient("proxiedClient")
.ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler()
{
UseProxy = true,
Proxy = aadProxy,
PreAuthenticate = true
});
services.Configure<AadIssuerValidatorOptions>(options => { options.HttpClientName = "proxiedClient"; });

他还使用了以下代码,这不适用于我,因为我没有设置 JwtTokens:

services.Configure<JwtBearerOptions>(JwtBearerDefaults.AuthenticationScheme, options =>
{
options.TokenValidationParameters.RoleClaimType = "roles";
options.BackchannelHttpHandler = new HttpClientHandler()
{
UseProxy = true,
Proxy = aadProxy,
PreAuthenticate = true,
};
});

我知道“BackchannelHttpHandler”是处理来自 Azure AD 的元数据的。我已经搜索了为我的用例设置 BackchannelHttpHandler 的方法,但找不到任何方法。

在我看来,设置 BackchannelHttpHandler 是我唯一缺少的 atm,但我不确定?

我也不知道怎么配置?

最佳答案

我已经让这个工作了几天,没有任何问题。回答我的两个问题:

  1. 在我看来,设置 BackchannelHttpHandler 是我唯一缺少的 atm,但我不确定?

回答:BackchannelHttpHandler 确实是我唯一缺少的东西。

  1. 我也不知道怎么配置?

答案:使用选项模式: https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/options?view=aspnetcore-3.1可以配置 BackchannelHttpHandler 属性:https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.authentication.openidconnect.openidconnectoptions?view=aspnetcore-3.1紧随其后:services.Configure(options => { options.HttpClientName = "proxiedClient"; });

在问题中。需要在上面一行之后添加的代码来配置 OpenIDConnect 选项中的 BackchannelHttpHandler 属性如下:

    services.Configure<OpenIdConnectOptions>(OpenIdConnectDefaults.AuthenticationScheme, 
options =>
{
options.BackchannelHttpHandler = new HttpClientHandler()
{
UseProxy = true,
Proxy = aadProxy,
PreAuthenticate = true,
};
});

就是这样。通过 Azure AD OpenID Connect 的单点登录现已成功运行。

关于authentication - 企业代理背后的 asp.net core 3.1 azure ad SSO 身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68038326/

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