From 0b032621dc344b8907cb5ee68f84b12dd9588d67 Mon Sep 17 00:00:00 2001 From: Alexander De Battista Kvamme Date: Thu, 21 Aug 2025 11:29:18 +0200 Subject: [PATCH 1/2] Added https://sts.windows.net/ as microsoft entra saml provider --- githound.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/githound.ps1 b/githound.ps1 index 7ba1ad6..c1e63f3 100644 --- a/githound.ps1 +++ b/githound.ps1 @@ -1386,7 +1386,7 @@ query SAML($login: String!, $count: Int = 100, $after: String = null) { } } } - 'https://login.microsoftonline.com/*' { + {$_ -like 'https://login.microsoftonline.com/*' -or $_ -like 'https://sts.windows.net/*'} { # This is to catch the Entra SSO cases, I just currently don't have an example of the issuer string foreach($identity in $result.data.organization.samlIdentityProvider.externalIdentities.nodes) { From 315c3c136d1631d6dfbef3fff3472d6ab5ee045f Mon Sep 17 00:00:00 2001 From: Alexander De Battista Kvamme Date: Thu, 21 Aug 2025 11:33:33 +0200 Subject: [PATCH 2/2] Remove comment --- githound.ps1 | 1 - 1 file changed, 1 deletion(-) diff --git a/githound.ps1 b/githound.ps1 index c1e63f3..bcd56d0 100644 --- a/githound.ps1 +++ b/githound.ps1 @@ -1387,7 +1387,6 @@ query SAML($login: String!, $count: Int = 100, $after: String = null) { } } {$_ -like 'https://login.microsoftonline.com/*' -or $_ -like 'https://sts.windows.net/*'} { - # This is to catch the Entra SSO cases, I just currently don't have an example of the issuer string foreach($identity in $result.data.organization.samlIdentityProvider.externalIdentities.nodes) { foreach($attribute in $identity.samlIdentity.attributes)