-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathmetadata.json
More file actions
2111 lines (2111 loc) · 77.8 KB
/
Copy pathmetadata.json
File metadata and controls
2111 lines (2111 loc) · 77.8 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
{
"framework": "cis",
"benchmark": "CIS Microsoft 365 Foundations",
"slug": "microsoft-365-foundations",
"version": "v6.0.0",
"release_date": "2025-03-18",
"platform": "m365",
"source_url": "https://www.cisecurity.org/benchmark/microsoft_365",
"controls": [
{
"control_id": "1.1.1",
"title": "Ensure Administrative accounts are cloud-only",
"description": "Administrative accounts should not be synced from on-premises Active Directory.",
"severity": "critical",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.roles.cloud_only_admins",
"policy_file": "1.1.1_admin_cloud_only.rego",
"requires_permissions": ["User.Read.All", "RoleManagement.Read.Directory"],
"notes": null
},
{
"control_id": "1.1.2",
"title": "Ensure two emergency access accounts have been defined",
"description": "Emergency access accounts provide access when normal administrative accounts are unavailable.",
"severity": "high",
"service": "EntraID",
"level": "L1",
"is_manual": true,
"benchmark_audit_type": "Manual",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Organizational policy; requires human designation of accounts"
},
{
"control_id": "1.1.3",
"title": "Ensure that between two and four global admins are designated",
"description": "Maintain between 2-4 global administrators to ensure operational continuity while minimizing attack surface.",
"severity": "high",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.roles.privileged_roles",
"policy_file": "1.1.3_global_admin_count.rego",
"requires_permissions": ["RoleManagement.Read.Directory", "User.Read.All"],
"notes": null
},
{
"control_id": "1.1.4",
"title": "Ensure administrative accounts use licenses with a reduced application footprint",
"description": "Administrative accounts should have minimal license assignments.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Need to check user license assignments"
},
{
"control_id": "1.2.1",
"title": "Ensure that only organizationally managed/approved public groups exist",
"description": "Public groups should be reviewed and managed by the organization.",
"severity": "medium",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.groups.groups",
"policy_file": "1.2.1_no_unmanaged_public_groups.rego",
"requires_permissions": ["Group.Read.All"],
"notes": "Collector exists but control logic not defined"
},
{
"control_id": "1.2.2",
"title": "Ensure sign-in to shared mailboxes is blocked",
"description": "Shared mailboxes should not allow direct sign-in.",
"severity": "medium",
"service": "Exchange",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": "exchange.mailbox.mailboxes",
"policy_file": null,
"requires_permissions": ["Exchange.Manage"],
"notes": "Collector exists but control logic not defined"
},
{
"control_id": "1.3.1",
"title": "Ensure the 'Password expiration policy' is set to 'Set passwords to never expire (recommended)'",
"description": "Configure password policies to never expire when MFA is enabled.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.domains.password_policy",
"policy_file": "1.3.1_password_expiration.rego",
"requires_permissions": ["Domain.Read.All"],
"notes": null
},
{
"control_id": "1.3.2",
"title": "Ensure 'Idle session timeout' is set to '3 hours (or less)' for unmanaged devices",
"description": "Configure idle session timeout for unmanaged devices.",
"severity": "medium",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "deferred",
"data_collector_id": "entra.conditional_access.policies",
"policy_file": null,
"requires_permissions": ["Policy.Read.All"],
"notes": "Requires CA policy coverage verification"
},
{
"control_id": "1.3.3",
"title": "Ensure 'External sharing' of calendars is not available",
"description": "Disable external calendar sharing.",
"severity": "medium",
"service": "Exchange",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": "exchange.organization.sharing_policy",
"policy_file": null,
"requires_permissions": ["Exchange.Manage"],
"notes": "Collector exists but control logic not defined"
},
{
"control_id": "1.3.4",
"title": "Ensure 'User owned apps and services' is restricted",
"description": "Restrict user ability to consent to apps and services.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.applications.apps_and_services_settings",
"policy_file": "1.3.4_user_owned_apps_restricted.rego",
"requires_permissions": ["OrgSettings-AppsAndServices.Read.All"],
"notes": null
},
{
"control_id": "1.3.5",
"title": "Ensure internal phishing protection for Forms is enabled",
"description": "Enable internal phishing protection in Microsoft Forms.",
"severity": "medium",
"service": "Forms",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.applications.forms_settings",
"policy_file": "1.3.5_forms_internal_phishing_protection.rego",
"requires_permissions": ["OrgSettings-Forms.Read.All"],
"notes": null
},
{
"control_id": "1.3.6",
"title": "Ensure the customer lockbox feature is enabled",
"description": "Enable Customer Lockbox for Microsoft support access.",
"severity": "medium",
"service": "Exchange",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": "exchange.organization.organization_config",
"policy_file": null,
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "1.3.7",
"title": "Ensure 'third-party storage services' are restricted in 'Microsoft 365 on the web'",
"description": "Restrict third-party storage providers in Office web apps.",
"severity": "medium",
"service": "Exchange",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": "exchange.organization.owa_mailbox_policy",
"policy_file": null,
"requires_permissions": ["Exchange.Manage"],
"notes": "Collector exists but control logic not defined"
},
{
"control_id": "1.3.8",
"title": "Ensure that Sways cannot be shared with people outside of your organization",
"description": "Restrict external sharing of Sway content.",
"severity": "medium",
"service": "Sway",
"level": "L2",
"is_manual": true,
"benchmark_audit_type": "Manual",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "No API available for Sway settings"
},
{
"control_id": "1.3.9",
"title": "Ensure shared bookings pages are restricted to select users",
"description": "Restrict who can create and manage shared bookings pages.",
"severity": "medium",
"service": "Bookings",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Need Bookings API collector"
},
{
"control_id": "2.1.1",
"title": "Ensure Safe Links for Office Applications is Enabled",
"description": "Enable Safe Links to protect users from malicious URLs.",
"severity": "high",
"service": "Defender",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.safe_links_policy",
"policy_file": "2.1.1_SafeLinks_OfficeApplications_Enabled.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.2",
"title": "Ensure the Common Attachment Types Filter is enabled",
"description": "Block common malicious attachment types.",
"severity": "high",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.malware_filter_policy",
"policy_file": "2.1.2_Common_AttachmentTypes_Filter_Enabled.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.3",
"title": "Ensure notifications for internal users sending malware is Enabled",
"description": "Notify administrators when internal users send malware.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.malware_filter_policy",
"policy_file": "2.1.3_Notifications_InternalUsers_sendingMalware_Enabled.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.4",
"title": "Ensure Safe Attachments policy is enabled",
"description": "Enable Safe Attachments to scan attachments for malware.",
"severity": "high",
"service": "Defender",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.safe_attachment_policy",
"policy_file": "2.1.4_Safe_AttachementsPolicy_Enabled.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.5",
"title": "Ensure Safe Attachments for SharePoint, OneDrive, and Microsoft Teams is Enabled",
"description": "Enable ATP protection for files in SharePoint, OneDrive, and Teams.",
"severity": "high",
"service": "Defender",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.atp_policy_o365",
"policy_file": "2.1.5_Safe_Attachments_SharePoint_OneDrive_MSTeams_Enabled.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.6",
"title": "Ensure Exchange Online Spam Policies are set to notify administrators",
"description": "Configure spam policies to notify administrators.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.hosted_outbound_spam_filter",
"policy_file": "2.1.6_Exchange_OnlineSpam_Policies_Notify_Administrators.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.7",
"title": "Ensure that an anti-phishing policy has been created",
"description": "Create and configure anti-phishing policies.",
"severity": "high",
"service": "Defender",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.anti_phish_policy",
"policy_file": "2.1.7_AntiPhishing_Policy_is_created.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.8",
"title": "Ensure that SPF records are published for all Exchange Domains",
"description": "Publish SPF records to prevent email spoofing.",
"severity": "high",
"service": "Exchange",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.dns.dns_security_records",
"policy_file": "2.1.8_SPF_records_published.rego",
"requires_permissions": ["Domain.Read.All"],
"notes": "DNS lookup for SPF TXT records"
},
{
"control_id": "2.1.9",
"title": "Ensure that DKIM is enabled for all Exchange Online Domains",
"description": "Enable DKIM signing for email authentication.",
"severity": "high",
"service": "Exchange",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.authentication.dkim_signing_config",
"policy_file": "2.1.9_DKIM_is_enabled.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.10",
"title": "Ensure DMARC Records for all Exchange Online domains are published",
"description": "Publish DMARC records for email authentication.",
"severity": "high",
"service": "Exchange",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.dns.dns_security_records",
"policy_file": "2.1.10_DMARC_records_published.rego",
"requires_permissions": ["Domain.Read.All"],
"notes": "DNS lookup for DMARC TXT records"
},
{
"control_id": "2.1.11",
"title": "Ensure comprehensive attachment filtering is applied",
"description": "Configure comprehensive attachment type filtering.",
"severity": "medium",
"service": "Defender",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.malware_filter_policy",
"policy_file": "2.1.11_Comprehensive_Attachment_Filtering_Applied.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.12",
"title": "Ensure the connection filter IP allow list is not used",
"description": "Do not whitelist IPs in connection filter.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.hosted_connection_filter",
"policy_file": "2.1.12_ConnectionFilter_IPAllowList_not_used.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.13",
"title": "Ensure the connection filter safe list is off",
"description": "Disable connection filter safe list.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.hosted_connection_filter",
"policy_file": "2.1.13_Connection_Filter_SafeList_Off.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.14",
"title": "Ensure inbound anti-spam policies do not contain allowed domains",
"description": "Do not whitelist domains in anti-spam policies.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.hosted_content_filter",
"policy_file": "2.1.14_Inbound_AntiSpam_Policies_DoNot_AllowedDomains.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.1.15",
"title": "Ensure outbound anti-spam message limits are in place",
"description": "Configure outbound spam message limits.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.hosted_outbound_spam_filter",
"policy_file": "2.1.15_Outbound_AntiSpam_MessageLimits_InPlace.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "2.2.1",
"title": "Ensure emergency access account activity is monitored",
"description": "Monitor emergency access account sign-ins and usage.",
"severity": "high",
"service": "EntraID",
"level": "L1",
"is_manual": true,
"benchmark_audit_type": "Manual",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Organizational policy; requires defining which accounts to monitor"
},
{
"control_id": "2.4.1",
"title": "Ensure Priority account protection is enabled and configured",
"description": "Enable and configure priority account protection.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Need Priority Account Protection collector"
},
{
"control_id": "2.4.2",
"title": "Ensure Priority accounts have 'Strict protection' presets applied",
"description": "Apply strict protection presets to priority accounts.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Need Priority Account Protection collector"
},
{
"control_id": "2.4.3",
"title": "Ensure Microsoft Defender for Cloud Apps is enabled and configured",
"description": "Enable and configure Microsoft Defender for Cloud Apps.",
"severity": "medium",
"service": "Defender",
"level": "L2",
"is_manual": true,
"benchmark_audit_type": "Manual",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "MCAS configuration requires portal verification"
},
{
"control_id": "2.4.4",
"title": "Ensure Zero-hour auto purge for Microsoft Teams is on",
"description": "Enable ZAP for Teams to remove malicious content.",
"severity": "medium",
"service": "Defender",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "exchange.protection.teams_protection_policy",
"policy_file": "2.4.4_Zero_hour_AutoPurge_MSTeams_is_On.rego",
"requires_permissions": ["Exchange.Manage"],
"notes": null
},
{
"control_id": "3.1.1",
"title": "Ensure Microsoft 365 audit log search is Enabled",
"description": "Enable unified audit log search.",
"severity": "high",
"service": "Compliance",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": "exchange.organization.organization_config",
"policy_file": null,
"requires_permissions": ["Exchange.Manage"],
"notes": "Check AuditDisabled = False"
},
{
"control_id": "3.2.1",
"title": "Ensure DLP policies are enabled",
"description": "Enable Data Loss Prevention policies.",
"severity": "high",
"service": "Compliance",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "blocked",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "IPPSSession requires certificate auth"
},
{
"control_id": "3.2.2",
"title": "Ensure DLP policies are enabled for Microsoft Teams",
"description": "Enable DLP policies for Teams.",
"severity": "high",
"service": "Compliance",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "blocked",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "IPPSSession requires certificate auth"
},
{
"control_id": "3.3.1",
"title": "Ensure Information Protection sensitivity label policies are published",
"description": "Publish sensitivity label policies.",
"severity": "high",
"service": "Compliance",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "blocked",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "IPPSSession requires certificate auth"
},
{
"control_id": "4.1",
"title": "Ensure devices without a compliance policy are marked 'not compliant'",
"description": "Mark devices without compliance policy as non-compliant.",
"severity": "medium",
"service": "Intune",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.devices.device_management_settings",
"policy_file": "4.1_mark_unmanaged_devices_not_compliant.rego",
"requires_permissions": ["DeviceManagementConfiguration.Read.All"],
"notes": "Collector exists but control logic not defined"
},
{
"control_id": "4.2",
"title": "Ensure device enrollment for personally owned devices is blocked by default",
"description": "Block personal device enrollment by default.",
"severity": "medium",
"service": "Intune",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.devices.enrollment_restrictions",
"policy_file": "4.2_block_personal_device_enrollment.rego",
"requires_permissions": ["DeviceManagementConfiguration.Read.All"],
"notes": null
},
{
"control_id": "5.1.2.1",
"title": "Ensure 'Per-user MFA' is disabled",
"description": "Disable per-user MFA in favor of Conditional Access.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": true,
"benchmark_audit_type": "Automated",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Only available in beta API; not stable"
},
{
"control_id": "5.1.2.2",
"title": "Ensure third party integrated applications are not allowed",
"description": "Block third-party application registration.",
"severity": "medium",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.authorization_policy",
"policy_file": "5.1.2.2_block_third_party_integrated_apps.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": "Check allowedToCreateApps"
},
{
"control_id": "5.1.2.3",
"title": "Ensure 'Restrict non-admin users from creating tenants' is set to 'Yes'",
"description": "Prevent non-admin users from creating tenants.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.authorization_policy",
"policy_file": "5.1.2.3_restrict_tenant_creation.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": "Check allowedToCreateTenants"
},
{
"control_id": "5.1.2.4",
"title": "Ensure access to the Entra admin center is restricted",
"description": "Restrict access to Entra admin center.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": true,
"benchmark_audit_type": "Manual",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Only available via internal Azure API"
},
{
"control_id": "5.1.2.5",
"title": "Ensure the option to remain signed in is hidden",
"description": "Hide the 'Stay signed in' option.",
"severity": "low",
"service": "EntraID",
"level": "L2",
"is_manual": true,
"benchmark_audit_type": "Manual",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Setting not exposed via Graph API"
},
{
"control_id": "5.1.2.6",
"title": "Ensure 'LinkedIn account connections' is disabled",
"description": "Disable LinkedIn account connections.",
"severity": "low",
"service": "EntraID",
"level": "L2",
"is_manual": true,
"benchmark_audit_type": "Manual",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Only available via internal Azure API"
},
{
"control_id": "5.1.3.1",
"title": "Ensure a dynamic group for guest users is created",
"description": "Create a dynamic group to manage guest users.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.groups.groups",
"policy_file": "5.1.3.1_dynamic_guest_group_exists.rego",
"requires_permissions": ["Group.Read.All"],
"notes": "Collector exists but control logic not defined"
},
{
"control_id": "5.1.3.2",
"title": "Ensure users cannot create security groups",
"description": "Prevent users from creating security groups.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.authorization_policy",
"policy_file": "5.1.3.2_block_security_group_creation.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": "Check allowedToCreateSecurityGroups"
},
{
"control_id": "5.1.4.1",
"title": "Ensure the ability to join devices to Entra is restricted",
"description": "Restrict device join to authorized users.",
"severity": "medium",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.devices.device_registration_policy",
"policy_file": "5.1.4.1_restrict_device_join.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": null
},
{
"control_id": "5.1.4.2",
"title": "Ensure the maximum number of devices per user is limited",
"description": "Limit devices a user can register.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.devices.device_registration_policy",
"policy_file": "5.1.4.2_limit_device_registration_quota.rego",
"requires_permissions": ["Policy.Read.DeviceConfiguration"],
"notes": "CIS v6.0.0 requires userDeviceQuota to be set to 20 or less. A value of 0 is treated as unlimited and is non-compliant."
},
{
"control_id": "5.1.4.3",
"title": "Ensure the GA role is not added as a local administrator during Entra join",
"description": "Do not add Global Admin as local admin on joined devices.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.devices.device_registration_policy",
"policy_file": "5.1.4.3_ga_not_local_admin_on_join.rego",
"requires_permissions": ["Policy.Read.DeviceConfiguration"],
"notes": "Uses azureADJoin.localAdministratorsConfiguration.enableGlobalAdmins from /policies/deviceRegistrationPolicy (beta). Field may be absent on older tenants; policy returns non-compliant with an explanatory message in that case."
},
{
"control_id": "5.1.4.4",
"title": "Ensure local administrator assignment is limited during Entra join",
"description": "Limit local administrator assignment on joined devices.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.devices.device_registration_policy",
"policy_file": "5.1.4.4_limit_local_admin_on_join.rego",
"requires_permissions": ["Policy.Read.DeviceConfiguration"],
"notes": "Uses azureADJoin.localAdministratorsConfiguration.registeringUsers from /policies/deviceRegistrationPolicy (beta). Compliant when value is notAllowed."
},
{
"control_id": "5.1.4.5",
"title": "Ensure Local Administrator Password Solution is enabled",
"description": "Enable LAPS for local admin password management.",
"severity": "high",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "not_started",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Need LAPS configuration collector"
},
{
"control_id": "5.1.4.6",
"title": "Ensure users are restricted from recovering BitLocker keys",
"description": "Restrict BitLocker key recovery to admins.",
"severity": "medium",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.authorization_policy",
"policy_file": "5.1.4.6_restrict_bitlocker_key_recovery.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": "Check allowedToReadBitlockerKeysForOwnedDevice"
},
{
"control_id": "5.1.5.1",
"title": "Ensure user consent to apps accessing company data on their behalf is not allowed",
"description": "Block user consent to apps.",
"severity": "high",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.authorization_policy",
"policy_file": "5.1.5.1_block_user_app_consent.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": null
},
{
"control_id": "5.1.5.2",
"title": "Ensure the admin consent workflow is enabled",
"description": "Enable admin consent workflow for apps.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.admin_consent_request_policy",
"policy_file": "5.1.5.2_admin_consent_workflow_enabled.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": null
},
{
"control_id": "5.1.6.1",
"title": "Ensure that collaboration invitations are sent to allowed domains only",
"description": "Restrict B2B invitations to allowed domains.",
"severity": "medium",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.b2b_policy",
"policy_file": "5.1.6.1_restrict_collaboration_invite_domains.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": null
},
{
"control_id": "5.1.6.2",
"title": "Ensure that guest user access is restricted",
"description": "Restrict guest user access permissions.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.authorization_policy",
"policy_file": "5.1.6.2_restrict_guest_user_access.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": "Check guestUserRoleId"
},
{
"control_id": "5.1.6.3",
"title": "Ensure guest user invitations are limited to the Guest Inviter role",
"description": "Limit who can invite guest users.",
"severity": "medium",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.policies.authorization_policy",
"policy_file": "5.1.6.3_limit_guest_invitations.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": "Check allowInvitesFrom"
},
{
"control_id": "5.1.8.1",
"title": "Ensure that password hash sync is enabled for hybrid deployments",
"description": "Enable password hash sync for hybrid identity.",
"severity": "high",
"service": "EntraID",
"level": "L1",
"is_manual": true,
"benchmark_audit_type": "Manual",
"automation_status": "manual",
"data_collector_id": null,
"policy_file": null,
"requires_permissions": null,
"notes": "Requires on-premises AD Connect verification"
},
{
"control_id": "5.2.2.1",
"title": "Ensure multifactor authentication is enabled for all users in administrative roles",
"description": "Require MFA for all administrative roles.",
"severity": "critical",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "deferred",
"data_collector_id": "entra.conditional_access.policies",
"policy_file": null,
"requires_permissions": ["Policy.Read.All"],
"notes": "Requires verification of all 15 admin roles"
},
{
"control_id": "5.2.2.2",
"title": "Ensure multifactor authentication is enabled for all users",
"description": "Require MFA for all users.",
"severity": "critical",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "deferred",
"data_collector_id": "entra.conditional_access.policies",
"policy_file": null,
"requires_permissions": ["Policy.Read.All"],
"notes": "Requires verification of exclusions"
},
{
"control_id": "5.2.2.3",
"title": "Enable Conditional Access policies to block legacy authentication",
"description": "Block legacy authentication protocols.",
"severity": "high",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "ready",
"data_collector_id": "entra.conditional_access.legacy_auth_block",
"policy_file": "5.2.2.3_block_legacy_auth.rego",
"requires_permissions": ["Policy.Read.All"],
"notes": null
},
{
"control_id": "5.2.2.4",
"title": "Ensure Sign-in frequency is enabled and browser sessions are not persistent for Administrative users",
"description": "Configure sign-in frequency for administrators.",
"severity": "medium",
"service": "EntraID",
"level": "L1",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "deferred",
"data_collector_id": "entra.conditional_access.policies",
"policy_file": null,
"requires_permissions": ["Policy.Read.All"],
"notes": "Requires admin role verification"
},
{
"control_id": "5.2.2.5",
"title": "Ensure 'Phishing-resistant MFA strength' is required for Administrators",
"description": "Require phishing-resistant MFA for administrators.",
"severity": "high",
"service": "EntraID",
"level": "L2",
"is_manual": false,
"benchmark_audit_type": "Automated",
"automation_status": "deferred",
"data_collector_id": "entra.conditional_access.policies",
"policy_file": null,
"requires_permissions": ["Policy.Read.All"],
"notes": "Requires admin role verification"
},
{