forked from 12Knocksinna/Office365itpros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetServiceAlertsGraph.ps1
134 lines (119 loc) · 4.37 KB
/
GetServiceAlertsGraph.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
# GetServiceAlertsGraph.ps1
# https://github.com/12Knocksinna/Office365itpros/blob/master/GetServiceAlertsGraph.ps1
# Define the values applicable for the application used to connect to the Graph
$AppId = "d716b32c-0edb-48be-9385-30a9cfd96155"
$TenantId = "b662313f-14fc-43a2-9a7a-d2e27f4f3478"
$AppSecret = 's_rkvIn1oZ1cNceUBvJ2or1lrrIsb*:='
# Construct URI and body needed for authentication
$uri = "https://login.microsoftonline.com/$tenantId/oauth2/v2.0/token"
$body = @{
client_id = $AppId
scope = "https://graph.microsoft.com/.default"
client_secret = $AppSecret
grant_type = "client_credentials"
}
# Get OAuth 2.0 Token
$tokenRequest = Invoke-WebRequest -Method Post -Uri $uri -ContentType "application/x-www-form-urlencoded" -Body $body -UseBasicParsing
# Unpack Access Token
$token = ($tokenRequest.Content | ConvertFrom-Json).access_token
# Base URL
$uri = "https://graph.microsoft.com/beta/Security/Alerts"
$headers = @{Authorization = "Bearer $token"}
$ctype = "application/json"
$Alerts = (Invoke-RestMethod -Uri $Uri -Headers $Headers -Method Get -ContentType "application/json").Value
$Report = [System.Collections.Generic.List[Object]]::new()
[String]$User
ForEach ($Alert in $Alerts) {
$ExtraInfo = $Null
Switch ($Alert.Title) {
"Email messages containing phish URLs removed after delivery" {
$User = $Alert.UserStates.UserPrincipalName[1] }
"User restricted from sending email" {
$User = $Alert.UserStates.UserPrincipalName }
"Data Governance Activity Policy" {
$User = "N/A" }
"Admin Submission Result Completed" {
$User = $Alert.UserStates.UserPrincipalName[0]
$ExtraInfo = "Email from " + $Alert.UserStates.UserPrincipalName[1] + " reported for " + $Alert.UserStates.UserPrincipalName[2] }
"Default" {
$User = $Alert.UserStates.UserPrincipalName }
} # End Switch
If ([string]::IsNullOrEmpty($Alert.Description)) { $AlertDescription = "Office 365 alert" }
Else { $AlertDescription = $Alert.Description }
# Unpack comments
[String]$AlertComments = $Null; $i = 0
ForEach ($Comment in $Alert.Comments) {
If ($i -eq 0) {
$AlertComments = $Comment; $i++ }
Else { $AlertComments = $AlertComments + "; " + $Comment }
}
Switch ($Alert.Status) {
"newAlert" { $Color = "ff0000" }
"inProgress" { $Color = "ffff00" }
"Default" { $Color = "00cc00" }
}
$ReportLine = [PSCustomObject][Ordered]@{
Title = $Alert.Title
Category = $Alert.Category
User = $User
Description = $AlertDescription
Date = Get-Date($Alert.EventDateTime) -format g
Status = $Alert.Status
Severity = $Alert.Severity
ViewAlert = $Alert.SourceMaterials[0]
Comments = $AlertComments
ExtraInfo = $ExtraInfo
Color = $Color }
$Report.Add($ReportLine)
} # End ForEach
$URI = "https://outlook.office.com/webhook/0b9313ca-5b39-43a9-bde3-e0cd4e6ca4e0@b662313f-14fc-43a2-9a7a-d2e27f4f3478/IncomingWebhook/dd85ea98300a4fc3ba28eb7724a224ad/eff4cd58-1bb8-4899-94de-795f656b4a18"
Write-Host "Posting about new alerts..."
ForEach ($Item in $Report) {
If ($Item.Status -ne "resolved" ) {
# Convert MessageText to JSON beforehand, if not the payload will fail.
$MessageText = ConvertTo-Json $Item.Description
# Generate payload(s)
$Payload = @"
{
"@context": "https://schema.org/extensions",
"@type": "MessageCard",
"potentialAction": [
{
"@type": "OpenUri",
"name": "More info",
"targets": [
{
"os": "default",
"uri": "$($Item.ViewAlert)"
}
]
},
],
"sections": [
{
"facts": [
{
"name": "Status:",
"value": "$($Item.Status)"
},
{
"name": "User:",
"value": "$($Item.User)"
},
{
"name": "Date:",
"value": "$($Item.Date)"
}
],
"text": $($MessageText)
}
],
"summary": "$($Item.Description)",
"themeColor": "$($Item.Color)",
"title": "$($Item.Title)"
}
"@
# Post to Teams via webhook
$Status = (Invoke-RestMethod -uri $URI -Method Post -body $Payload -ContentType 'application/json; charset=utf-8')
}
}