forked from intuitem/ciso-assistant-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmmc-2.0.yaml
2174 lines (1860 loc) · 84.8 KB
/
cmmc-2.0.yaml
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
urn: urn:intuitem:risk:library:cmmc-2.0
locale: en
ref_id: CMMC-2.0
name: CMMC version 2.0
description: Cybersecurity Maturity Model Certification (CMMC)
copyright: "Copyright 2020, 2021 Carnegie Mellon University and The Johns Hopkins\
\ University Applied\nPhysics Laboratory LLC.\nCopyright 2021 Futures, Inc.\nThis\
\ material is based upon work funded and supported by the Department of Defense\
\ under\nContract No. FA8702-15-D-0002 with Carnegie Mellon University for the operation\
\ of the\nSoftware Engineering Institute, a federally funded research and development\
\ center, and\nunder Contract No. HQ0034-13-D-0003 and Contract No. N00024-13-D-6400\
\ with the Johns\nHopkins University Applied Physics Laboratory LLC, a University\
\ Affiliated Research Center.\nThe view, opinions, and/or findings contained in\
\ this material are those of the author(s) and\nshould not be construed as an official\
\ Government position, policy, or decision, unless\ndesignated by other documentation.\n\
NO WARRANTY. THIS MATERIAL IS FURNISHED ON AN \u201CAS-IS\u201D BASIS. CARNEGIE\
\ MELLON\nUNIVERSITY AND THE JOHNS HOPKINS UNIVERSITY APPLIED PHYSICS LABORATORY\
\ LLC\nMAKE NO WARRANTIES OF ANY KIND, EITHER EXPRESSED OR IMPLIED, AS TO ANY\n\
MATTER INCLUDING, BUT NOT LIMITED TO, WARRANTY OF FITNESS FOR PURPOSE OR\nMERCHANTABILITY,\
\ EXCLUSIVITY, OR RESULTS OBTAINED FROM USE OF THE MATERIAL\nNOR ANY WARRANTY OF\
\ ANY KIND WITH RESPECT TO FREEDOM FROM PATENT,\nTRADEMARK, OR COPYRIGHT INFRINGEMENT.\n\
[DISTRIBUTION STATEMENT A] Approved for public release.\nThis work is licensed to\
\ the public under the Creative Commons Attribution 4.0 International\nLicense."
version: 3
provider: DoD
packager: intuitem
objects:
framework:
urn: urn:intuitem:risk:framework:cmmc-2.0
ref_id: CMMC-2.0
name: CMMC version 2.0
description: Cybersecurity Maturity Model Certification (CMMC)
implementation_groups_definition:
- ref_id: L1
name: Level 1
description: null
- ref_id: L2
name: Level 2
description: null
requirement_nodes:
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
assessable: false
depth: 1
ref_id: AC
name: ACCESS CONTROL
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.1
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L1-3.1.1
name: Authorized Access Control
description: "Limit information system access to authorized users, processes\
\ acting on behalf of authorized users, or devices (including other information\
\ systems).\n\u2022 FAR Clause 52.204-21 b.1.i\n\u2022 NIST SP 800-171 Rev\
\ 2 3.1.1"
implementation_groups:
- L1
question:
question_type: "unique_choice"
question_choices:
- "Yes"
- "No"
- "N/A"
questions:
- urn: "urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.1:question:1"
text: "[a] authorized users are identified"
- urn: "urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.1:question:2"
text: "[b] processes acting on behalf of authorized users are identified"
- urn: "urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.1:question:3"
text: "[c] devices (and other systems) authorized to connect to the system are identified"
- urn: "urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.1:question:4"
text: "[d] system access is limited to authorized users"
- urn: "urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.1:question:5"
text: "[e] system access is limited to processes acting on behalf of authorized users"
- urn: "urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.1:question:6"
text: "[f] system access is limited to authorized devices (including other systems)"
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.2
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L1-3.1.2
name: Transaction & Function Control
description: "Limit information system access to the types of transactions and\
\ functions that authorized users are permitted to execute. \n\u2022 FAR Clause\
\ 52.204-21 b.1.ii\n\u2022 NIST SP 800-171 Rev 2 3.1.2"
annotation: 'Determine if:
[a] the types of transactions and functions that authorized users are permitted
to execute are defined; and
[b] system access is limited to the defined types of transactions and functions
for authorized users.'
implementation_groups:
- L1
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.3
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.3
name: Control CUI Flow
description: "Control the flow of CUI in accordance with approved authorizations.\
\ \n\u2022 NIST SP 800-171 Rev 2 3.1.3"
annotation: 'Determine if:
[a] information flow control policies are defined;
[b] methods and enforcement mechanisms for controlling the flow of CUI are
defined;
[c] designated sources and destinations (e.g., networks, individuals, and
devices) for CUI within the system and between interconnected systems are
identified;
[d] authorizations for controlling the flow of CUI are defined; and
[e] approved authorizations for controlling the flow of CUI are enforced.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.4
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.4
name: Separation of Duties
description: "Separate the duties of individuals to reduce the risk of malevolent\
\ activity without collusion.\n\u2022 NIST SP 800-171 Rev 2 3.1.4\n"
annotation: 'Determine if:
[a] the duties of individuals requiring separation are defined;
[b] responsibilities for duties that require separation are assigned to separate
individuals; and
[c] access privileges that enable individuals to exercise the duties that
require separation are granted to separate individuals.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.5
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.5
name: Least Privilege
description: "Employ the principle of least privilege, including for specific\
\ security functions and privileged accounts.\n\u2022 NIST SP 800-171 Rev\
\ 2 3.1.5"
annotation: 'Determine if:
[a] privileged accounts are identified;
[b] access to privileged accounts is authorized in accordance with the principle
of least privilege;
[c] security functions are identified; and
[d] access to security functions is authorized in accordance with the principle
of least privilege.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.6
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.6
name: Non-Privileged Account Use
description: "Use non-privileged accounts or roles when accessing nonsecurity\
\ functions.\n\u2022 NIST SP 800-171 Rev 2 3.1.6"
annotation: 'Determine if:
[a] nonsecurity functions are identified; and
[b] users are required to use non-privileged accounts or roles when accessing
nonsecurity functions.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.7
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.7
name: Privileged Functions
description: "Prevent non-privileged users from executing privileged functions\
\ and capture the execution of such functions in audit logs.\n\u2022 NIST\
\ SP 800-171 Rev 2 3.1.7"
annotation: 'Determine if:
[a] privileged functions are defined;
[b] non-privileged users are defined;
[c] non-privileged users are prevented from executing privileged functions;
and
[d] the execution of privileged functions is captured in audit logs.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.8
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.8
name: Unsuccessful Logon Attempts
description: "Limit unsuccessful logon attempts. \n\u2022 NIST SP 800-171 Rev\
\ 2 3.1.8 "
annotation: 'Determine if:
[a] the means of limiting unsuccessful logon attempts is defined; and
[b] the defined means of limiting unsuccessful logon attempts is implemented.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.9
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.9
name: Privacy & Security Notices
description: "Provide privacy and security notices consistent with applicable\
\ CUI rules.\n\u2022 NIST SP 800-171 Rev 2 3.1.9"
annotation: 'Determine if:
[a] privacy and security notices required by CUI-specified rules are identified,
consistent, and associated with the specific CUI category; and
[b] privacy and security notices are displayed.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.10
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.10
name: Session Lock
description: "Use session lock with pattern-hiding displays to prevent access\
\ and viewing of data after a period of inactivity. \n\u2022 NIST SP 800-171\
\ Rev 2 3.1.10"
annotation: 'Determine if:
[a] the period of inactivity after which the system initiates a session lock
is defined;
[b] access to the system and viewing of data is prevented by initiating a
session lock after the defined period of inactivity; and
[c] previously visible information is concealed via a pattern-hiding display
after the defined period of inactivity.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.11
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.11
name: Session Termination
description: "Terminate (automatically) a user session after a defined condition.\n\
\u2022 NIST SP 800-171 Rev 2 3.1.11"
annotation: 'Determine if:
[a] conditions requiring a user session to terminate are defined; and
[b] a user session is automatically terminated after any of the defined conditions
occur.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.12
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.12
name: Control Remote Access
description: "Monitor and control remote access sessions.\n\u2022 NIST SP 800-171\
\ Rev 2 3.1.12"
annotation: 'Determine if:
[a] remote access sessions are permitted;
[b] the types of permitted remote access are identified;
[c] remote access sessions are controlled; and
[d] remote access sessions are monitored.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.13
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.13
name: Remote Access Confidentiality
description: "Employ cryptographic mechanisms to protect the confidentiality\
\ of remote access sessions.\n\u2022 NIST SP 800-171 Rev 2 3.1.13"
annotation: 'Determine if:
[a] cryptographic mechanisms to protect the confidentiality of remote access
sessions are identified; and
[b] cryptographic mechanisms to protect the confidentiality of remote access
sessions are implemented.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.14
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.14
name: Remote Access Routing
description: "Route remote access via managed access control points. \n\u2022\
\ NIST SP 800-171 Rev 2 3.1.14"
annotation: 'Determine if:
[a] managed access control points are identified and implemented; and
[b] remote access is routed through managed network access control points.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.15
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.15
name: Privileged Remote Access
description: "Authorize remote execution of privileged commands and remote access\
\ to security-relevant information. \n\u2022 NIST SP 800-171 Rev 2 3.1.15"
annotation: 'Determine if:
[a] privileged commands authorized for remote execution are identified;
[b] security-relevant information authorized to be accessed remotely is identified;
[c] the execution of the identified privileged commands via remote access
is authorized; and
[d] access to the identified security-relevant information via remote access
is authorized.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.16
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.16
name: Wireless Access Authorization
description: "Authorize wireless access prior to allowing such connections.\n\
\u2022 NIST SP 800-171 Rev 2 3.1.16"
annotation: 'Determine if:
[a] wireless access points are identified; and
[b] wireless access is authorized prior to allowing such connections.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.17
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.17
name: Wireless Access Protection
description: "Protect wireless access using authentication and encryption. \n\
\u2022 NIST SP 800-171 Rev 2 3.1.17"
annotation: 'Determine if:
[a] wireless access to the system is protected using authentication; and
[b] wireless access to the system is protected using encryption.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.18
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.18
name: Mobile Device Connection
description: "Control connection of mobile devices.\n\u2022 NIST SP 800-171\
\ Rev 2 3.1.18"
annotation: 'Determine if:
[a] mobile devices that process, store, or transmit CUI are identified;
[b] mobile device connections are authorized; and
[c] mobile device connections are monitored and logged.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.19
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.19
name: Encrypt CUI on Mobile
description: "Encrypt CUI on mobile devices and mobile computing platforms.\
\ \n\u2022 NIST SP 800-171 Rev 2 3.1.19"
annotation: 'Determine if:
[a] mobile devices and mobile computing platforms that process, store, or
transmit CUI are identified; and
[b] encryption is employed to protect CUI on identified mobile devices and
mobile computing platforms.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.20
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L1-3.1.20
name: External Connections
description: "Verify and control/limit connections to and use of external information\
\ systems. \n\u2022 FAR Clause 52.204-21 b.1.iii\n\u2022 NIST SP 800-171 Rev\
\ 2 3.1.20"
annotation: 'Determine if:
[a] connections to external systems are identified;
[b] the use of external systems is identified;
[c] connections to external systems are verified;
[d] the use of external systems is verified;
[e] connections to external systems are controlled/limited; and
[f] the use of external systems is controlled/limited.'
implementation_groups:
- L1
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l2-3.1.21
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L2-3.1.21
name: Portable Storage Use
description: "Limit use of portable storage devices on external systems.\n\u2022\
\ NIST SP 800-171 Rev 2 3.1.21"
annotation: 'Determine if:
[a] the use of portable storage devices containing CUI on external systems
is identified and documented;
[b] limits on the use of portable storage devices containing CUI on external
systems are defined; and
[c] the use of portable storage devices containing CUI on external systems
is limited as defined.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ac.l1-3.1.22
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ac
ref_id: AC.L1-3.1.22
name: Control Public Information
description: "Control information posted or processed on publicly accessible\
\ information systems.\n\u2022 FAR Clause 52.204-21 b.1.iv\n\u2022 NIST SP\
\ 800-171 Rev 2 3.1.22"
annotation: 'Determine if:
[a] individuals authorized to post or process information on publicly accessible
systems are identified;
[b] procedures to ensure FCI is not posted or processed on publicly accessible
systems are identified;
[c] a review process is in place prior to posting of any content to publicly
accessible systems;
[d] content on publicly accessible systems is reviewed to ensure that it does
not include FCI; and
[e] mechanisms are in place to remove and address improper posting of FCI.'
implementation_groups:
- L1
- urn: urn:intuitem:risk:req_node:cmmc-2.0:at
assessable: false
depth: 1
ref_id: AT
name: AWARENESS AND TRAINING
- urn: urn:intuitem:risk:req_node:cmmc-2.0:at.l2-3.2.1
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:at
ref_id: AT.L2-3.2.1
name: Role-Based Risk Awareness
description: "Ensure that managers, systems administrators, and users of organizational\
\ systems are made aware of the security risks associated with their activities\
\ and of the applicable policies, standards, and procedures related to the\
\ security of those systems.\n\u2022 NIST SP 800-171 Rev 2 3.2.1\n"
annotation: 'Determine if:
[a] security risks associated with organizational activities involving CUI
are identified;
[b] policies, standards, and procedures related to the security of the system
are identified;
[c] managers, systems administrators, and users of the system are made aware
of the security risks associated with their activities; and
[d] managers, systems administrators, and users of the system are made aware
of the applicable policies, standards, and procedures related to the security
of the system.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:at.l2-3.2.2
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:at
ref_id: AT.L2-3.2.2
name: Role-Based Training
description: "Ensure that personnel are trained to carry out their assigned\
\ information security-related duties and responsibilities. \n\u2022 NIST\
\ SP 800-171 Rev 2 3.2.2"
annotation: 'Determine if:
[a] information security-related duties, roles, and responsibilities are defined;
[b] information security-related duties, roles, and responsibilities are assigned
to designated personnel; and
[c] personnel are adequately trained to carry out their assigned information
security-related duties, roles, and responsibilities.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:at.l2-3.2.3
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:at
ref_id: AT.L2-3.2.3
name: Insider Threat Awareness
description: "Provide security awareness training on recognizing and reporting\
\ potential indicators of insider threat.\n\u2022 NIST SP 800-171 Rev 2 3.2.3"
annotation: 'Determine if:
[a] potential indicators associated with insider threats are identified; and
[b] security awareness training on recognizing and reporting potential indicators
of insider threat is provided to managers and employees.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au
assessable: false
depth: 1
ref_id: AU
name: AUDIT AND ACCOUNTABILITY
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.1
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.1
name: System Auditing
description: "Create and retain system audit logs and records to the extent\
\ needed to enable the monitoring, analysis, investigation, and reporting\
\ of unlawful or unauthorized system activity. \n\u2022 NIST SP 800-171 Rev\
\ 2 3.3.1"
annotation: 'Determine if:
[a] audit logs needed (i.e., event types to be logged) to enable the monitoring,
analysis, investigation, and reporting of unlawful or unauthorized system
activity are specified;
[b] the content of audit records needed to support monitoring, analysis, investigation,
and reporting of unlawful or unauthorized system activity is defined;
[c] audit records are created (generated);
[d] audit records, once created, contain the defined content;
[e] retention requirements for audit records are defined; and
[f] audit records are retained as defined.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.2
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.2
name: User Accountability
description: "Ensure that the actions of individual system users can be uniquely\
\ traced to those users, so they can be held accountable for their actions.\n\
\u2022 NIST SP 800-171 Rev 2 3.3.2"
annotation: 'Determine if:
[a] the content of the audit records needed to support the ability to uniquely
trace users to their actions is defined; and
[b] audit records, once created, contain the defined content.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.3
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.3
name: Event Review
description: "Review and update logged events.\n\u2022 NIST SP 800-171 Rev 2\
\ 3.3.3"
annotation: 'Determine if:
[a] a process for determining when to review logged events is defined;
[b] event types being logged are reviewed in accordance with the defined review
process; and
[c] event types being logged are updated based on the review.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.4
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.4
name: Audit Failure Alerting
description: "Alert in the event of an audit logging process failure. \n\u2022\
\ NIST SP 800-171 Rev 2 3.3.4"
annotation: 'Determine if:
[a] personnel or roles to be alerted in the event of an audit logging process
failure are identified;
[b] types of audit logging process failures for which alert will be generated
are defined; and
[c] identified personnel or roles are alerted in the event of an audit logging
process failure.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.5
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.5
name: Audit Correlation
description: "Correlate audit record review, analysis, and reporting processes\
\ for investigation and response to indications of unlawful, unauthorized,\
\ suspicious, or unusual activity.\n\u2022 NIST SP 800-171 Rev 2 3.3.5"
annotation: 'Determine if:
[a] audit record review, analysis, and reporting processes for investigation
and response to indications of unlawful, unauthorized, suspicious, or unusual
activity are defined; and
[b] defined audit record review, analysis, and reporting processes are correlated.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.6
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.6
name: Reduction & Reporting
description: "Provide audit record reduction and report generation to support\
\ on-demand analysis and reporting.\n\u2022 NIST SP 800-171 Rev 2 3.3.6"
annotation: 'Determine if:
[a] an audit record reduction capability that supports on-demand analysis
is provided; and
[b] a report generation capability that supports on-demand reporting is provided.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.7
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.7
name: Authoritative Time Source
description: "Provide a system capability that compares and synchronizes internal\
\ system clocks with an authoritative source to generate time stamps for audit\
\ records.\n\u2022 NIST SP 800-171 Rev 2 3.3.7"
annotation: 'Determine if:
[a] internal system clocks are used to generate time stamps for audit records;
[b] an authoritative source with which to compare and synchronize internal
system clocks is specified; and
[c] internal system clocks used to generate time stamps for audit records
are compared to and synchronized with the specified authoritative time source.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.8
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.8
name: Audit Protection
description: "Protect audit information\_and audit logging tools from unauthorized\
\ access, modification, and deletion.\n\u2022 NIST SP 800-171 Rev 2 3.3.8"
annotation: 'Determine if:
[a] audit information is protected from unauthorized access;
[b] audit information is protected from unauthorized modification;
[c] audit information is protected from unauthorized deletion;
[d] audit logging tools are protected from unauthorized access;
[e] audit logging tools are protected from unauthorized modification; and
[f] audit logging tools are protected from unauthorized deletion.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:au.l2-3.3.9
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:au
ref_id: AU.L2-3.3.9
name: Audit Management
description: "Limit management of audit logging functionality to a subset of\
\ privileged users.\_\n\u2022 NIST SP 800-171 Rev 2 3.3.9"
annotation: 'Determine if:
[a] a subset of privileged users granted access to manage audit logging functionality
is defined; and
[b] management of audit logging functionality is limited to the defined subset
of privileged users.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
assessable: false
depth: 1
ref_id: CM
name: CONFIGURATION MANAGEMENT
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.1
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.1
name: System Baselining
description: "Establish and maintain baseline configurations and inventories\
\ of organizational systems (including hardware, software, firmware, and documentation)\
\ throughout the respective system development life cycles.\n\u2022 NIST SP\
\ 800-171 Rev 2 3.4.1"
annotation: 'Determine if:
[a] a baseline configuration is established;
[b] the baseline configuration includes hardware, software, firmware, and
documentation;
[c] the baseline configuration is maintained (reviewed and updated) throughout
the system development life cycle;
[d] a system inventory is established;
[e] the system inventory includes hardware, software, firmware, and documentation;
and
[f] the inventory is maintained (reviewed and updated) throughout the system
development life cycle.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.2
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.2
name: Security Configuration Enforcement
description: "Establish and enforce security configuration settings for information\
\ technology products employed in organizational systems.\n\u2022 NIST SP\
\ 800-171 Rev 2 3.4.2"
annotation: 'Determine if:
[a] security configuration settings for information technology products employed
in the system are established and included in the baseline configuration;
and
[b] security configuration settings for information technology products employed
in the system are enforced.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.3
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.3
name: System Change Management
description: "Track, review, approve or disapprove, and log changes to organizational\
\ systems. \n\u2022 NIST SP 800-171 Rev 2 3.4.3"
annotation: 'Determine if:
[a] changes to the system are tracked;
[b] changes to the system are reviewed;
[c] changes to the system are approved or disapproved; and
[d] changes to the system are logged.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.4
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.4
name: Security Impact Analysis
description: "Analyze the security impact of changes prior to implementation.\
\ \n\u2022 NIST SP 800-171 Rev 2 3.4.4"
annotation: 'Determine if:
[a] the security impact of changes to the system is analyzed prior to implementation.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.5
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.5
name: Access Restrictions for Change
description: "Define, document, approve, and enforce physical and logical access\
\ restrictions associated with changes to organizational systems.\n\u2022\
\ NIST SP 800-171 Rev 2 3.4.5"
annotation: 'Determine if:
[a] physical access restrictions associated with changes to the system are
defined;
[b] physical access restrictions associated with changes to the system are
documented;
[c] physical access restrictions associated with changes to the system are
approved;
[d] physical access restrictions associated with changes to the system are
enforced;
[e] logical access restrictions associated with changes to the system are
defined;
[f] logical access restrictions associated with changes to the system are
documented;
[g] logical access restrictions associated with changes to the system are
approved; and
[h] logical access restrictions associated with changes to the system are
enforced.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.6
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.6
name: Least Functionality
description: "Employ the principle of least functionality by configuring organizational\
\ systems to provide only essential capabilities. \n\u2022 NIST SP 800-171\
\ Rev 2 3.4.6"
annotation: 'Determine if:
[a] essential system capabilities are defined based on the principle of least
functionality; and
[b] the system is configured to provide only the defined essential capabilities.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.7
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.7
name: Nonessential Functionality
description: "Restrict, disable, or prevent the use of nonessential programs,\
\ functions, ports, protocols, and services. \n\u2022 NIST SP 800-171 Rev\
\ 2 3.4.7"
annotation: 'Determine if:
[a] essential programs are defined;
[b] the use of nonessential programs is defined;
[c] the use of nonessential programs is restricted, disabled, or prevented
as defined;
[d] essential functions are defined;
[e] the use of nonessential functions is defined;
[f] the use of nonessential functions is restricted, disabled, or prevented
as defined;
[g] essential ports are defined;
[h] the use of nonessential ports is defined;
[i] the use of nonessential ports is restricted, disabled, or prevented as
defined;
[j] essential protocols are defined;
[k] the use of nonessential protocols is defined;
[l] the use of nonessential protocols is restricted, disabled, or prevented
as defined;
[m] essential services are defined;
[n] the use of nonessential services is defined; and
[o] the use of nonessential services is restricted, disabled, or prevented
as defined.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.8
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.8
name: Application Execution Policy
description: "Apply deny-by-exception (blacklisting) policy to prevent the use\
\ of unauthorized software or deny-all, permit-by-exception (whitelisting)\
\ policy to allow the execution of authorized software. \n\u2022 NIST SP 800-171\
\ Rev 2 3.4.8"
annotation: 'Determine if:
[a] a policy specifying whether whitelisting or blacklisting is to be implemented
is specified;
[b] the software allowed to execute under whitelisting or denied use under
blacklisting is specified; and
[c] whitelisting to allow the execution of authorized software or blacklisting
to prevent the use of unauthorized software is implemented as specified.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:cm.l2-3.4.9
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:cm
ref_id: CM.L2-3.4.9
name: User-Installed Software
description: "Control and monitor user-installed software.\n\u2022 NIST SP 800-171\
\ Rev 2 3.4.9"
annotation: 'Determine if:
[a] a policy for controlling the installation of software by users is established;
[b] installation of software by users is controlled based on the established
policy; and
[c] installation of software by users is monitored.'
implementation_groups:
- L2
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ia
assessable: false
depth: 1
ref_id: IA
name: IDENTIFICATION AND AUTHENTICATION
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ia.l1-3.5.1
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ia
ref_id: IA.L1-3.5.1
name: Identification
description: "Identify information system users, processes acting on behalf\
\ of users, or devices.\n\u2022 FAR Clause 52.204-21 b.1.v\n\u2022 NIST SP\
\ 800-171 Rev 2 3.5.1\n"
annotation: 'Determine if:
[a] system users are identified;
[b] processes acting on behalf of users are identified; and
[c] devices accessing the system are identified.'
implementation_groups:
- L1
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ia.l1-3.5.2
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ia
ref_id: IA.L1-3.5.2
name: Authentication
description: "Authenticate (or verify) the identities of those users, processes,\
\ or devices, as a prerequisite to allowing access to organizational information\
\ systems.\n\u2022 FAR Clause 52.204-21 b.1.vi\n\u2022 NIST SP 800-171 Rev\
\ 2 3.5.2"
annotation: 'Determine if:
[a] the identity of each user is authenticated or verified as a prerequisite
to system access;
[b] the identity of each process acting on behalf of a user is authenticated
or verified as a prerequisite to system access; and
[c] the identity of each device accessing or connecting to the system is authenticated
or verified as a prerequisite to system access.'
implementation_groups:
- L1
- urn: urn:intuitem:risk:req_node:cmmc-2.0:ia.l2-3.5.3
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:cmmc-2.0:ia
ref_id: IA.L2-3.5.3
name: Multifactor Authentication
description: "Use multifactor authentication for local and network access to\
\ privileged accounts and for network access to non-privileged accounts. \n\
\u2022 NIST SP 800-171 Rev 2 3.5.3"
annotation: 'Determine if: