Last active
October 18, 2024 15:55
-
-
Save kfosaaen/9c24310d96b67429d590def4eed5b25c to your computer and use it in GitHub Desktop.
MatchPFXCertToAppRegistration.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
This is some simple PowerShell that uses the authenticated Az PowerShell functions to query Entra ID for Service Principal certificates to match them to a thumbprint. | |
Delete the "-Password $mypwd" if the PFX file doesn't have a password on it. | |
This is convenient for when you have access to a PFX file, but don't know which App Registration uses it. | |
#> | |
# Change "$PWD\testCertificate.pfx" to point to your PFX file | |
$pfxThumb = ((Get-PfxData "$PWD\testCertificate.pfx" -Password $mypwd).EndEntityCertificates).Thumbprint | |
# Iterate through each application, find their certificates, and compare the thumbprint to yours | |
Get-AzADApplication | ForEach-Object{ | |
$appTempId = $_.AppId | |
$appTempName = $_.DisplayName | |
$_ | Get-AzADAppCredential | where CustomKeyIdentifier | ForEach-Object{ if([System.Convert]::ToBase64String($_.CustomKeyIdentifier) -EQ $pfxThumb){ $appTempId; $appTempName}} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment