-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
Copy pathstandards.json
2539 lines (2539 loc) · 94 KB
/
standards.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
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "standards.MailContacts",
"cat": "Global Standards",
"tag": ["lowimpact"],
"helpText": "Defines the email address to receive general updates and information related to M365 subscriptions. Leave a contact field blank if you do not want to update the contact information.",
"docsDescription": "",
"addedComponent": [
{
"type": "input",
"name": "standards.MailContacts.GeneralContact",
"label": "General Contact"
},
{
"type": "input",
"name": "standards.MailContacts.SecurityContact",
"label": "Security Contact"
},
{
"type": "input",
"name": "standards.MailContacts.MarketingContact",
"label": "Marketing Contact"
},
{
"type": "input",
"name": "standards.MailContacts.TechContact",
"label": "Technical Contact"
}
],
"label": "Set contact e-mails",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-MsolCompanyContactInformation",
"recommendedBy": []
},
{
"name": "standards.AuditLog",
"cat": "Global Standards",
"tag": ["lowimpact", "CIS", "mip_search_auditlog"],
"helpText": "Enables the Unified Audit Log for tracking and auditing activities. Also runs Enable-OrganizationCustomization if necessary.",
"addedComponent": [],
"label": "Enable the Unified Audit Log",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Enable-OrganizationCustomization",
"recommendedBy": ["CIS"]
},
{
"name": "standards.PhishProtection",
"cat": "Global Standards",
"tag": ["lowimpact"],
"helpText": "Adds branding to the logon page that only appears if the url is not login.microsoftonline.com. This potentially prevents AITM attacks via EvilNginx. This will also automatically generate alerts if a clone of your login page has been found when set to Remediate.",
"addedComponent": [],
"label": "Enable Phishing Protection system via branding CSS",
"impact": "Low Impact",
"impactColour": "info",
"disabledFeatures": {
"report": true,
"warn": true,
"remediate": false
},
"powershellEquivalent": "Portal only",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.Branding",
"cat": "Global Standards",
"tag": ["lowimpact"],
"helpText": "Sets the branding for the tenant. This includes the login page, and the Office 365 portal.",
"addedComponent": [
{
"type": "input",
"name": "standards.Branding.signInPageText",
"label": "Sign-in page text"
},
{
"type": "input",
"name": "standards.Branding.usernameHintText",
"label": "Username hint Text"
},
{
"type": "boolean",
"name": "standards.Branding.hideAccountResetCredentials",
"label": "Hide self-service password reset"
},
{
"type": "Select",
"label": "Visual Template",
"name": "standards.Branding.layoutTemplateType",
"values": [
{
"label": "Full-screen background",
"value": "default"
},
{
"label": "Partial-screen background",
"value": "verticalSplit"
}
]
},
{
"type": "boolean",
"name": "standards.Branding.isHeaderShown",
"label": "Show header"
},
{
"type": "boolean",
"name": "standards.Branding.isFooterShown",
"label": "Show footer"
}
],
"label": "Set branding for the tenant",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Portal only",
"recommendedBy": []
},
{
"name": "standards.EnableCustomerLockbox",
"cat": "Global Standards",
"tag": ["lowimpact", "CIS", "CustomerLockBoxEnabled"],
"helpText": "Enables Customer Lockbox that offers an approval process for Microsoft support to access organization data",
"docsDescription": "Customer Lockbox ensures that Microsoft can't access your content to do service operations without your explicit approval. Customer Lockbox ensures only authorized requests allow access to your organizations data.",
"addedComponent": [],
"label": "Enable Customer Lockbox",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-OrganizationConfig -CustomerLockBoxEnabled $true",
"recommendedBy": ["CIS"]
},
{
"name": "standards.EnablePronouns",
"cat": "Global Standards",
"tag": ["lowimpact"],
"helpText": "Enables the Pronouns feature for the tenant. This allows users to set their pronouns in their profile.",
"addedComponent": [],
"label": "Enable Pronouns",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaAdminPeoplePronoun -IsEnabledInOrganization:$true",
"recommendedBy": []
},
{
"name": "standards.AnonReportDisable",
"cat": "Global Standards",
"tag": ["lowimpact"],
"helpText": "Shows usernames instead of pseudo anonymised names in reports. This standard is required for reporting to work correctly.",
"docsDescription": "Microsoft announced some APIs and reports no longer return names, to comply with compliance and legal requirements in specific countries. This proves an issue for a lot of MSPs because those reports are often helpful for engineers. This standard applies a setting that shows usernames in those API calls / reports.",
"addedComponent": [],
"label": "Enable Usernames instead of pseudo anonymised names in reports",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaAdminReportSetting -BodyParameter @{displayConcealedNames = $true}",
"recommendedBy": []
},
{
"name": "standards.DisableGuestDirectory",
"cat": "Global Standards",
"tag": ["lowimpact"],
"helpText": "Disables Guest access to enumerate directory objects. This prevents guest users from seeing other users or guests in the directory.",
"docsDescription": "Sets it so guests can view only their own user profile. Permission to view other users isn't allowed. Also restricts guest users from seeing the membership of groups they're in. See exactly what get locked down in the [Microsoft documentation.](https://learn.microsoft.com/en-us/entra/fundamentals/users-default-permissions)",
"addedComponent": [],
"label": "Restrict guest user access to directory objects",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-AzureADMSAuthorizationPolicy -GuestUserRoleId '2af84b1e-32c8-42b7-82bc-daa82404023b'",
"recommendedBy": []
},
{
"name": "standards.DisableBasicAuthSMTP",
"cat": "Global Standards",
"tag": ["mediumimpact"],
"helpText": "Disables SMTP AUTH for the organization and all users. This is the default for new tenants. ",
"docsDescription": "Disables SMTP basic authentication for the tenant and all users with it explicitly enabled.",
"addedComponent": [],
"label": "Disable SMTP Basic Authentication",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Set-TransportConfig -SmtpClientAuthenticationDisabled $true",
"recommendedBy": []
},
{
"name": "standards.ActivityBasedTimeout",
"cat": "Global Standards",
"tag": ["mediumimpact", "CIS", "spo_idle_session_timeout"],
"helpText": "Enables and sets Idle session timeout for Microsoft 365 to 1 hour. This policy affects most M365 web apps",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.ActivityBasedTimeout.timeout",
"values": [
{
"label": "1 Hour",
"value": "01:00:00"
},
{
"label": "3 Hours",
"value": "03:00:00"
},
{
"label": "6 Hours",
"value": "06:00:00"
},
{
"label": "12 Hours",
"value": "12:00:00"
},
{
"label": "24 Hours",
"value": "1.00:00:00"
}
]
}
],
"label": "Enable Activity based Timeout",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Portal or Graph API",
"recommendedBy": ["CIS"]
},
{
"name": "standards.AppDeploy",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Deploys selected applications to the tenant. Use a comma separated list of application IDs to deploy multiple applications. Permissions will be copied from the source application.",
"docsDescription": "Uses the CIPP functionality that deploys applications across an entire tenant base as a standard.",
"addedComponent": [
{
"type": "input",
"name": "standards.AppDeploy.appids",
"label": "Application IDs, comma separated"
}
],
"label": "Deploy Application",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Portal or Graph API",
"recommendedBy": []
},
{
"name": "standards.laps",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Enables the tenant to use LAPS. You must still create a policy for LAPS to be active on all devices. Use the template standards to deploy this by default.",
"docsDescription": "Enables the LAPS functionality on the tenant. Prerequisite for using Windows LAPS via Azure AD.",
"addedComponent": [],
"label": "Enable LAPS on the tenant",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Portal or Graph API",
"recommendedBy": []
},
{
"name": "standards.PWdisplayAppInformationRequiredState",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Enables the MS authenticator app to display information about the app that is requesting authentication. This displays the application name.",
"docsDescription": "Allows users to use Passwordless with Number Matching and adds location information from the last request",
"addedComponent": [],
"label": "Enable Passwordless with Location information and Number Matching",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": ["CIS"]
},
{
"name": "standards.allowOTPTokens",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Allows you to use MS authenticator OTP token generator",
"docsDescription": "Allows you to use Microsoft Authenticator OTP token generator. Useful for using the NPS extension as MFA on VPN clients.",
"addedComponent": [],
"label": "Enable OTP via Authenticator",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.PWcompanionAppAllowedState",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Sets the state of Authenticator Lite, Authenticator lite is a companion app for passwordless authentication.",
"docsDescription": "Sets the Authenticator Lite state to enabled. This allows users to use the Authenticator Lite built into the Outlook app instead of the full Authenticator app.",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.PWcompanionAppAllowedState.state",
"values": [
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
}
],
"label": "Set Authenticator Lite state",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.EnableFIDO2",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Enables the FIDO2 authenticationMethod for the tenant",
"docsDescription": "Enables FIDO2 capabilities for the tenant. This allows users to use FIDO2 keys like a Yubikey for authentication.",
"addedComponent": [],
"label": "Enable FIDO2 capabilities",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.EnableHardwareOAuth",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Enables the HardwareOath authenticationMethod for the tenant. This allows you to use hardware tokens for generating 6 digit MFA codes.",
"docsDescription": "Enables Hardware OAuth tokens for the tenant. This allows users to use hardware tokens like a Yubikey for authentication.",
"addedComponent": [],
"label": "Enable Hardware OAuth tokens",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.allowOAuthTokens",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Allows you to use any software OAuth token generator",
"docsDescription": "Enables OTP Software OAuth tokens for the tenant. This allows users to use OTP codes generated via software, like a password manager to be used as an authentication method.",
"addedComponent": [],
"label": "Enable OTP Software OAuth tokens",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.TAP",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Enables TAP and sets the default TAP lifetime to 1 hour. This configuration also allows you to select if a TAP is single use or multi-logon.",
"docsDescription": "Enables Temporary Password generation for the tenant.",
"addedComponent": [
{
"type": "Select",
"label": "Select TAP Lifetime",
"name": "standards.TAP.config",
"values": [
{
"label": "Only Once",
"value": "true"
},
{
"label": "Multiple Logons",
"value": "false"
}
]
}
],
"label": "Enable Temporary Access Passwords",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.PasswordExpireDisabled",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact", "CIS", "PWAgePolicyNew"],
"helpText": "Disables the expiration of passwords for the tenant by setting the password expiration policy to never expire for any user.",
"docsDescription": "Sets passwords to never expire for tenant, recommended to use in conjunction with secure password requirements.",
"addedComponent": [],
"label": "Do not expire passwords",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgDomain",
"recommendedBy": ["CIS"]
},
{
"name": "standards.ExternalMFATrusted",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Sets the state of the Cross-tenant access setting to trust external MFA. This allows guest users to use their home tenant MFA to access your tenant.",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.ExternalMFATrusted.state",
"values": [
{
"label": "Enabled",
"value": "true"
},
{
"label": "Disabled",
"value": "false"
}
]
}
],
"label": "Sets the Cross-tenant access setting to trust external MFA",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaPolicyCrossTenantAccessPolicyDefault",
"recommendedBy": []
},
{
"name": "standards.DisableTenantCreation",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Restricts creation of M365 tenants to the Global Administrator or Tenant Creator roles. ",
"docsDescription": "Users by default are allowed to create M365 tenants. This disables that so only admins can create new M365 tenants.",
"addedComponent": [],
"label": "Disable M365 Tenant creation by users",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgPolicyAuthorizationPolicy",
"recommendedBy": ["CIS"]
},
{
"name": "standards.EnableAppConsentRequests",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Enables App consent admin requests for the tenant via the GA role. Does not overwrite existing reviewer settings",
"docsDescription": "Enables the ability for users to request admin consent for applications. Should be used in conjunction with the \"Require admin consent for applications\" standards",
"addedComponent": [
{
"type": "AdminRolesMultiSelect",
"label": "App Consent Reviewer Roles",
"name": "standards.EnableAppConsentRequests.ReviewerRoles"
}
],
"label": "Enable App consent admin requests",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgPolicyAdminConsentRequestPolicy",
"recommendedBy": ["CIS"]
},
{
"name": "standards.NudgeMFA",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Sets the state of the registration campaign for the tenant",
"docsDescription": "Sets the state of the registration campaign for the tenant. If enabled nudges users to set up the Microsoft Authenticator during sign-in.",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.NudgeMFA.state",
"values": [
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
},
{
"type": "number",
"name": "standards.NudgeMFA.snoozeDurationInDays",
"label": "Number of days to allow users to skip registering Authenticator (0-14, default is 1)",
"default": 1
}
],
"label": "Sets the state for the request to setup Authenticator",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgPolicyAuthenticationMethodPolicy",
"recommendedBy": []
},
{
"name": "standards.DisableM365GroupUsers",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact"],
"helpText": "Restricts M365 group creation to certain admin roles. This disables the ability to create Teams, Sharepoint sites, Planner, etc",
"docsDescription": "Users by default are allowed to create M365 groups. This restricts M365 group creation to certain admin roles. This disables the ability to create Teams, SharePoint sites, Planner, etc",
"addedComponent": [],
"label": "Disable M365 Group creation by users",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgBetaDirectorySetting",
"recommendedBy": []
},
{
"name": "standards.DisableAppCreation",
"cat": "Entra (AAD) Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Disables the ability for users to create App registrations in the tenant.",
"docsDescription": "Disables the ability for users to create applications in Entra. Done to prevent breached accounts from creating an app to maintain access to the tenant, even after the breached account has been secured.",
"addedComponent": [],
"label": "Disable App creation by users",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Update-MgPolicyAuthorizationPolicy",
"recommendedBy": ["CIS"]
},
{
"name": "standards.DisableSecurityGroupUsers",
"cat": "Entra (AAD) Standards",
"tag": ["mediumimpact"],
"helpText": "Completely disables the creation of security groups by users. This also breaks the ability to manage groups themselves, or create Teams",
"addedComponent": [],
"label": "Disable Security Group creation by users",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Update-MgBetaPolicyAuthorizationPolicy",
"recommendedBy": []
},
{
"name": "standards.LegacyMFACleanup",
"cat": "Entra (AAD) Standards",
"tag": ["mediumimpact"],
"helpText": "This standard currently does not function and can be safely disabled",
"addedComponent": [],
"label": "Remove Legacy MFA if SD or CA is active",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Set-MsolUser -StrongAuthenticationRequirements $null",
"recommendedBy": []
},
{
"name": "standards.DisableSelfServiceLicenses",
"cat": "Entra (AAD) Standards",
"tag": ["mediumimpact"],
"helpText": "This standard disables all self service licenses and enables all exclusions",
"addedComponent": [
{
"type": "input",
"name": "standards.DisableSelfServiceLicenses.Exclusions",
"label": "License Ids to exclude from this standard"
}
],
"label": "Disable Self Service Licensing",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Set-MsolCompanySettings -AllowAdHocSubscriptions $false",
"recommendedBy": []
},
{
"name": "standards.DisableGuests",
"cat": "Entra (AAD) Standards",
"tag": ["mediumimpact"],
"helpText": "Blocks login for guest users that have not logged in for 90 days",
"addedComponent": [],
"label": "Disable Guest accounts that have not logged on for 90 days",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Graph API",
"recommendedBy": []
},
{
"name": "standards.OauthConsent",
"cat": "Entra (AAD) Standards",
"tag": ["mediumimpact", "CIS"],
"helpText": "Disables users from being able to consent to applications, except for those specified in the field below",
"docsDescription": "Requires users to get administrator consent before sharing data with applications. You can preapprove specific applications.",
"addedComponent": [
{
"type": "input",
"name": "standards.OauthConsent.AllowedApps",
"label": "Allowed application IDs, comma separated"
}
],
"label": "Require admin consent for applications (Prevent OAuth phishing)",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Update-MgPolicyAuthorizationPolicy",
"recommendedBy": ["CIS"]
},
{
"name": "standards.OauthConsentLowSec",
"cat": "Entra (AAD) Standards",
"tag": ["mediumimpact", "IntegratedApps"],
"helpText": "Sets the default oauth consent level so users can consent to applications that have low risks.",
"docsDescription": "Allows users to consent to applications with low assigned risk.",
"label": "Allow users to consent to applications with low security risk (Prevent OAuth phishing. Lower impact, less secure)",
"impact": "Medium Impact",
"impactColour": "warning",
"powershellEquivalent": "Update-MgPolicyAuthorizationPolicy",
"recommendedBy": []
},
{
"name": "standards.UndoOauth",
"cat": "Entra (AAD) Standards",
"tag": ["highimpact"],
"helpText": "Disables App consent and set to Allow user consent for apps",
"addedComponent": [],
"label": "Undo App Consent Standard",
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Update-MgPolicyAuthorizationPolicy",
"recommendedBy": []
},
{
"name": "standards.SecurityDefaults",
"cat": "Entra (AAD) Standards",
"tag": ["highimpact"],
"helpText": "Enables security defaults for the tenant, for newer tenants this is enabled by default. Do not enable this feature if you use Conditional Access.",
"docsDescription": "Enables SD for the tenant, which disables all forms of basic authentication and enforces users to configure MFA. Users are only prompted for MFA when a logon is considered 'suspect' by Microsoft.",
"addedComponent": [],
"label": "Enable Security Defaults",
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "[Read more here](https://www.cyberdrain.com/automating-with-powershell-enabling-secure-defaults-and-sd-explained/)",
"recommendedBy": []
},
{
"name": "standards.DisableSMS",
"cat": "Entra (AAD) Standards",
"tag": ["highimpact"],
"helpText": "This blocks users from using SMS as an MFA method. If a user only has SMS as a MFA method, they will be unable to log in.",
"docsDescription": "Disables SMS as an MFA method for the tenant. If a user only has SMS as a MFA method, they will be unable to sign in.",
"addedComponent": [],
"label": "Disables SMS as an MFA method",
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.DisableVoice",
"cat": "Entra (AAD) Standards",
"tag": ["highimpact"],
"helpText": "This blocks users from using Voice call as an MFA method. If a user only has Voice as a MFA method, they will be unable to log in.",
"docsDescription": "Disables Voice call as an MFA method for the tenant. If a user only has Voice call as a MFA method, they will be unable to sign in.",
"addedComponent": [],
"label": "Disables Voice call as an MFA method",
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.DisableEmail",
"cat": "Entra (AAD) Standards",
"tag": ["highimpact"],
"helpText": "This blocks users from using email as an MFA method. This disables the email OTP option for guest users, and instead prompts them to create a Microsoft account.",
"addedComponent": [],
"label": "Disables Email as an MFA method",
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.Disablex509Certificate",
"cat": "Entra (AAD) Standards",
"tag": ["highimpact"],
"helpText": "This blocks users from using Certificates as an MFA method.",
"docsDescription": "",
"addedComponent": [],
"label": "Disables Certificates as an MFA method",
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.PerUserMFA",
"cat": "Entra (AAD) Standards",
"tag": ["highimpact"],
"helpText": "Enables per user MFA for all users.",
"addedComponent": [],
"label": "Enables per user MFA for all users.",
"impact": "High Impact",
"impactColour": "danger",
"powershellEquivalent": "Graph API",
"recommendedBy": []
},
{
"name": "standards.OutBoundSpamAlert",
"cat": "Exchange Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Set the Outbound Spam Alert e-mail address",
"docsDescription": "Sets the e-mail address to which outbound spam alerts are sent.",
"addedComponent": [
{
"type": "input",
"name": "standards.OutBoundSpamAlert.OutboundSpamContact",
"label": "Outbound spam contact"
}
],
"label": "Set Outbound Spam Alert e-mail",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-HostedOutboundSpamFilterPolicy",
"recommendedBy": ["CIS"]
},
{
"name": "standards.MessageExpiration",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Sets the transport message configuration to timeout a message at 12 hours.",
"docsDescription": "Expires messages in the transport queue after 12 hours. Makes the NDR for failed messages show up faster for users. Default is 24 hours.",
"addedComponent": [],
"label": "Lower Transport Message Expiration to 12 hours",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-TransportConfig -MessageExpirationTimeout 12.00:00:00",
"recommendedBy": []
},
{
"name": "standards.GlobalQuarantineNotifications",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Sets the Global Quarantine Notification Interval to the selected value. Determines how often the quarantine notification is sent to users.",
"docsDescription": "Sets the global quarantine notification interval for the tenant. This is the time between the quarantine notification emails are sent out to users. Default is 24 hours.",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.GlobalQuarantineNotifications.NotificationInterval",
"values": [
{
"label": "4 hours",
"value": "04:00:00"
},
{
"label": "1 day/Daily",
"value": "1.00:00:00"
},
{
"label": "7 days/Weekly",
"value": "7.00:00:00"
}
]
}
],
"label": "Set Global Quarantine Notification Interval",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-QuarantinePolicy -EndUserSpamNotificationFrequency",
"recommendedBy": []
},
{
"name": "standards.DisableTNEF",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Disables Transport Neutral Encapsulation Format (TNEF)/winmail.dat for the tenant. TNEF can cause issues if the recipient is not using a client supporting TNEF.",
"docsDescription": "Disables Transport Neutral Encapsulation Format (TNEF)/winmail.dat for the tenant. TNEF can cause issues if the recipient is not using a client supporting TNEF. Cannot be overridden by the user. For more information, see [Microsoft's documentation.](https://learn.microsoft.com/en-us/exchange/mail-flow/content-conversion/tnef-conversion?view=exchserver-2019)",
"addedComponent": [],
"label": "Disable TNEF/winmail.dat",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-RemoteDomain -Identity 'Default' -TNEFEnabled $false",
"recommendedBy": []
},
{
"name": "standards.FocusedInbox",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Sets the default Focused Inbox state for the tenant. This can be overridden by the user.",
"docsDescription": "Sets the default Focused Inbox state for the tenant. This can be overridden by the user in their Outlook settings. For more information, see [Microsoft's documentation.](https://support.microsoft.com/en-us/office/focused-inbox-for-outlook-f445ad7f-02f4-4294-a82e-71d8964e3978)",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.FocusedInbox.state",
"values": [
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
}
],
"label": "Set Focused Inbox state",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-OrganizationConfig -FocusedInboxOn $true or $false",
"recommendedBy": []
},
{
"name": "standards.CloudMessageRecall",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Sets the Cloud Message Recall state for the tenant. This allows users to recall messages from the cloud.",
"docsDescription": "Sets the default state for Cloud Message Recall for the tenant. By default this is enabled. You can read more about the feature [here.](https://techcommunity.microsoft.com/t5/exchange-team-blog/cloud-based-message-recall-in-exchange-online/ba-p/3744714)",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.CloudMessageRecall.state",
"values": [
{
"label": "Enabled",
"value": "true"
},
{
"label": "Disabled",
"value": "false"
}
]
}
],
"label": "Set Cloud Message Recall state",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-OrganizationConfig -MessageRecallEnabled",
"recommendedBy": []
},
{
"name": "standards.AutoExpandArchive",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Enables auto-expanding archives for the tenant",
"docsDescription": "Enables auto-expanding archives for the tenant. Does not enable archives for users.",
"addedComponent": [],
"label": "Enable Auto-expanding archives",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-OrganizationConfig -AutoExpandingArchive",
"recommendedBy": []
},
{
"name": "standards.EnableOnlineArchiving",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Enables the In-Place Online Archive for all UserMailboxes with a valid license.",
"addedComponent": [],
"label": "Enable Online Archive for all users",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Enable-Mailbox -Archive $true",
"recommendedBy": []
},
{
"name": "standards.EnableLitigationHold",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Enables litigation hold for all UserMailboxes with a valid license.",
"addedComponent": [],
"label": "Enable Litigation Hold for all users",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-Mailbox -LitigationHoldEnabled $true",
"recommendedBy": []
},
{
"name": "standards.SpoofWarn",
"cat": "Exchange Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Adds or removes indicators to e-mail messages received from external senders in Outlook. Works on all Outlook clients/OWA",
"docsDescription": "Adds or removes indicators to e-mail messages received from external senders in Outlook. You can read more about this feature on [Microsoft's Exchange Team Blog.](https://techcommunity.microsoft.com/t5/exchange-team-blog/native-external-sender-callouts-on-email-in-outlook/ba-p/2250098)",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.SpoofWarn.state",
"values": [
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
}
],
"label": "Enable or disable 'external' warning in Outlook",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "et-ExternalInOutlook –Enabled $true or $false",
"recommendedBy": ["CIS"]
},
{
"name": "standards.EnableMailTips",
"cat": "Exchange Standards",
"tag": ["lowimpact", "CIS", "exo_mailtipsenabled"],
"helpText": "Enables all MailTips in Outlook. MailTips are the notifications Outlook and Outlook on the web shows when an email you create, meets some requirements",
"addedComponent": [
{
"type": "number",
"name": "standards.EnableMailTips.MailTipsLargeAudienceThreshold",
"label": "Number of recipients to trigger the large audience MailTip (Default is 25)",
"placeholder": "Enter a profile name",
"default": 25
}
],
"label": "Enable all MailTips",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-OrganizationConfig",
"recommendedBy": ["CIS"]
},
{
"name": "standards.TeamsMeetingsByDefault",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Sets the default state for automatically turning meetings into Teams meetings for the tenant. This can be overridden by the user in Outlook.",
"addedComponent": [
{
"type": "Select",
"label": "Select value",
"name": "standards.TeamsMeetingsByDefault.state",
"values": [
{
"label": "Enabled",
"value": "true"
},
{
"label": "Disabled",
"value": "false"
}
]
}
],
"label": "Set Teams Meetings by default state",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-OrganizationConfig -OnlineMeetingsByDefaultEnabled",
"recommendedBy": []
},
{
"name": "standards.DisableViva",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Disables the daily viva reports for all users.",
"docsDescription": "",
"addedComponent": [],
"label": "Disable daily Insight/Viva reports",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-UserBriefingConfig",
"recommendedBy": []
},
{
"name": "standards.RotateDKIM",
"cat": "Exchange Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Rotate DKIM keys that are 1024 bit to 2048 bit",
"addedComponent": [],
"label": "Rotate DKIM keys that are 1024 bit to 2048 bit",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Rotate-DkimSigningConfig",
"recommendedBy": ["CIS"]
},
{
"name": "standards.AddDKIM",
"cat": "Exchange Standards",
"tag": ["lowimpact", "CIS"],
"helpText": "Enables DKIM for all domains that currently support it",
"addedComponent": [],
"label": "Enables DKIM for all domains that currently support it",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "New-DkimSigningConfig and Set-DkimSigningConfig",
"recommendedBy": ["CIS"]
},
{
"name": "standards.EnableMailboxAuditing",
"cat": "Exchange Standards",
"tag": ["lowimpact", "CIS", "exo_mailboxaudit"],
"helpText": "Enables Mailbox auditing for all mailboxes and on tenant level. Disables audit bypass on all mailboxes. Unified Audit Log needs to be enabled for this standard to function.",
"docsDescription": "Enables mailbox auditing on tenant level and for all mailboxes. Disables audit bypass on all mailboxes. By default Microsoft does not enable mailbox auditing for Resource Mailboxes, Public Folder Mailboxes and DiscoverySearch Mailboxes. Unified Audit Log needs to be enabled for this standard to function.",
"addedComponent": [],
"label": "Enable Mailbox auditing",
"impact": "Low Impact",
"impactColour": "info",
"powershellEquivalent": "Set-OrganizationConfig -AuditDisabled $false",
"recommendedBy": ["CIS"]
},
{
"name": "standards.SendReceiveLimitTenant",
"cat": "Exchange Standards",
"tag": ["lowimpact"],
"helpText": "Sets the Send and Receive limits for new users. Valid values are 1MB to 150MB",
"addedComponent": [
{
"type": "number",
"name": "standards.SendReceiveLimitTenant.SendLimit",
"label": "Send limit in MB (Default is 35)",
"default": 35
},
{
"type": "number",
"name": "standards.SendReceiveLimitTenant.ReceiveLimit",
"label": "Receive Limit in MB (Default is 36)",
"default": 36