-
Notifications
You must be signed in to change notification settings - Fork 2
/
com.microsoft.atp.json
406 lines (406 loc) · 19.8 KB
/
com.microsoft.atp.json
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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
{
"title": "Microsoft Defender ATP Settings",
"description": "Preference Domain: com.microsoft.wdav",
"__version": "1.0",
"__feedback": "josh@psu.edu",
"type": "object",
"options": {
"remove_empty_properties": true
},
"definitions": {
"policy_group": {
"type": "object",
"format": "grid",
"options": {
"collapsed": true,
"disable_properties": true
}
}
},
"properties": {
"antivirusengine": {
"title": "Antivirus Engine",
"description": "Configure different aspects of Microsoft Defender's Antivirus Engine",
"anyOf": [
{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "object",
"properties": {
"enableRealTimeProtection": {
"title": "Enable Real-Time Protection",
"propertyOrder": 10,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "boolean",
"title": "Configured"
}
],
"enum": [true, false],
"options": {
"enum_titles": ["Yes", "No"]
}
},
"passiveMode": {
"title": "Passive Mode",
"description": "Specify whether the antivirus engine runs in passive mode.",
"propertyOrder": 20,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "boolean",
"title": "Configured",
"enum": [true, false],
"options": {
"enum_titles": ["Yes", "No"]
}
}]
},
"exlusionsMergePolicy": {
"title": "Exclusion Policy",
"description": "Specify the merge policy for exclusions. This can be a combination of administrator-defined and user-defined exclusions (merge) or only administrator-defined exclusions (admin_only). This setting can be used to restrict local users from defining their own exclusions.",
"propertyOrder": 30,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "string",
"title": "Configured",
"enum": ["merge", "admin_only"],
"options": {
"enum_titles": ["Merge", "Administrators Only"]
}
}]
},
"exclusions": {
"title": "Exclusions",
"description": "Specify entities excluded from being scanned. Exclusions can be specified by full paths, extensions, or file names.",
"propertyOrder": 40,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "array",
"title": "Configured",
"items": {
"oneOf": [{
"type": "object",
"title": "Path",
"properties": {
"$type": {
"type": "string",
"title": "Type",
"enum": ["excludedPath"],
"options": {
"enum_titles": ["Excluded Path"]
}
},
"path": {
"title": "Path",
"type": "string",
"description": "Indicate if the path property refers to a file or directory."
},
"isDirectory": {
"title": "Path is a Directory",
"type": "boolean",
"enum": [true, false],
"options": {
"enum_titles": ["Yes", "No"]
}
}
},
"required": ["$type", "path", "isDirectory"]
},
{
"type": "object",
"title": "File Extension",
"properties": {
"$type": {
"type": "string",
"title": "Type",
"enum": ["excludedFileExtension"],
"options": {
"enum_titles": ["Excluded File Extension"]
}
},
"extension": {
"title": "The File Extension to exclude",
"type": "string"
}
},
"required": ["$type", "extension"]
},
{
"type": "object",
"title": "File Name",
"properties": {
"$type": {
"type": "string",
"title": "Type",
"enum": ["excludedFileName"],
"options": {
"enum_titles": ["Excluded File Name"]
}
},
"name": {
"title": "Process Excluded from the scan",
"type": "string"
}
},
"required": ["$type", "name"]
}]
}
}]
},
"allowedThreats": {
"title": "Allowed threats",
"description": "Specify threats by name that are not blocked by Microsoft Defender ATP for Mac. These threats will be allowed to run.",
"propertyOrder": 50,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "string"
}]
},
"disallowedThreatActions": {
"title": "Disallowed Threat Actions",
"description": "Restricts the actions that the local user of a device can take when threats are detected. The actions included in this list are not displayed in the user interface.",
"propertyOrder": 60,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "array",
"items": {
"type": "string",
"title": "Option",
"enum": ["allow", "restore"],
"options": {
"enum_titles": ["Allow", "Restore"]
}
},
"minItems": 1,
"maxItems": 2
}]
},
"threatTypeSettings": {
"title": "Threat type settings",
"description": "Specify how certain threat types are handled by Microsoft Defender ATP for Mac.",
"propertyOrder": 70,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"enum": ["potentially_unwanted_applications", "archive_bomb"],
"options": {
"enum_titles": ["Potentionally Unwanted Applications", "Archive Bomb"]
}
},
"value": {
"type": "string",
"enum": ["audit", "block", "off"],
"options": {
"enum_titles": ["Audit", "Block", "Off"]
}
}
},
"uniqueItems": true,
"minItems": 1,
"maxItems": 2,
"required": ["key", "value"]
}
}
]
},
"threatTypeSettingsMergePolicy": {
"title": "Threat type settings merge policy",
"description": "Specify the merge policy for threat type settings. This can be a combination of administrator-defined and user-defined settings (merge) or only administrator-defined settings (admin_only). This setting can be used to restrict local users from defining their own settings for different threat types.",
"propertyOrder": 80,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "string",
"title": "Configured",
"enum": ["merge", "admin_only"],
"options": {
"enum_titles": ["Merge", "Administrators Only"]
}
}]
}
}
}
]
},
"cloudService": {
"title": "Cloud-delivered protection preferences",
"description": "Configure the cloud-driven protection features of Microsoft Defender ATP for Mac.",
"propertyOrder": 90,
"anyOf": [
{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "object",
"properties": {
"enabled": {
"title": "Enable / Disable cloud-delivered protection",
"description": "Specify whether to enable cloud-delivered protection the device or not. To improve the security of your services, we recommend keeping this feature turned on.",
"propertyOrder": 100,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "boolean",
"title": "Configured",
"enum": [true, false],
"options": {
"enum_titles": ["Yes", "No"]
}
}]
},
"diagnosticLevel": {
"title": "Diagnostic collection level",
"description": "Diagnostic data is used to keep Microsoft Defender ATP secure and up-to-date, detect, diagnose and fix problems, and also make product improvements. This setting determines the level of diagnostics sent by Microsoft Defender ATP to Microsoft.",
"propertyOrder": 110,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "string",
"title": "Configured",
"enum": ["optional", "required"],
"options": {
"enum_titles": ["Optional", "Required"]
}
}]
},
"automaticSampleSubmission": {
"title": "Enable / Disable automatic sample submissions",
"description": "Determines whether suspicious samples (that are likely to contain threats) are sent to Microsoft. You are prompted if the submitted file is likely to contain personal information.",
"propertyOrder": 120,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "boolean",
"title": "Configured",
"enum": [true, false],
"options": {
"enum_titles": ["Yes", "No"]
}
}]
}
}
}]
},
"userInterface": {
"title": "User interface preferences",
"description": "Manage the preferences for the user interface of Microsoft Defender ATP for Mac.",
"propertyOrder": 130,
"anyOf": [
{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "object",
"properties": {
"hideStatusMenuIcon": {
"title": "Show / Hide status menu icon",
"description": "Specify whether to show or hide the status menu icon in the top-right corner of the screen.",
"propertyOrder": 140,
"anyOf": [{
"type": "null",
"title": "Not Configured"
},
{
"type": "boolean",
"title": "Configured",
"enum": [true, false],
"options": {
"enum_titles": ["Hide", "Show"]
}
}]
}
}
}]
},
"edr": {
"title": "Endpoint detection and response preferences",
"description": "Manage the preferences of the endpoint detection and response (EDR) component of Microsoft Defender ATP for Mac.",
"propertyOrder": 150,
"anyOf": [
{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "object",
"properties": {
"tags": {
"title": "Device tags",
"description": "Specify a tag name and its value.",
"propertyOrder": 160,
"anyOf": [
{
"type": "null",
"title": "Not Configured"
},
{
"title": "Configured",
"type": "array",
"items": {
"title": "Tag",
"type": "object",
"properties": {
"key": {
"type": "string",
"title": "Type of tag",
"description": "Specifies the type of tag"
},
"value": {
"type": "string",
"title": "Value of tag",
"description": "Specifies the value of tag"
}
}
}
}]
}
}
}]
}
}
}