-
Notifications
You must be signed in to change notification settings - Fork 7
/
PRTG-M365-AppSecrets.ps1
326 lines (271 loc) · 11.1 KB
/
PRTG-M365-AppSecrets.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
<#
.SYNOPSIS
Monitors Microsoft 365 App Secret expiration
.DESCRIPTION
Using MS Graph this Script shows the Microsoft 365 App Secret expiration
Copy this script to the PRTG probe EXEXML scripts folder (${env:ProgramFiles(x86)}\PRTG Network Monitor\Custom Sensors\EXEXML)
and create a "EXE/Script Advanced. Choose this script from the dropdown and set at least:
+ Parameters: TenantID, ApplicationID, AccessSecret
+ Scanning Interval: minimum 15 minutes
.PARAMETER TenantID
Provide the TenantID or TenantName (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx or contoso.onmicrosoft.com)
.PARAMETER ApplicationID
Provide the ApplicationID
.PARAMETER AccessSecret
Provide the Application Secret
.PARAMETER Exclude/Include
Regular expression to exclude secrets on DisplayName or AppName
.PARAMETER ProxyAddress
Provide a proxy server address if this required to make connections to M365
Example: http://proxy.example.com:3128
.PARAMETER ProxyUser
Provide a proxy authentication user if ProxyAddress is used
.PARAMETER ProxyPassword
Provide a proxy authentication password if ProxyAddress is used
Example: ^(PRTG-APP)$
Example2: ^(PRTG-.*|TestApp123)$ excludes PRTG-* and TestApp123
#https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_regular_expressions?view=powershell-7.1
.EXAMPLE
Sample call from PRTG EXE/Script Advanced
"PRTG-M365-AppSecrets.ps1" -ApplicationID 'Test-APPID' -TenantID 'contoso.onmicrosoft.com' -AccessSecret 'Test-AppSecret'
Microsoft 365 Permission:
1. Open Azure AD
2. Register new APP
3. Overview >> Get Application ID
4. Set API Permissions >> MS Graph >> Application >> Application.Read.All
5. Certificates & secrets >> new Secret
Author: Jannos-443
https://github.com/Jannos-443/PRTG-M365
#>
param(
[string] $TenantID = '',
[string] $ApplicationID = '',
[string] $AccessSecret = '',
[string] $IncludeSecretName = '',
[string] $ExcludeSecretName = '',
[string] $IncludeAppName = '',
[string] $ExcludeAppName = '',
[string] $ProxyAddress = '',
[string] $ProxyUser = '',
[string] $ProxyPassword = ''
)
# Remove ProxyAddress var if it only contains an empty string or else the Invoke-RestMethod will fail if no proxy address has been provided
if ($ProxyAddress -eq "") {
Remove-Variable ProxyAddress -ErrorAction SilentlyContinue
}
if (($ProxyAddress -ne "") -and ($ProxyUser -ne "") -and ($ProxyPassword -ne "")) {
try {
$SecProxyPassword = ConvertTo-SecureString $ProxyPassword -AsPlainText -Force
$ProxyCreds = New-Object System.Management.Automation.PSCredential ($ProxyUser, $SecProxyPassword)
}
catch {
Write-Output "<prtg>"
Write-Output " <error>1</error>"
Write-Output " <text>Error Parsing Proxy Credentials ($($_.Exception.Message))</text>"
Write-Output "</prtg>"
Exit
}
}
else {
Remove-Variable ProxyCreds -ErrorAction SilentlyContinue
}
#Catch all unhandled Errors
$ErrorActionPreference = "Stop"
trap {
$Output = "line:$($_.InvocationInfo.ScriptLineNumber.ToString()) char:$($_.InvocationInfo.OffsetInLine.ToString()) --- message: $($_.Exception.Message.ToString()) --- line: $($_.InvocationInfo.Line.ToString()) "
$Output = $Output.Replace("<", "")
$Output = $Output.Replace(">", "")
$Output = $Output.Replace("#", "")
Write-Output "<prtg>"
Write-Output "<error>1</error>"
Write-Output "<text>$Output</text>"
Write-Output "</prtg>"
Exit
}
#region set TLS to 1.2
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
#endregion
if (($TenantID -eq "") -or ($Null -eq $TenantID)) {
Throw "TenantID Variable is empty"
}
if (($ApplicationID -eq "") -or ($Null -eq $ApplicationID)) {
Throw "ApplicationID Variable is empty"
}
if (($AccessSecret -eq "") -or ($Null -eq $AccessSecret)) {
Throw "AccessSecret Variable is empty"
}
# Get MS Graph Token
try {
#Check if Token is expired
$renew = $false
if ($ConnectGraph) {
if ((get-date).AddMinutes(2) -ge $tokenexpire) {
#Write-Host "Token expired or close to expire, going to renew Token"
$renew = $true
} else {
#Write-Host "Token found and still valid"
}
} else {
$renew = $true
#Write-Host "Token not found, going to renew Token"
}
if ($renew) {
#Request Token
$Body = @{
Grant_Type = "client_credentials"
Scope = "https://graph.microsoft.com/.default"
client_Id = $ApplicationID
Client_Secret = $AccessSecret
}
$ConnectGraph = Invoke-RestMethod -Uri "https://login.microsoftonline.com/$TenantID/oauth2/v2.0/token" -Method POST -Body $Body -Proxy $ProxyAddress -ProxyCredential $ProxyCreds
$token = $ConnectGraph.access_token
$tokenexpire = (Get-Date).AddSeconds($ConnectGraph.expires_in)
#Write-Host "successfully got new MS Graph Token"
}
}
catch {
Write-Output "<prtg>"
Write-Output " <error>1</error>"
Write-Output " <text>Error getting MS Graph Token ($($_.Exception.Message))</text>"
Write-Output "</prtg>"
Exit
}
$xmlOutput = '<?xml version="1.0" encoding="UTF-8" ?>
<prtg>'
#Function Graph API Call
Function GraphCall($URL) {
#MS Graph Request
try {
$Headers = @{Authorization = "$($ConnectGraph.token_type) $($ConnectGraph.access_token)" }
$GraphUrl = $URL
$Result_Part = Invoke-RestMethod -Headers $Headers -Uri $GraphUrl -Method Get -Proxy $ProxyAddress -ProxyCredential $ProxyCreds
$Result = $Result_Part.value
while ($Result_Part.'@odata.nextLink') {
$graphURL = $Result_Part.'@odata.nextLink'
$Result_Part = Invoke-RestMethod -Headers $Headers -Uri $graphURL -Method Get -Proxy $ProxyAddress -ProxyCredential $ProxyCreds
$Result = $Result + $Result_Part.value
}
}
catch {
Write-Output "<prtg>"
Write-Output " <error>1</error>"
Write-Output " <text>Could not MS Graph $($GraphUrl). Error: $($_.Exception.Message)</text>"
Write-Output "</prtg>"
Exit
}
return $Result
}
$Result = GraphCall -URL "https://graph.microsoft.com/v1.0/applications"
$NextExpiration = 2000
$SecretList = New-Object System.Collections.ArrayList
# Added handling of app secrets that will return either a displayname or a customKeyIdentifier. If one is set the other one is null. As the customKeyIdentifier is a base64 string it will be encoded as UTF8.
foreach ($SingleResult in $Result) {
foreach ($passwordCredential in $SingleResult.passwordCredentials) {
[datetime]$ExpireTime = $passwordCredential.endDateTime
if ($passwordCredential.displayName -ne $null) {
$SecretDisplayName = $passwordCredential.displayName
} else {
$SecretDisplayName = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($passwordCredential.customKeyIdentifier))
}
$object = [PSCustomObject]@{
AppDisplayname = $SingleResult.displayName
SecretDisplayname = $SecretDisplayName
Enddatetime = $ExpireTime
DaysLeft = ($ExpireTime - (Get-Date)).days
}
$null = $SecretList.Add($object)
}
foreach ($keyCredential in $SingleResult.keyCredentials) {
[datetime]$ExpireTime = $keyCredential.endDateTime
$object = [PSCustomObject]@{
AppDisplayname = $SingleResult.displayName
SecretDisplayname = $keyCredential.displayName
Enddatetime = $ExpireTime
DaysLeft = ($ExpireTime - (Get-Date)).days
}
$null = $SecretList.Add($object)
}
}
#Also monitor SAML Signing certs
$Result2 = GraphCall -URL "https://graph.microsoft.com/v1.0/serviceprincipals"
foreach ($SingleResult in $Result2) {
if ($SingleResult.signInAudience -eq "AzureADMyOrg") {
foreach ($passwordCredential in $SingleResult.passwordCredentials) {
[datetime]$ExpireTime = $passwordCredential.endDateTime
$object = [PSCustomObject]@{
AppDisplayname = $SingleResult.displayName
SecretDisplayname = $passwordCredential.displayName
Enddatetime = $ExpireTime
DaysLeft = ($ExpireTime - (Get-Date)).days
}
$null = $SecretList.Add($object)
}
}
}
#Region Filter
#APP
if ($ExcludeAppName -ne "") {
$SecretList = $SecretList | Where-Object { $_.AppDisplayname -notmatch $ExcludeAppName }
}
if ($IncludeAppName -ne "") {
$SecretList = $SecretList | Where-Object { $_.AppDisplayname -match $IncludeAppName }
}
#SECRET
if ($ExcludeSecretName -ne "") {
$SecretList = $SecretList | Where-Object { $_.SecretDisplayname -notmatch $ExcludeSecretName }
}
if ($IncludeSecretName -ne "") {
$SecretList = $SecretList | Where-Object { $_.SecretDisplayname -match $IncludeSecretName }
}
# Ignore secrets with the value "CWAP_AuthSecret". This is created by default with Azure AD app proxy and working as designed. It rotates keys and needs the last 3 passwords even if expired. https://learn.microsoft.com/en-us/entra/identity/app-proxy/application-proxy-faq
$SecretList = $SecretList | Where-Object {$_.SecretDisplayname -ne "CWAP_AuthSecret"}
# Ignore secrets with empty value ""
$SecretList = $SecretList | Where-Object {$_.SecretDisplayname -ne $null}
#End Region Filter
$ListCount = ($SecretList | Measure-Object).Count
if ($ListCount -eq 0) {
Write-Output "<prtg>"
Write-Output " <error>1</error>"
Write-Output " <text>No Secrets or Certs found! Check Permissions</text>"
Write-Output "</prtg>"
Exit
}
$SecretList = $SecretList | Sort-Object Enddatetime
$Top5 = $SecretList | Select-Object -First 5
$OutputText = "Next to expire: "
foreach ($Top in $Top5) {
$OutputText += "App: `'$($Top.AppDisplayname)`' Secret: `'$($Top.SecretDisplayname)`' expires in $($Top.DaysLeft)d | "
}
#Next Expiration
$NextExpiration = ($SecretList | Select-Object -First 1).DaysLeft
$xmlOutput += "<result>
<channel>Next Cert Expiration</channel>
<value>$($NextExpiration)</value>
<unit>Custom</unit>
<CustomUnit>Days</CustomUnit>
<LimitMode>1</LimitMode>
<LimitMinWarning>30</LimitMinWarning>
<LimitMinError>10</LimitMinError>
</result>"
$Less90Days = ($SecretList | Where-Object { $_.DaysLeft -le 90 } | Measure-Object).count
$Less180Days = ($SecretList | Where-Object { $_.DaysLeft -le 180 } | Measure-Object).count
$xmlOutput += "<result>
<channel>less than 90 days left</channel>
<value>$($Less90Days)</value>
<unit>Count</unit>
</result>
<result>
<channel>less than 180 days left</channel>
<value>$($Less180Days)</value>
<unit>Count</unit>
</result>"
$OutputText = $OutputText.Replace("<", "")
$OutputText = $OutputText.Replace(">", "")
$OutputText = $OutputText.Replace("#", "")
$OutputText = $OutputText.Replace("`"", "")
if ($OutputText.Length -gt 1900) {
$OutputText = $OutputText.Substring(0, 1900)
}
$xmlOutput += "<text>$($OutputText)</text>"
$xmlOutput += "</prtg>"
Write-Output $xmlOutput