-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathstandards.json
More file actions
4789 lines (4789 loc) · 210 KB
/
standards.json
File metadata and controls
4789 lines (4789 loc) · 210 KB
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": [],
"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": "",
"executiveText": "Establishes designated contact email addresses for receiving important Microsoft 365 subscription updates and notifications. This ensures proper communication channels are maintained for general, security, marketing, and technical matters, improving organizational responsiveness to critical system updates.",
"addedComponent": [
{
"type": "textField",
"name": "standards.MailContacts.GeneralContact",
"label": "General Contact",
"required": false
},
{
"type": "textField",
"name": "standards.MailContacts.SecurityContact",
"label": "Security Contact",
"required": false
},
{
"type": "textField",
"name": "standards.MailContacts.MarketingContact",
"label": "Marketing Contact",
"required": false
},
{
"type": "textField",
"name": "standards.MailContacts.TechContact",
"label": "Technical Contact",
"required": false
}
],
"label": "Set contact e-mails",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2022-03-13",
"powershellEquivalent": "Set-MsolCompanyContactInformation",
"recommendedBy": []
},
{
"name": "standards.DeployMailContact",
"cat": "Exchange Standards",
"tag": [],
"helpText": "Creates a new mail contact in Exchange Online across all selected tenants. The contact will be visible in the Global Address List.",
"docsDescription": "This standard creates a new mail contact in Exchange Online. Mail contacts are useful for adding external email addresses to your organization's address book. They can be used for distribution lists, shared mailboxes, and other collaboration scenarios.",
"executiveText": "Automatically creates external email contacts in the organization's address book, enabling seamless communication with external partners and vendors. This standardizes contact management across all company locations and improves collaboration efficiency.",
"addedComponent": [
{
"type": "textField",
"name": "standards.DeployMailContact.ExternalEmailAddress",
"label": "External Email Address",
"required": true
},
{
"type": "textField",
"name": "standards.DeployMailContact.DisplayName",
"label": "Display Name",
"required": true
},
{
"type": "textField",
"name": "standards.DeployMailContact.FirstName",
"label": "First Name",
"required": false
},
{
"type": "textField",
"name": "standards.DeployMailContact.LastName",
"label": "Last Name",
"required": false
}
],
"label": "Deploy Mail Contact",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-03-19",
"powershellEquivalent": "New-MailContact",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.DeployContactTemplates",
"cat": "Exchange Standards",
"tag": [],
"helpText": "Creates new mail contacts in Exchange Online across all selected tenants based on the selected templates. The contact will be visible in the Global Address List unless hidden.",
"docsDescription": "This standard creates new mail contacts in Exchange Online based on the selected templates. Mail contacts are useful for adding external email addresses to your organization's address book. They can be used for distribution lists, shared mailboxes, and other collaboration scenarios.",
"executiveText": "Deploys standardized external contact templates across all company locations, ensuring consistent communication channels with key external partners, vendors, and stakeholders. This streamlines contact management and maintains uniform business relationships.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": true,
"creatable": false,
"label": "Select Mail Contact Templates",
"name": "standards.DeployContactTemplates.templateIds",
"api": {
"url": "/api/ListContactTemplates",
"labelField": "name",
"valueField": "GUID",
"queryKey": "Contact Templates"
}
}
],
"label": "Deploy Mail Contact Template",
"disabledFeatures": {
"report": false,
"warn": false,
"remediate": false
},
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2025-05-31",
"powershellEquivalent": "New-MailContact",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.AuditLog",
"cat": "Global Standards",
"tag": ["CIS M365 5.0 (3.1.1)", "mip_search_auditlog", "NIST CSF 2.0 (DE.CM-09)"],
"helpText": "Enables the Unified Audit Log for tracking and auditing activities. Also runs Enable-OrganizationCustomization if necessary.",
"executiveText": "Activates comprehensive activity logging across Microsoft 365 services to track user actions, system changes, and security events. This provides essential audit trails for compliance requirements, security investigations, and regulatory reporting.",
"addedComponent": [],
"label": "Enable the Unified Audit Log",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2021-11-16",
"powershellEquivalent": "Enable-OrganizationCustomization",
"recommendedBy": ["CIS", "CIPP"]
},
{
"name": "standards.RestrictThirdPartyStorageServices",
"cat": "Global Standards",
"tag": ["CIS M365 5.0 (1.3.7)"],
"helpText": "Restricts third-party storage services in Microsoft 365 on the web by managing the Microsoft 365 on the web service principal. This disables integrations with services like Dropbox, Google Drive, Box, and other third-party storage providers.",
"docsDescription": "Third-party storage can be enabled for users in Microsoft 365, allowing them to store and share documents using services such as Dropbox, alongside OneDrive and team sites. This standard ensures Microsoft 365 on the web third-party storage services are restricted by creating and disabling the Microsoft 365 on the web service principal (appId: c1f33bc0-bdb4-4248-ba9b-096807ddb43e). By using external storage services an organization may increase the risk of data breaches and unauthorized access to confidential information. Additionally, third-party services may not adhere to the same security standards as the organization, making it difficult to maintain data privacy and security. Impact is highly dependent upon current practices - if users do not use other storage providers, then minimal impact is likely. However, if users regularly utilize providers outside of the tenant this will affect their ability to continue to do so.",
"executiveText": "Prevents employees from using external cloud storage services like Dropbox, Google Drive, and Box within Microsoft 365, reducing data security risks and ensuring all company data remains within controlled corporate systems. This helps maintain data governance and prevents potential data leaks to unauthorized platforms.",
"addedComponent": [],
"label": "Restrict third-party storage services in Microsoft 365 on the web",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2025-06-06",
"powershellEquivalent": "New-MgServicePrincipal and Update-MgServicePrincipal",
"recommendedBy": ["CIS"]
},
{
"name": "standards.ProfilePhotos",
"cat": "Global Standards",
"tag": [],
"helpText": "Controls whether users can set their own profile photos in Microsoft 365.",
"docsDescription": "Controls whether users can set their own profile photos in Microsoft 365. When disabled, only User and Global administrators can update profile photos for users.",
"executiveText": "Manages user profile photo permissions within Microsoft 365, allowing organizations to control whether employees can upload their own photos or require administrative approval. This helps maintain professional appearance standards and prevents inappropriate images in corporate directories.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"label": "Select value",
"name": "standards.ProfilePhotos.state",
"options": [
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
}
],
"label": "Allow users to set profile photos",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2025-01-19",
"powershellEquivalent": "Set-OrganizationConfig -ProfilePhotoOptions EnablePhotos and Update-MgBetaAdminPeople",
"recommendedBy": []
},
{
"name": "standards.PhishProtection",
"cat": "Global Standards",
"tag": [],
"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.",
"executiveText": "Implements advanced phishing protection by adding visual indicators to login pages that help users identify legitimate Microsoft login pages versus fraudulent copies. This security measure protects against sophisticated phishing attacks that attempt to steal employee credentials.",
"addedComponent": [],
"label": "Enable Phishing Protection system via branding CSS",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-01-22",
"disabledFeatures": {
"report": true,
"warn": true,
"remediate": false
},
"powershellEquivalent": "Portal only",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.Branding",
"cat": "Global Standards",
"tag": [],
"helpText": "Sets the branding for the tenant. This includes the login page, and the Office 365 portal.",
"executiveText": "Customizes Microsoft 365 login pages and portals with company branding, including logos, colors, and messaging. This creates a consistent corporate identity experience for employees and reinforces brand recognition while maintaining professional appearance across all Microsoft services.",
"addedComponent": [
{
"type": "textField",
"name": "standards.Branding.signInPageText",
"label": "Sign-in page text",
"required": false
},
{
"type": "textField",
"name": "standards.Branding.usernameHintText",
"label": "Username hint Text",
"required": false
},
{
"type": "switch",
"name": "standards.Branding.hideAccountResetCredentials",
"label": "Hide self-service password reset"
},
{
"type": "autoComplete",
"multiple": false,
"label": "Visual Template",
"name": "standards.Branding.layoutTemplateType",
"options": [
{
"label": "Full-screen background",
"value": "default"
},
{
"label": "Partial-screen background",
"value": "verticalSplit"
}
]
},
{
"type": "switch",
"name": "standards.Branding.isHeaderShown",
"label": "Show header"
},
{
"type": "switch",
"name": "standards.Branding.isFooterShown",
"label": "Show footer"
}
],
"label": "Set branding for the tenant",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-05-13",
"powershellEquivalent": "Portal only",
"recommendedBy": []
},
{
"name": "standards.EnableCustomerLockbox",
"cat": "Global Standards",
"tag": ["CIS M365 5.0 (1.3.6)", "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.",
"executiveText": "Requires explicit organizational approval before Microsoft support staff can access company data for service operations. This provides an additional layer of data protection and ensures the organization maintains control over who can access sensitive business information, even during technical support scenarios.",
"addedComponent": [],
"label": "Enable Customer Lockbox",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-01-08",
"powershellEquivalent": "Set-OrganizationConfig -CustomerLockBoxEnabled $true",
"recommendedBy": ["CIS"]
},
{
"name": "standards.EnablePronouns",
"cat": "Global Standards",
"tag": [],
"helpText": "Enables the Pronouns feature for the tenant. This allows users to set their pronouns in their profile.",
"executiveText": "Allows employees to display their preferred pronouns in their Microsoft 365 profiles, supporting inclusive workplace practices and helping colleagues communicate respectfully. This feature enhances diversity and inclusion initiatives while fostering a more welcoming work environment.",
"addedComponent": [],
"label": "Enable Pronouns",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-06-05",
"powershellEquivalent": "Update-MgBetaAdminPeoplePronoun -IsEnabledInOrganization:$true",
"recommendedBy": []
},
{
"name": "standards.EnableNamePronunciation",
"cat": "Global Standards",
"tag": [],
"helpText": "Enables the Name Pronunciation feature for the tenant. This allows users to set their name pronunciation in their profile.",
"docsDescription": "Enables the Name Pronunciation feature for the tenant. This allows users to set their name pronunciation in their profile.",
"executiveText": "Enables employees to add pronunciation guides for their names in Microsoft 365 profiles, improving communication and respect in diverse workplaces. This feature helps colleagues pronounce names correctly, enhancing professional relationships and inclusive culture.",
"addedComponent": [],
"label": "Enable Name Pronunciation",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2025-06-06",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.AnonReportDisable",
"cat": "Global Standards",
"tag": [],
"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.",
"executiveText": "Configures Microsoft 365 reports to display actual usernames instead of anonymized identifiers, enabling IT administrators to effectively troubleshoot issues and generate meaningful usage reports. This improves operational efficiency and system management capabilities.",
"addedComponent": [],
"label": "Enable Usernames instead of pseudo anonymised names in reports",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2021-11-16",
"powershellEquivalent": "Update-MgBetaAdminReportSetting -BodyParameter @{displayConcealedNames = $true}",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.DisableGuestDirectory",
"cat": "Global Standards",
"tag": [
"CIS M365 5.0 (5.1.6.2)",
"CISA (MS.AAD.5.1v1)",
"EIDSCA.AP14",
"EIDSCA.ST08",
"EIDSCA.ST09",
"NIST CSF 2.0 (PR.AA-05)"
],
"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)",
"executiveText": "Restricts external guest users from viewing the company's employee directory and organizational structure, protecting sensitive information about staff and internal groups. This security measure prevents unauthorized access to corporate contact information while still allowing necessary collaboration.",
"addedComponent": [],
"label": "Restrict guest user access to directory objects",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2022-05-04",
"powershellEquivalent": "Set-AzureADMSAuthorizationPolicy -GuestUserRoleId '2af84b1e-32c8-42b7-82bc-daa82404023b'",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.DisableBasicAuthSMTP",
"cat": "Global Standards",
"tag": ["CIS M365 5.0 (6.5.4)", "NIST CSF 2.0 (PR.IR-01)"],
"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.",
"executiveText": "Disables outdated email authentication methods that are vulnerable to security attacks, forcing applications and devices to use modern, more secure authentication protocols. This reduces the risk of email-based security breaches and credential theft.",
"addedComponent": [],
"label": "Disable SMTP Basic Authentication",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2021-11-16",
"powershellEquivalent": "Set-TransportConfig -SmtpClientAuthenticationDisabled $true",
"recommendedBy": ["CIS", "CIPP"]
},
{
"name": "standards.ActivityBasedTimeout",
"cat": "Global Standards",
"tag": ["CIS M365 5.0 (1.3.2)", "spo_idle_session_timeout", "NIST CSF 2.0 (PR.AA-03)"],
"helpText": "Enables and sets Idle session timeout for Microsoft 365 to 1 hour. This policy affects most M365 web apps",
"executiveText": "Automatically logs out inactive users from Microsoft 365 applications after a specified time period to prevent unauthorized access to company data on unattended devices. This security measure protects against data breaches when employees leave workstations unlocked.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"label": "Select value",
"name": "standards.ActivityBasedTimeout.timeout",
"options": [
{
"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",
"addedDate": "2022-04-13",
"powershellEquivalent": "Portal or Graph API",
"recommendedBy": ["CIS"]
},
{
"name": "standards.AuthMethodsSettings",
"cat": "Entra (AAD) Standards",
"tag": ["EIDSCA.AG01", "EIDSCA.AG02", "EIDSCA.AG03"],
"helpText": "Configures the report suspicious activity settings and system credential preferences in the authentication methods policy.",
"docsDescription": "Controls the authentication methods policy settings for reporting suspicious activity and system credential preferences. These settings help enhance the security of authentication in your organization.",
"executiveText": "Configures security settings that allow users to report suspicious login attempts and manages how the system handles authentication credentials. This enhances overall security by enabling early detection of potential security threats and optimizing authentication processes.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"required": false,
"name": "standards.AuthMethodsSettings.ReportSuspiciousActivity",
"label": "Report Suspicious Activity Settings",
"options": [
{
"label": "Microsoft managed",
"value": "default"
},
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
},
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"required": false,
"name": "standards.AuthMethodsSettings.SystemCredential",
"label": "System Credential Preferences",
"options": [
{
"label": "Microsoft managed",
"value": "default"
},
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
}
]
}
],
"label": "Configure Authentication Methods Policy Settings",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2025-02-10",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicy",
"recommendedBy": []
},
{
"name": "standards.AuthMethodsPolicyMigration",
"cat": "Entra (AAD) Standards",
"tag": [],
"helpText": "Completes the migration of authentication methods policy to the new format",
"docsDescription": "Sets the authentication methods policy migration state to complete. This is required when migrating from legacy authentication policies to the new unified authentication methods policy.",
"executiveText": "Completes the transition from legacy authentication policies to Microsoft's modern unified authentication methods policy, ensuring the organization benefits from the latest security features and management capabilities. This migration enables enhanced security controls and simplified policy management.",
"addedComponent": [],
"label": "Complete Authentication Methods Policy Migration",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2025-07-07",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicy",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.AppDeploy",
"cat": "Entra (AAD) Standards",
"tag": [],
"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.",
"executiveText": "Automatically deploys approved business applications across all company locations and users, ensuring consistent access to essential tools and maintaining standardized software configurations. This streamlines application management and reduces IT deployment overhead.",
"addedComponent": [
{
"type": "select",
"multiple": false,
"creatable": false,
"label": "App Approval Mode",
"name": "standards.AppDeploy.mode",
"options": [
{
"label": "Template",
"value": "template"
},
{
"label": "Copy Permissions",
"value": "copy"
}
]
},
{
"type": "autoComplete",
"multiple": true,
"creatable": false,
"label": "Select Applications",
"name": "standards.AppDeploy.templateIds",
"api": {
"url": "/api/ListAppApprovalTemplates",
"labelField": "TemplateName",
"valueField": "TemplateId",
"queryKey": "StdAppApprovalTemplateList",
"addedField": {
"AppId": "AppId"
}
},
"condition": {
"field": "standards.AppDeploy.mode",
"compareType": "is",
"compareValue": "template"
}
},
{
"type": "textField",
"name": "standards.AppDeploy.appids",
"label": "Application IDs, comma separated",
"condition": {
"field": "standards.AppDeploy.mode",
"compareType": "isNot",
"compareValue": "template"
}
}
],
"label": "Deploy Application",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-07-07",
"powershellEquivalent": "Portal or Graph API",
"recommendedBy": []
},
{
"name": "standards.laps",
"cat": "Entra (AAD) Standards",
"tag": [],
"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.",
"executiveText": "Enables Local Administrator Password Solution (LAPS) capability, which automatically manages and rotates local administrator passwords on company computers. This significantly improves security by preventing the use of shared or static administrator passwords that could be exploited by attackers.",
"addedComponent": [],
"label": "Enable LAPS on the tenant",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2023-04-25",
"powershellEquivalent": "Portal or Graph API",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.PWdisplayAppInformationRequiredState",
"cat": "Entra (AAD) Standards",
"tag": [
"CIS M365 5.0 (2.3.1)",
"EIDSCA.AM03",
"EIDSCA.AM04",
"EIDSCA.AM06",
"EIDSCA.AM07",
"EIDSCA.AM09",
"EIDSCA.AM10",
"NIST CSF 2.0 (PR.AA-03)"
],
"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",
"executiveText": "Enhances authentication security by requiring users to match numbers and showing detailed information about login requests, including application names and location data. This helps employees verify legitimate login attempts and prevents unauthorized access through more secure authentication methods.",
"addedComponent": [],
"label": "Enable Passwordless with Location information and Number Matching",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2021-11-16",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": ["CIS"]
},
{
"name": "standards.allowOTPTokens",
"cat": "Entra (AAD) Standards",
"tag": ["EIDSCA.AM02"],
"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.",
"executiveText": "Enables one-time password generation through Microsoft Authenticator app, providing an additional secure authentication method for employees. This is particularly useful for secure VPN access and other systems requiring multi-factor authentication.",
"addedComponent": [],
"label": "Enable OTP via Authenticator",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2023-12-06",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.PWcompanionAppAllowedState",
"cat": "Entra (AAD) Standards",
"tag": ["EIDSCA.AM01"],
"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.",
"executiveText": "Enables a simplified authentication experience by allowing users to authenticate directly through Outlook without requiring a separate authenticator app. This improves user convenience while maintaining security standards for passwordless authentication.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"label": "Select value",
"name": "standards.PWcompanionAppAllowedState.state",
"options": [
{
"label": "Enabled",
"value": "enabled"
},
{
"label": "Disabled",
"value": "disabled"
},
{
"label": "Microsoft managed",
"value": "default"
}
]
}
],
"label": "Set Authenticator Lite state",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2023-05-18",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.EnableFIDO2",
"cat": "Entra (AAD) Standards",
"tag": [
"EIDSCA.AF01",
"EIDSCA.AF02",
"EIDSCA.AF03",
"EIDSCA.AF04",
"EIDSCA.AF05",
"EIDSCA.AF06",
"NIST CSF 2.0 (PR.AA-03)"
],
"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.",
"executiveText": "Enables support for hardware security keys (like YubiKey) that provide the highest level of authentication security. These physical devices prevent phishing attacks and credential theft, offering superior protection for high-value accounts and sensitive business operations.",
"addedComponent": [],
"label": "Enable FIDO2 capabilities",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2022-12-08",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.EnableHardwareOAuth",
"cat": "Entra (AAD) Standards",
"tag": [],
"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.",
"executiveText": "Enables physical hardware tokens that generate secure authentication codes, providing an alternative to smartphone-based authentication. This is particularly valuable for employees who cannot use mobile devices or require the highest security standards for accessing sensitive systems.",
"addedComponent": [],
"label": "Enable Hardware OAuth tokens",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2023-12-18",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.allowOAuthTokens",
"cat": "Entra (AAD) Standards",
"tag": ["EIDSCA.AT01", "EIDSCA.AT02"],
"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.",
"executiveText": "Allows employees to use third-party authentication apps and password managers to generate secure login codes, providing flexibility in authentication methods while maintaining security standards. This accommodates diverse user preferences and existing security tools.",
"addedComponent": [],
"label": "Enable OTP Software OAuth tokens",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2022-12-18",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": []
},
{
"name": "standards.FormsPhishingProtection",
"cat": "Global Standards",
"tag": ["CIS M365 5.0 (1.3.5)", "Security", "PhishingProtection"],
"helpText": "Enables internal phishing protection for Microsoft Forms to help prevent malicious forms from being created and shared within the organization. This feature scans forms created by internal users for potential phishing content and suspicious patterns.",
"docsDescription": "Enables internal phishing protection for Microsoft Forms by setting the isInOrgFormsPhishingScanEnabled property to true. This security feature helps protect organizations from internal phishing attacks through Microsoft Forms by automatically scanning forms created by internal users for potential malicious content, suspicious links, and phishing patterns. When enabled, Forms will analyze form content and block or flag potentially dangerous forms before they can be shared within the organization.",
"executiveText": "Automatically scans Microsoft Forms created by employees for malicious content and phishing attempts, preventing the creation and distribution of harmful forms within the organization. This protects against both internal threats and compromised accounts that might be used to distribute malicious content.",
"addedComponent": [],
"label": "Enable internal phishing protection for Forms",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2025-06-06",
"powershellEquivalent": "Graph API",
"recommendedBy": ["CIS", "CIPP"]
},
{
"name": "standards.TAP",
"cat": "Entra (AAD) Standards",
"tag": [],
"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.",
"executiveText": "Enables temporary access passwords that IT administrators can generate for employees who are locked out or need emergency access to systems. These time-limited passwords provide a secure way to restore access without compromising long-term security policies.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"label": "Select TAP Lifetime",
"name": "standards.TAP.config",
"options": [
{
"label": "Only Once",
"value": "true"
},
{
"label": "Multiple Logons",
"value": "false"
}
]
}
],
"label": "Enable Temporary Access Passwords",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2022-03-15",
"powershellEquivalent": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration",
"recommendedBy": ["CIPP"]
},
{
"name": "standards.PasswordExpireDisabled",
"cat": "Entra (AAD) Standards",
"tag": ["CIS M365 5.0 (1.3.1)", "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.",
"executiveText": "Eliminates mandatory password expiration requirements, allowing employees to keep strong passwords indefinitely rather than forcing frequent changes that often lead to weaker passwords. This modern security approach reduces help desk calls and improves overall password security when combined with multi-factor authentication.",
"addedComponent": [],
"label": "Do not expire passwords",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2021-11-16",
"powershellEquivalent": "Update-MgDomain",
"recommendedBy": ["CIS", "CIPP"]
},
{
"name": "standards.CustomBannedPasswordList",
"cat": "Entra (AAD) Standards",
"tag": ["CIS M365 5.0 (5.2.3.2)"],
"helpText": "**Requires Entra ID P1.** Updates and enables the Entra ID custom banned password list with the supplied words. Enter words separated by commas or semicolons. Each word must be 4-16 characters long. Maximum 1,000 words allowed.",
"docsDescription": "Updates and enables the Entra ID custom banned password list with the supplied words. This supplements the global banned password list maintained by Microsoft. The custom list is limited to 1,000 key base terms of 4-16 characters each. Entra ID will [block variations and common substitutions](https://learn.microsoft.com/en-us/entra/identity/authentication/tutorial-configure-custom-password-protection#configure-custom-banned-passwords) of these words in user passwords. [How are passwords evaluated?](https://learn.microsoft.com/en-us/entra/identity/authentication/concept-password-ban-bad#score-calculation)",
"addedComponent": [
{
"type": "textField",
"name": "standards.CustomBannedPasswordList.BannedWords",
"label": "Banned Words",
"placeholder": "Banned words separated by commas or semicolons",
"required": true
}
],
"label": "Set Entra ID Custom Banned Password List",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2025-06-28",
"powershellEquivalent": "Get-MgBetaDirectorySetting, New-MgBetaDirectorySetting, Update-MgBetaDirectorySetting",
"recommendedBy": ["CIS"]
},
{
"name": "standards.ExternalMFATrusted",
"cat": "Entra (AAD) Standards",
"tag": [],
"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.",
"executiveText": "Allows external partners and vendors to use their own organization's multi-factor authentication when accessing company resources, streamlining collaboration while maintaining security standards. This reduces friction for external users while ensuring they still meet authentication requirements.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"label": "Select value",
"name": "standards.ExternalMFATrusted.state",
"options": [
{
"label": "Enabled",
"value": "true"
},
{
"label": "Disabled",
"value": "false"
}
]
}
],
"label": "Sets the Cross-tenant access setting to trust external MFA",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-03-26",
"powershellEquivalent": "Update-MgBetaPolicyCrossTenantAccessPolicyDefault",
"recommendedBy": []
},
{
"name": "standards.DisableTenantCreation",
"cat": "Entra (AAD) Standards",
"tag": ["CIS M365 5.0 (1.2.3)", "CISA (MS.AAD.6.1v1)"],
"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.",
"executiveText": "Prevents regular employees from creating new Microsoft 365 organizations, ensuring all new tenants are properly managed and controlled by IT administrators. This prevents unauthorized shadow IT environments and maintains centralized governance over Microsoft 365 resources.",
"addedComponent": [],
"label": "Disable M365 Tenant creation by users",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2022-11-29",
"powershellEquivalent": "Update-MgPolicyAuthorizationPolicy",
"recommendedBy": ["CIS", "CIPP"]
},
{
"name": "standards.EnableAppConsentRequests",
"cat": "Entra (AAD) Standards",
"tag": [
"CIS M365 5.0 (1.5.2)",
"CISA (MS.AAD.9.1v1)",
"EIDSCA.CP04",
"EIDSCA.CR01",
"EIDSCA.CR02",
"EIDSCA.CR03",
"EIDSCA.CR04",
"Essential 8 (1507)",
"NIST CSF 2.0 (PR.AA-05)"
],
"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",
"executiveText": "Establishes a formal approval process where employees can request access to business applications that require administrative review. This balances security with productivity by allowing controlled access to necessary tools while preventing unauthorized application installations.",
"addedComponent": [
{
"type": "AdminRolesMultiSelect",
"label": "App Consent Reviewer Roles",
"name": "standards.EnableAppConsentRequests.ReviewerRoles"
}
],
"label": "Enable App consent admin requests",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2023-11-27",
"powershellEquivalent": "Update-MgPolicyAdminConsentRequestPolicy",
"recommendedBy": ["CIS"]
},
{
"name": "standards.NudgeMFA",
"cat": "Entra (AAD) Standards",
"tag": [],
"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.",
"executiveText": "Prompts employees to set up multi-factor authentication during login, gradually improving the organization's security posture by encouraging adoption of stronger authentication methods. This helps achieve better security compliance without forcing immediate mandatory changes.",
"addedComponent": [
{
"type": "autoComplete",
"multiple": false,
"creatable": false,
"label": "Select value",
"name": "standards.NudgeMFA.state",
"options": [
{
"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)",
"defaultValue": 1
}
],
"label": "Sets the state for the request to setup Authenticator",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2022-12-08",
"powershellEquivalent": "Update-MgPolicyAuthenticationMethodPolicy",
"recommendedBy": []
},
{
"name": "standards.DisableM365GroupUsers",
"cat": "Entra (AAD) Standards",
"tag": ["CISA (MS.AAD.21.1v1)"],
"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",
"executiveText": "Restricts the creation of Microsoft 365 groups, Teams, and SharePoint sites to authorized administrators, preventing uncontrolled proliferation of collaboration spaces. This ensures proper governance, naming conventions, and resource management while maintaining oversight of all collaborative environments.",
"addedComponent": [],
"label": "Disable M365 Group creation by users",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2022-07-17",
"powershellEquivalent": "Update-MgBetaDirectorySetting",
"recommendedBy": []
},
{
"name": "standards.DisableAppCreation",
"cat": "Entra (AAD) Standards",
"tag": [
"CIS M365 5.0 (1.2.2)",
"CISA (MS.AAD.4.1v1)",
"EIDSCA.AP10",
"Essential 8 (1175)",
"NIST CSF 2.0 (PR.AA-05)"
],
"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.",
"executiveText": "Prevents regular employees from creating application registrations that could be used to maintain unauthorized access to company systems. This security measure ensures that only authorized IT personnel can create applications, reducing the risk of persistent security breaches through malicious applications.",
"addedComponent": [],
"label": "Disable App creation by users",
"impact": "Low Impact",
"impactColour": "info",
"addedDate": "2024-03-20",
"powershellEquivalent": "Update-MgPolicyAuthorizationPolicy",
"recommendedBy": ["CIS", "CIPP"]
},
{
"name": "standards.DisableSecurityGroupUsers",
"cat": "Entra (AAD) Standards",
"tag": ["CISA (MS.AAD.20.1v1)", "NIST CSF 2.0 (PR.AA-05)"],
"helpText": "Completely disables the creation of security groups by users. This also breaks the ability to manage groups themselves, or create Teams",
"executiveText": "Restricts the creation of security groups to IT administrators only, preventing employees from creating unauthorized access groups that could bypass security controls. This ensures proper governance of access permissions and maintains centralized control over who can access what resources.",
"addedComponent": [],
"label": "Disable Security Group creation by users",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2022-07-17",
"powershellEquivalent": "Update-MgBetaPolicyAuthorizationPolicy",
"recommendedBy": []
},
{
"name": "standards.LegacyMFACleanup",
"cat": "Entra (AAD) Standards",
"tag": [],
"helpText": "This standard currently does not function and can be safely disabled",
"executiveText": "This standard is currently non-functional and should be disabled. It was previously designed to remove outdated multi-factor authentication configurations in favor of modern security policies.",
"addedComponent": [],
"label": "Remove Legacy MFA if SD or CA is active",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2021-11-16",
"powershellEquivalent": "Set-MsolUser -StrongAuthenticationRequirements $null",
"recommendedBy": []
},
{
"name": "standards.DisableSelfServiceLicenses",
"cat": "Entra (AAD) Standards",
"tag": [],
"helpText": "Note: requires 'Billing Administrator' GDAP role. This standard disables all self service licenses and enables all exclusions",
"executiveText": "Prevents employees from purchasing Microsoft 365 licenses independently, ensuring all software acquisitions go through proper procurement channels. This maintains budget control, prevents unauthorized spending, and ensures compliance with corporate licensing agreements.",
"addedComponent": [
{
"type": "textField",
"name": "standards.DisableSelfServiceLicenses.Exclusions",
"label": "License Ids to exclude from this standard",
"required": false
}
],
"label": "Disable Self Service Licensing",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2021-11-16",
"powershellEquivalent": "Set-MsolCompanySettings -AllowAdHocSubscriptions $false",
"recommendedBy": []
},
{
"name": "standards.DisableGuests",
"cat": "Entra (AAD) Standards",
"tag": [],
"helpText": "Blocks login for guest users that have not logged in for 90 days",
"executiveText": "Automatically disables external guest accounts that haven't been used for 90 days, reducing security risks from dormant accounts while maintaining access for active external collaborators. This helps maintain a clean user directory and reduces potential attack vectors.",
"addedComponent": [],
"label": "Disable Guest accounts that have not logged on for 90 days",
"impact": "Medium Impact",
"impactColour": "warning",
"addedDate": "2022-10-20",
"powershellEquivalent": "Graph API",
"recommendedBy": ["CIS", "CIPP"]
},
{
"name": "standards.OauthConsent",
"cat": "Entra (AAD) Standards",
"tag": [
"CIS M365 5.0 (1.5.1)",
"CISA (MS.AAD.4.2v1)",
"EIDSCA.AP08",
"EIDSCA.AP09",
"Essential 8 (1175)",
"NIST CSF 2.0 (PR.AA-05)"
],
"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.",
"executiveText": "Requires administrative approval before employees can grant applications access to company data, preventing unauthorized data sharing and potential security breaches. This protects against malicious applications while allowing approved business tools to function normally.",
"addedComponent": [
{
"type": "textField",
"name": "standards.OauthConsent.AllowedApps",
"label": "Allowed application IDs, comma separated",
"required": false
}
],
"label": "Require admin consent for applications (Prevent OAuth phishing)",