Identity applications with Implicit flows enabled

Sergey S 41 Reputation points
2020-08-11T09:52:40.85+00:00

I'm looking to clean up my Azure AD environment from outdated/unsecure apps which is still using OAuth2 Implicit flow, is there any built-in capabilities or "community" scripts to identify these apps?

Azure App Configuration
Azure App Configuration
An Azure service that provides hosted, universal storage for Azure app configurations.
207 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,462 questions
0 comments No comments
{count} votes

Accepted answer
  1. AmanpreetSingh-MSFT 56,306 Reputation points
    2020-08-11T10:55:02.123+00:00

    Hello @Sergey S

    You can use below PowerShell cmd to identify the apps which are using OAuth2 Implicit flow:

    Pre-requisites:

    Run Connect-AzureAD and sign-in with Global Administrator or Application Administrator account.

    Get-AzureADApplication | Where-Object {$_.Oauth2AllowImplicitFlow -eq "True"}

    -----------------------------------------------------------------------------------------------------------

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


0 additional answers

Sort by: Most helpful