Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damienbod/aspnetcore-standup-authn-authz
https://www.youtube.com/watch?v=eQ7eLOA69T0
https://github.com/damienbod/aspnetcore-standup-authn-authz
aspnetcore blazor dotnetcore microsoft-identity oauth openid-connect
Last synced: 3 months ago
JSON representation
https://www.youtube.com/watch?v=eQ7eLOA69T0
- Host: GitHub
- URL: https://github.com/damienbod/aspnetcore-standup-authn-authz
- Owner: damienbod
- License: mit
- Created: 2022-06-19T12:37:21.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T10:14:31.000Z (10 months ago)
- Last Synced: 2024-10-06T09:44:01.179Z (4 months ago)
- Topics: aspnetcore, blazor, dotnetcore, microsoft-identity, oauth, openid-connect
- Homepage:
- Size: 3.57 MB
- Stars: 88
- Watchers: 8
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Overview of different App security topics
- Application authentication OIDC, OAuth2, logout, flows
- Application authorization claims, roles, groups, policies
- Self sovereign identity, verifiable credentials, wallets, distributed authentication
- FIDO2, MFA, 2FA, Authenticators, not SMS
- DevOps security
- OWASP themes, session hardening
- Identity management in applications, Key management, certificatesPart 2 see: https://github.com/damienbod/aspnetcore-standup-securing-apis
# Authentication Flows
- [OpenID Connect Code flow + PKCE with client secret confidential client](https://github.com/damienbod/aspnetcore-standup-authn-authz/blob/main/images/OIDC%20Code%20flow.md)
- [OpenID Connect Hybrid flow](https://github.com/damienbod/aspnetcore-standup-authn-authz/blob/main/images/OIDC%20Hybrid%20flow.md)
- [OpenID Connect Code flow + PKCE with no secret](https://github.com/damienbod/aspnetcore-standup-authn-authz/blob/main/images/PKCE.md)
- [OAuth Device Flow](https://github.com/damienbod/aspnetcore-standup-authn-authz/blob/main/images/device%20flow.md)
- [On Behalf Of (OBO) Flow](https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow#protocol-diagram)
- [OAuth2 Resource Owner Credentials Flow](https://github.com/damienbod/aspnetcore-standup-authn-authz/blob/main/images/Resource%20Owner%20Credentials%20Flow.md)
- [Azure Managed Identities](https://github.com/damienbod/aspnetcore-standup-authn-authz/blob/main/images/managed-identities.md)
- [Certificate authentication](https://docs.microsoft.com/en-us/aspnet/core/security/authentication/certauth)# SPAs
[flows](https://github.com/damienbod/aspnetcore-standup-authn-authz/blob/main/images/spa%20flows.md)
# Protecting APIs
- JWT Bearer Tokens
- [Introspection](https://github.com/damienbod/aspnetcore-standup-authn-authz/blob/main/images/api_introspection.md)
- Cookies
- User access tokens versus application access tokens# Mulitple IDPs with UI client
Authentication with multiple identity providers in ASP.NET Core
https://github.com/damienbod/MulitipleClientClaimsMapping
# Examples identity provider clients:
## OIDC clients
OpenIddict with Razor Pages, Blazor WASM BFF and Angular OpenID Connect Code Flow with PKCE clients and ASP.NET Core APIs
https://github.com/damienbod/AspNetCoreOpeniddict
Differrent ASP.NET Core applications using OpenID Connect Hybrid flow Code Flow, Code Flow with PKCE, JWT APIs, Device Code flow. Force ASP.NET Core OpenID Connect client to require MFA. Send MFA signin requirement to OpenID Connect server using ASP.NET Core Identity and IdentityServer4. Requiring MFA for Admin Pages in an ASP.NET Core Identity application. Require user password verification with ASP.NET Core Identity to access Razor Page
https://github.com/damienbod/AspNetCoreHybridFlowWithApi
Auth0 with Angular and an ASP.NET Core API
https://github.com/damienbod/Auth0AngularAspNetCoreApi
Securing Blazor Web assembly using Cookies and Auth0, securing multiple Auth0 APIs in ASP.NET Core using OAuth Bearer tokens, securing OAuth Bearer tokens from multiple Identity Providers in an ASP.NET Core API
https://github.com/damienbod/SeparatingApisPerSecurityLevel
Securing an ASP.NET Core API which uses multiple access tokens, securing a Web API using multiple token servers
https://github.com/damienbod/ApiJwtWithTwoSts
## Azure AD, Azure AD B2C clients, Continuous Access
Azure samples: ASP.NET Core Web App which lets sign-in users (including in your org, many orgs, orgs + personal accounts, sovereign clouds) and call Web APIs (including Microsoft Graph)
https://github.com/Azure-Samples/active-directory-aspnetcore-webapp-openidconnect-v2/
Azure AD flows using ASP.NET Core and Microsoft.Identity for user, application aunthentication, authorization.
https://github.com/damienbod/AzureADAuthRazorUiServiceApiCertificate
Examples of implementing UIs, APIs using Azure AD as the token server with Angular, ASP.NET Core clients
https://github.com/damienbod/AzureAD-Auth-MyUI-with-MyAPI
Azure AD Continuous Access in an ASP.NET Core Razor Page app using a Web API, Azure AD Continuous Access (CA) step up with ASP.NET Core Blazor using a Web API, Azure AD Continuous Access (CA) standalone with Blazor ASP.NET Core, Force MFA in Blazor using Azure AD and Continuous Access
https://github.com/damienbod/AspNetCoreAzureADCAE
Securing ASP.NET Core Razor, Web APIs with Azure B2C external and Azure AD internal identities. Using Azure security groups in ASP.NET Core with an Azure B2C Identity Provider. Create Azure B2C users with Microsoft Graph and ASP.NET Core. Transforming identity claims in ASP.NET Core and Cache. Onboarding new users in an ASP.NET Core application using Azure B2C. Using multiple Azure B2C user flows from ASP.NET Core
https://github.com/damienbod/azureb2c-fed-azuread
PWA with Blazor Backend for frontend (BFF) and Azure B2C
https://github.com/damienbod/PwaBlazorBffAzureB2C
Add extra claims to an Azure B2C user flow using API connectors and ASP.NET Core. Implement certificate authentication in ASP.NET Core for an Azure B2C API connector
https://github.com/damienbod/AspNetCoreB2cExtraClaims
# Links:
Different links for security which can be used with ASP.NET Core.
## Docs
https://docs.microsoft.com/en-us/aspnet/core/security/
https://openid.net/connect/
https://oauth.net/2/
## GRPC
https://docs.microsoft.com/en-us/aspnet/core/grpc/authn-and-authz
## Microsoft Graph
https://docs.microsoft.com/en-us/graph/overview?view=graph-rest-1.0
https://github.com/damienbod/AspNetCoreBlazorMicrosoftGraph
https://github.com/damienbod/TeamsAdminUI
## YARP reverse proxy
https://github.com/microsoft/reverse-proxy
## Data Encryption, Certificates, Identity
https://github.com/damienbod/SendingEncryptedData
https://github.com/damienbod/AspNetCoreCertificates
## FIDO2
https://github.com/passwordless-lib/fido2-net-lib
https://github.com/damienbod/AspNetCoreIdentityFido2Mfa
## Microsoft.Identity.Web
https://github.com/AzureAD/microsoft-identity-web
## OpenIddict
https://github.com/openiddict/openiddict-core
## Keycloak
https://www.keycloak.org/
https://github.com/tuxiem/AspNetCore-keycloak
## DuendeSoftware
https://github.com/DuendeSoftware
## Auth0
https://auth0.com
## Backend for frontend (BFF)
https://github.com/damienbod/Blazor.BFF.OpenIDConnect.Template
https://github.com/damienbod/Blazor.BFF.AzureAD.Template
https://github.com/damienbod/Blazor.BFF.AzureB2C.Template
https://github.com/DuendeSoftware/BFF
https://github.com/damienbod/bff-aspnetcore-angular
https://github.com/damienbod/bff-auth0-aspnetcore-angular
https://github.com/damienbod/bff-openiddict-aspnetcore-angular
https://github.com/damienbod/bff-azureadb2c-aspnetcore-angular
https://github.com/isolutionsag/aspnet-react-bff-proxy-example
https://github.com/damienbod/bff-aspnetcore-vuejs
## Session protection
https://github.com/andrewlock/NetEscapades.AspNetCore.SecurityHeaders
## Self soverign identity (SSI), Azure VC
https://docs.microsoft.com/en-us/azure/active-directory/verifiable-credentials/verifiable-credentials-configure-tenant
https://github.com/Azure-Samples/active-directory-verifiable-credentials-dotnet
https://github.com/swiss-ssi-group
## Azure Functions security
https://github.com/damienbod/AzureFunctionsSecurity
## OAUTH RFCs and draft standards
[OAuth 2.0 for Browser-Based Apps draft](https://datatracker.ietf.org/doc/draft-ietf-oauth-browser-based-apps/)
[OAuth 2.0 Security Best Current Practice draft](https://datatracker.ietf.org/doc/html/draft-ietf-oauth-security-topics)[Cross-Device Flows: Security Best Current Practice draft](https://datatracker.ietf.org/doc/draft-ietf-oauth-cross-device-security/)
[OAuth 2.0 Demonstrating Proof of Possession (DPoP) RFC 9449](https://datatracker.ietf.org/doc/html/rfc9449)
[OAuth 2.0 Step Up Authentication Challenge Protocol RFC 9470](https://datatracker.ietf.org/doc/rfc9470/)
[OAuth 2.0 Token Exchange RFC 8693](https://datatracker.ietf.org/doc/html/rfc8693)
[OAuth 2.0 Pushed Authorization Requests RFC 9126](https://datatracker.ietf.org/doc/html/rfc9126)
[The OAuth 2.0 Authorization Framework: JWT-Secured Authorization Request (JAR) RFC 9101](https://datatracker.ietf.org/doc/rfc9101/)
[OAuth 2.0 Rich Authorization Requests RFC 9396](https://datatracker.ietf.org/doc/html/rfc9396)