We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32013cf + 2f5c041 commit bc90d78Copy full SHA for bc90d78
Modules/CIPPCore/Public/Entrypoints/Invoke-PublicPhishingCheck.ps1
@@ -13,8 +13,10 @@ Function Invoke-PublicPhishingCheck {
13
$validList = @(
14
'https://login.microsoftonline.com',
15
'https://login.microsoft.net',
16
- 'https://login.microsoft.com'
17
- 'https://autologon.microsoftazuread-sso.com'
+ 'https://login.microsoft.com',
+ 'https://autologon.microsoftazuread-sso.com',
18
+ 'https://tasks.office.com',
19
+ 'https://login.windows.net'
20
)
21
22
$matchedUrls = $validList | Where-Object { ([uri]$_).Host -in ([uri]$($request.headers.Referer)).Host }
0 commit comments