惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
人人都是产品经理
人人都是产品经理
月光博客
月光博客
V
V2EX
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
宝玉的分享
宝玉的分享
雷峰网
雷峰网
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
博客园 - 聂微东
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志

Duende Software Official Site

The Backend for Frontend Pattern Is Now Official IETF Guidance: RFC 10017 Published WhatsApp One-Time Password (OTP) Login with Duende IdentityServer and User Management Planning a Successful Migration from IdentityServer3 to Duende IdentityServer Client Secrets, Mutual TLS and Private Key JWT, Oh My! How To Spell "Duende" Understanding .NET 11 Automatic CSRF Protection: A Guide for Identity Developers Security Lingo Explained: TOTP (Time-based One-Time Password) Custom Passkey Attestation Policies: Restricting Login to Hardware Keys OAuth Identity Chaining, Transaction Tokens, and Human-in-the-Loop: Summer 2026 Identity Standards Recap What is Identity? - The Question Every Team Should Answer Before Writing Code Security Is a Spectrum: How to Choose Session Lifetimes in Duende IdentityServer Passkeys and WebAuthn with Duende IdentityServer and User Management Authenticating Players in Godot 4 with OAuth 2.0 and OpenID Connect Hardening OAuth in the newest 2026-07-28 MCP Release Candidate Unify Your SAML and OIDC Signing Keys with Automatic Rotation and Duende IdentityServer Duende Software Duende Software Duende Software Duende Software Duende Software Duende Software Duende Software Duende Software Stop AI Bots from Wasting Your Server How Duende IdentityServer Filters Claims (And Why It Matters) Core vs Extended Protocols in Duende IdentityServer v8: What You Get and When You Need More Your IdentityServer v8 Upgrade Checklist: A Quick Pre-Flight Guide Setting Up SAML Single Sign-On in ASP.NET with Duende IdentityServer Your Identity, Your Terms: Duende's Modular Identity Infrastructure and v8.x Release Duende Spring Launch '26: Identity Infrastructure That Expands With You
Announcing the Duende IdentityServer4 Migration Analysis ...
Khalid Abuhakmeh, Maarten Balliauw · 2026-02-02 · via Duende Software Official Site

As we enter 2026, many developers are considering the opportunities ahead, from implementing new business features to fixing long-standing bugs and paying down years of technical debt. With some of our customer calls this year, we’ve found that a “popular” item on everyone’s New Year’s resolutions list is upgrading to the latest .NET 10 LTS release, alongside finally moving to the most secure and supported version of Duende IdentityServer to date.

At Duende, we want to fuel your ambitions and help you meet your goals. We’ve spent thousands of hours talking to IdentityServer4 users and have built a tool that should help teams understand the upgrade process ahead of them. If you're concerned about running an unsupported identity solution at the heart of your organization and want to upgrade, we have a solution we think you should consider. In this post, we’d like to introduce you to our IdentityServer4 Migration Analysis Tool, developed by our Customer Success team lead, Maarten Balliauw.

IdentityServer4 Questions

Many organizations running IdentityServer4 find themselves in a precarious situation. In fact, some companies are unaware of what they have deployed in production. During our customer upgrade assessment calls, we ask common questions to help teams build an upgrade roadmap, including:

  • What version of .NET are you currently targeting?
  • What version of IdentityServer4 do you have?
  • How many client IDs does your identity provider have configured?
  • Are you familiar with Data Protection?
  • What authentication schemes does your organization rely on?

Many customers need time to think and gather the necessary information for our IdentityServer4 assessment calls, but these calls can be time and resource-intensive.

Because of this, we wanted to start the year by empowering teams with information to better understand their current situation and plan for the future.

Migration Analysis Tool

When building the Migration Analysis tool, we wanted to cast a wide net of help. We chose to implement a self-contained ASP.NET MVC controller that any team could add to their existing IdentityServer4 implementation.

The MigrationAnalysisController will attempt to access elements of your IdentityServer4 installation, including the current .NET version, IdentityServer4 version, number of clients, signing credentials, data protection settings, and authentication schemes.

Let’s walk through the installation process and then review a sample output page.

Installing the Migration Analysis Tool

You’ll first need to download the MigrationAnalysisController.cs file and add it to your current IdentityServer4 host. This tool’s code is purposely rudimentary, and some .NET developers might call it “unelegant”. That’s the point!

Our goal is to support all IdentityServer4 installations down to .NET 3.1; the value of the controller lies in the analysis, which involves inspecting your current configuration.

An important note: to maximize the tool’s value, you will need to deploy the change to your production environment. Unless you can recreate your production environment locally, your production environment will provide the most accurate information possible.

After installing the file, look for the first lines in the controller’s Index method.

Csharp

// Verify user is allowed to access this page
if (User.Identity == null || User.Identity.Name != "scott")
{
    return Unauthorized();
}

Update the code to use the current ClaimsPrincipal and determine which team members can access the Migration Analysis page.

For example, check the role claim for an admin value.

Csharp

if (!User.HasClaim(ClaimTypes.Role, "admin"))
{
    return Unauthorized();
}

The authorization checks should be the only changes you need to make to the controller code.

Next, verify that you’ve registered the MVC default route in the Startup.cs file. It should be there; if not, add the following lines.

Csharp

app.UseEndpoints(endpoints => endpoints.MapDefaultControllerRoute());

You may also manually route the new controller to any path you choose, but the default route is the easiest solution.

That’s it! You’re ready to use the Migration Analysis tool.

Viewing the Migration Analysis Output

Once installed and deployed, navigate to the /MigrationAnalysis path in your IdentityServer4 installation.

IdentityServer4 Migration Analysis Tool

You’ll see a list of data, along with any recommendations and links to documentation to help you better understand the challenge of each point. Now you can use this information to better inform your team, have more productive calls with Duende customer success engineers, and upgrade to the latest version of Duende IdentityServer.

Conclusion

We understand that upgrading critical identity infrastructure can be daunting, if not outright scary. The Duende team wants to make your upgrade experience as painless and successful as possible. By using the IdentityServer4 Migration Analysis Tool, we know you can achieve your goals. Additionally, if you are unsure about the next steps, our IdentityServer4 Migration Analysis Tool allows you to schedule a call with our Customer Success team to discuss any concerns, including detailed troubleshooting and technical questions.

As the days tick away in 2026, don’t let the perfect time to upgrade pass you by. Let us help you upgrade your IdentityServer4 to Duende IdentityServer and the latest .NET 10 LTS.