-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerged_cnssi_1253.json
More file actions
executable file
·2462 lines (2462 loc) · 87.1 KB
/
Copy pathmerged_cnssi_1253.json
File metadata and controls
executable file
·2462 lines (2462 loc) · 87.1 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
{
"AC-1": {
"control_text": "a. [Assignment: organization-defined personnel or roles] b.1. [Assignment: organization-defined frequency] b.2. [Assignment: organization-defined frequency]",
"defined_value": "a. Not appropriate to define at the CNSS level for all organizations operating NSS. b.1. At least annually if not otherwise defined in formal organizational policy b.2. At least annually if not otherwise defined in formal organizational policy",
"selected": true
},
"AC-2": {
"control_text": "a. [Assignment: organization-defined information system account types] e. [Assignment: organization-defined personnel or roles] f. [Assignment: organization-defined procedures or conditions] j. [Assignment: organization-defined frequency]",
"defined_value": "a. Not appropriate to define at the CNSS level for all NSS. e. Not appropriate to define at the CNSS level for all NSS. f. Not appropriate to define at the CNSS level for all NSS. j. At least annually if not otherwise defined in formal organizational policy.",
"selected": true
},
"AC-2(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-2(2)": {
"control_text": "[Selection: removes; disables] [Assignment: organization-defined time period for each type of account]",
"defined_value": "Disables Not to exceed 72 hours.",
"selected": true
},
"AC-2(3)": {
"control_text": "[Assignment: organization-defined time period].",
"defined_value": "Not to exceed 90 days.",
"selected": true
},
"AC-2(4)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-2(5)": {
"control_text": "[Assignment: organization-defined time-period of expected inactivity or description of when to log out]",
"defined_value": "At the end of the users standard work period unless otherwise defined in formal organizational policy.",
"selected": true
},
"AC-2(7)": {
"control_text": "(c) [Assignment: organization-defined actions",
"defined_value": "(c) Disables (or revokes) privileged user account.",
"selected": true
},
"AC-2(9)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-2(10)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-2(11)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-2(12)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-2(13)": {
"control_text": "[Assignment: organization-defined time period]",
"defined_value": "30 minutes unless otherwise defined in formal organizational policy.",
"selected": true
},
"AC-3": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-3(4)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-4": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-5": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-6": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-6(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-6(2)": {
"control_text": "[Assignment: organization-defined security functions or security-relevant information]",
"defined_value": "Privileged functions.",
"selected": true
},
"AC-6(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-6(5)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-6(7)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-6(8)": {
"control_text": "[Assignment: organization-defined software]",
"defined_value": "All",
"selected": true
},
"AC-6(9)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-6(10)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-7": {
"control_text": "a. [Assignment: organization-defined number] [Assignment: organization-defined time period] b. [Selection: locks the account/node for an [Assignment: organization-defined time period] [Assignment: organization-defined delay algorithm]]",
"defined_value": "3 15 minutes b. locks the account/node for at least 15 minutes, or until unlocked by an administrator. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"AC-7(2)": {
"control_text": "[Assignment: organization-defined mobile devices] [Assignment: organization-defined purging/wiping requirements/techniques] [Assignment: organization-defined number]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS. Not appropriate to define at the CNSS level for all NSS. 10",
"selected": false
},
"AC-8": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-9(3)": {
"control_text": "[Assignment: organization-defined security- related characteristics/parameters of the user’s account] [Assignment: organization-defined time period]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS. Since last successful logon",
"selected": false
},
"AC-10": {
"control_text": "[Assignment: organization-defined account and/or account type] [Assignment: organization-defined number]",
"defined_value": "Non-Privileged Privileged maximum of 3 maximum of 3 sessions sessions",
"selected": true
},
"AC-11": {
"control_text": "a. [Assignment: organization-defined time period]",
"defined_value": "Not to exceed 30 minutes",
"selected": true
},
"AC-11(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-12": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-12(1)": {
"control_text": "(a) [Assignment: organization-defined information resources]",
"defined_value": "(a) All",
"selected": true
},
"AC-14": {
"control_text": "a. [Assignment: organization-defined user actions]",
"defined_value": "a. No user actions",
"selected": true
},
"AC-16": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-16(6)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-17": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-17(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-17(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-17(4)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-17(6)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-17(9)": {
"control_text": "[Assignment: organization-defined time period]",
"defined_value": "Low confidentiality or integrity impact: ...30 minutes Moderate confidentiality or integrity impact: ...20 minutes High confidentiality or integrity impact: ...10 minutes",
"selected": true
},
"AC-18": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-18(1)": {
"control_text": "[Selection (one or more): users; devices]",
"defined_value": "Both users and devices as appropriate. See supplemental guidance. Supplemental Guidance: devices to wireless networks (e.g., Wi-Fi) and users to enterprise services.",
"selected": true
},
"AC-18(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-18(4)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-18(5)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-19": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-19(5)": {
"control_text": "[Selection: full-device encryption; container encryption] [Assignment: organization-defined mobile devices]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS. All mobile devices authorized to connect to the organization's ISs.",
"selected": true
},
"AC-20": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-20(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-20(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-20(3)": {
"control_text": "[Selection: restricts; prohibits]",
"defined_value": "Restricts",
"selected": true
},
"AC-21": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AC-22": {
"control_text": "d. [Assignment: organization-defined frequency]",
"defined_value": "d. Quarterly or as new information is posted.",
"selected": true
},
"AC-23": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AR-1": {
"control_text": "c. [Assignment: organization-defined allocation of budget and staffing] f. [Assignment: organization-defined frequency, at least biennially]",
"defined_value": "c. Not appropriate to define at the CNSS level for all NSS. f. At least biennially if not otherwise defined in formal organizational policy.",
"selected": false
},
"AR-4": {
"control_text": "[Assignment: organization-defined frequency]",
"defined_value": "Continuously.",
"selected": false
},
"AR-5": {
"control_text": "b. [Assignment: organization-defined frequency, at least annually] [Assignment: organization-defined frequency, at least annually] c. [Assignment: organization-defined frequency, at least annually]",
"defined_value": "b. At least annually if not otherwise defined in formal organizational policy. At least annually if not otherwise defined in formal organizational policy. c. At least annually if not otherwise defined in formal organizational policy.",
"selected": false
},
"AT-1": {
"control_text": "a. [Assignment: organization-defined personnel or roles] b.1. [Assignment: organization-defined frequency] b.2. [Assignment: organization-defined frequency]",
"defined_value": "a. All personnel b.1. At least annually if not otherwise defined in formal organizational policy. b.2. At least annually if not otherwise defined in formal organizational policy.",
"selected": true
},
"AT-2": {
"control_text": "c. [Assignment: organization-defined frequency]",
"defined_value": "c. At least annually if not otherwise defined in formal organization.",
"selected": true
},
"AT-2(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AT-3": {
"control_text": "c. [Assignment: organization-defined frequency]",
"defined_value": "c. At least annually if not otherwise defined in formal organization.",
"selected": true
},
"AT-3(1)": {
"control_text": "[Assignment: organization-defined personnel or roles] [Assignment: organization-defined frequency]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS. At least annually if not otherwise defined in formal organization policy or when sufficient changes are made to physical security systems.",
"selected": false
},
"AT-3(2)": {
"control_text": "[Assignment: organization-defined personnel or roles] [Assignment: organization-defined frequency]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS. At least annually if not otherwise defined in formal organization policy or when sufficient changes are made to physical security systems.",
"selected": true
},
"AT-3(4)": {
"control_text": "[Assignment: organization-defined indicators of malicious code]",
"defined_value": "Minimally but not limited to indicators of potentially malicious code in suspicious email.",
"selected": true
},
"AT-4": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-1": {
"control_text": "a. [Assignment: organization-defined personnel or roles] b.1. [Assignment: organization-defined frequency] b.2. [Assignment: organization-defined frequency]",
"defined_value": "a. All personnel b.1. At least annually if not otherwise defined in formal organizational policy. b.2. At least annually if not otherwise defined in formal organizational policy. policy (AU-1).",
"selected": true
},
"AU-2": {
"control_text": "a. [Assignment: organization-defined auditable events] in a.) along with the frequency of (or situation requiring) auditing for each identified event] d. [Assignment: organization-defined audited events (the subset of the auditable events defined",
"defined_value": "a. 1. Authentication events: (1) Logons (Success/Failure) (2) Logoffs (Success) 2. File and Objects events: (1) Create (Success/Failure) (2) Access (Success/Failure) (3) Delete (Success/Failure) (4) Modify (Success/Failure) (5) Permission Modification (Success/Failure) (6) Ownership Modification (Success/Failure) 3. Writes/downloads to external devices/media (e.g., A-Drive, CD/DVD devices/printers) (Success/Failure) 4. Uploads from external devices (e.g., CD/DVD drives) (Success/Failure) 5. User and Group Management events: (1) User add, delete, modify, suspend, lock (Success/Failure) (2) Group/Role add, delete, modify (Success/Failure) 6. Use of Privileged/Special Rights events: (1) Security or audit policy changes (Success/Failure) (2) Configuration changes (Success/Failure) 7. Admin or root-level access (Success/Failure) 8. Privilege/Role escalation (Success/Failure) 9. Audit and log data accesses (Success/Failure) 10. System reboot, restart and shutdown (Success/Failure) 11. Print to a device (Success/Failure) 12. Print to a file (e.g., pdf format) (Success/Failure) 13. Application (e.g., Firefox, Internet Explorer, MS Office Suite, etc.) initialization (Success/Failure) 14. Export of information (Success/Failure) include (e.g., to CDRW, thumb drives, or remote systems) 15. Import of information (Success/Failure) include (e.g., from CDRW, thumb drives, or remote systems) d. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"AU-2(3)": {
"control_text": "[Assignment: organization-defined frequency]",
"defined_value": "At least annually if not otherwise defined in formal organizational policy",
"selected": true
},
"AU-3": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-3(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-3(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-4": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-4(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-5": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-5(1)": {
"control_text": "[Assignment: organization-defined personnel, roles, and/or locations] [Assignment: organization-defined time period] [Assignment: organization-defined percentage]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS. Not appropriate to define at the CNSS level for all NSS. Max of 75%",
"selected": true
},
"AU-5(2)": {
"control_text": "[Assignment: organization-defined real-time period] [Assignment: organization-defined personnel, roles, and/or locations] [Assignment: organization-defined audit failure events requiring real-time alerts]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS. Not appropriate to define at the CNSS level for all NSS. Minimally but not limited to: auditing software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded.",
"selected": true
},
"AU-6": {
"control_text": "a. [Assignment: organization-defined frequency] [Assignment: organization-defined inappropriate or unusual activity] b. [Assignment: organization-defined personnel or roles]",
"defined_value": "a. At least weekly (seven days) Not appropriate to define at the CNSS level for all NSS. b. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"AU-6(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-6(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-6(4)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-6(5)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-6(6)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-6(10)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-7": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-7(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-8": {
"control_text": "tolerance for relationship between time stamps of individual records in the audit trail]",
"defined_value": "granularity in AU-8. In accordance with tolerance defined in AU-8.",
"selected": true
},
"AU-8(1)": {
"control_text": "(a) [Assignment: organization-defined frequency] [Assignment: organization-defined authoritative time source] (b) [Assignment: organization-defined time period]",
"defined_value": "(a) At least every 24 hours. (a) Not appropriate to define at the CNSS level for all NSS. (b) Greater than the organizationally defined",
"selected": true
},
"AU-9": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-9(2)": {
"control_text": "[Assignment: organization-defined frequency]",
"defined_value": "a. At least weekly.",
"selected": true
},
"AU-9(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-9(4)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-9(5)": {
"control_text": "[Selection (one or more): movement; deletion] [Assignment: organization-defined audit information]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS. Any security related audit information.",
"selected": false
},
"AU-10": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-11": {
"control_text": "[Assignment: organization-defined time period consistent with records retention policy]",
"defined_value": "A minimum of 5 years for Sensitive Compartmented Information and Sources And Methods Intelligence information AND A minimum of 1 year for all other information (Unclassified through Collateral Top Secret).",
"selected": true
},
"AU-11(1)": {
"control_text": "[Assignment: organization-defined measures]",
"defined_value": "A retention of technology to access audit records for the duration of the required retention period.",
"selected": true
},
"AU-12": {
"control_text": "a. [Assignment: organization-defined information system components] b. Assignment: organization-defined personnel or roles]",
"defined_value": "a. All information systems and network components. b. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"AU-12(1)": {
"control_text": "[Assignment: organization-defined information system components] [Assignment: organization-defined level of",
"defined_value": "Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"AU-12(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-13(2)": {
"control_text": "[Assignment: organization-defined frequency]",
"defined_value": "At least annually if not otherwise defined in formal organizational policy.",
"selected": false
},
"AU-14": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-14(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-14(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"AU-14(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CA-1": {
"control_text": "a. [Assignment: organization-defined personnel or roles] b.1. [Assignment: organization-defined frequency] b.2. [Assignment: organization-defined frequency]",
"defined_value": "a. All personnel. b.1. At least annually if not otherwise defined in formal organizational policy. b.2. At least annually if not otherwise defined in formal organizational policy.",
"selected": true
},
"CA-2": {
"control_text": "b. [Assignment: organization-defined frequency] d. [Assignment: organization-defined individuals or roles]",
"defined_value": "b. At least annually, or as stipulated in the organization's continuous monitoring program. d. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"CA-2(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CA-2(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CA-3": {
"control_text": "c. [Assignment: organization-defined frequency]",
"defined_value": "c. At least annually.",
"selected": true
},
"CA-3(1)": {
"control_text": "[Assignment: organization-defined unclassified, national security system] [Assignment: organization-defined boundary protection device]",
"defined_value": "All unclassified NSS. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"CA-3(5)": {
"control_text": "[Selection: allow-all, deny-by-exception; deny- all, permit-by-exception] [Assignment: organization-defined information systems] to connect to external information systems.",
"defined_value": "Deny-all, permit-by-exception. All systems.",
"selected": true
},
"CA-5": {
"control_text": "[Assignment: organization-defined frequency]",
"defined_value": "b. At least quarterly.",
"selected": true
},
"CA-6": {
"control_text": "c. [Assignment: organization-defined frequency]",
"defined_value": "c. If the organization and/or system is adequately covered by a continuous monitoring program the Security Authorization may be continuously updated: If not; at least every three (3) years, when significant security breaches occur, whenever there is a significant change to the system, or to the environment in which the system operates.",
"selected": true
},
"CA-7": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CA-7(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CA-8": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CA-9": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-1": {
"control_text": "a. [Assignment: organization-defined personnel or roles] b.1. [Assignment: organization-defined frequency] b.2. [Assignment: organization-defined frequency]",
"defined_value": "a. Not appropriate to define at the CNSS level for all NSS. b.1. At least annually if not otherwise defined in formal organizational policy. b.2. At least annually if not otherwise defined in formal organizational policy.",
"selected": true
},
"CM-2": {
"control_text": "g. [Assignment: organization-defined configuration change control element (e.g., committee, board] [Selection (one or more): [Assignment: organization-defined frequency] [Assignment: organization-defined configuration change conditions]]",
"defined_value": "configurations as defined in CM-2 (3), whichever is longer. g. Not appropriate to define at the CNSS level for all NSS. Not appropriate to define at the CNSS level for all NSS. Not appropriate to define at the CNSS level for all NSS. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"CM-2(1)": {
"control_text": "(a) [Assignment: organization-defined frequency] (b) [Assignment organization-defined circumstances]",
"defined_value": "(a) At least annually. (b) Significant or security relevant changes or security incidents occur.",
"selected": true
},
"CM-2(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-2(3)": {
"control_text": "[Assignment: organization-defined previous versions of baseline configurations of the information system]",
"defined_value": "At least two.",
"selected": true
},
"CM-2(7)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-3": {
"control_text": "e. [Assignment: organization-defined time period]",
"defined_value": "e. 1 year or two change cycles of baseline defined in CM-3 g. Supplemental guidance: The information security representative shall be a voting member.",
"selected": true
},
"CM-3(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-3(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-3(4)": {
"control_text": "[Assignment: organization-defined configuration change control element]",
"defined_value": "The configuration change control element",
"selected": true
},
"CM-3(5)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-3(6)": {
"control_text": "[Assignment: organization-defined security safeguards]",
"defined_value": "All security safeguards that rely on cryptography",
"selected": true
},
"CM-4": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-4(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-5": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-5(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-5(2)": {
"control_text": "[Assignment: organization-defined frequency] [Assignment: organization-defined circumstances]",
"defined_value": "Every 90 days or more frequently as the organization defines for high integrity systems AND at least annually or more frequently as the organization defines for low integrity and moderate integrity systems. When there is an incident or when planned changes have been performed.",
"selected": true
},
"CM-5(3)": {
"control_text": "[Assignment: organization-defined software and firmware components]",
"defined_value": "All digitally signed software and firmware products.",
"selected": true
},
"CM-5(5)": {
"control_text": "(b) [Assignment: organization-defined frequency]",
"defined_value": "(b) At least annually.",
"selected": true
},
"CM-5(6)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-6": {
"control_text": "a. [Assignment: organization-defined security configuration checklists] c. [Assignment: organization-defined information system components] [Assignment: organization-defined operational requirements]",
"defined_value": "a. Organizationally approved guides such as DoD SRGs, STIGs, or NSA SCGs; if such a reference document is not available, the following are acceptable in descending order as available: (1) Commercially accepted practices (e.g., SANS) (2) Independent testing results (e.g., ICSA) or (3) Vendor literature. c. All configurable information system components. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"CM-6(1)": {
"control_text": "[Assignment: organization-defined information system components]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS but minimally for all IA enabled or related components.",
"selected": true
},
"CM-6(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-7": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-7(1)": {
"control_text": "(a) [Assignment: organization-defined frequency] (b) [Assignment: organization-defined functions, ports, protocols, and services within the information system deemed to be unnecessary and/or nonsecure]",
"defined_value": "(a) At least annually or as system changes or incidents occur. (b) All functions, ports, protocols, and services within the information system deemed to be unnecessary and/or nonsecure.",
"selected": true
},
"CM-7(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-7(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-7(4)": {
"control_text": "(a) [Assignment: organization-defined software programs not authorized to execute on the information system] (c) [Assignment: organization-defined frequency]",
"defined_value": "(a) Not appropriate to define at the CNSS level for all NSS. (c) At least annually.",
"selected": false
},
"CM-7(5)": {
"control_text": "(a) [Assignment: organization-defined software programs authorized to execute on the information system] (c) [Assignment: organization-defined frequency]",
"defined_value": "(a) Not appropriate to define at the CNSS level for all NSS. (c) At least annually.",
"selected": true
},
"CM-8": {
"control_text": "a.4. [Assignment: organization-defined information deemed necessary to achieve effective information system component accountability] b. [Assignment: organization-defined frequency]",
"defined_value": "a.4. Minimally but not limited to: hardware specifications (manufacturer, type, model, serial number, physical location), software and software license information, information system/component owner, and for a networked component/device, the machine name. b. At least annually.",
"selected": true
},
"CM-8(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-8(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-8(3)": {
"control_text": "(a) [Assignment: organization-defined frequency] (b) [Selection (one or more): disables network access by such components; isolates the components; notifies [Assignment: organization-defined personnel or roles]]",
"defined_value": "(a) Continuously. (b) Not appropriate to define at the CNSS level for all NSS. Not appropriate to define at the CNSS level for all NSS.",
"selected": true
},
"CM-8(4)": {
"control_text": "[Selection (one or more): name; position; role]",
"defined_value": "Minimally position or role.",
"selected": true
},
"CM-8(5)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-8(9)": {
"control_text": "(a) [Assignment: organization-defined acquired information system components]",
"defined_value": "All acquired information system components. See supplemental guidance. Supplemental guidance: this is part of Security Authorization, \"authorization boundary\".",
"selected": false
},
"CM-9": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-10": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-10(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-11": {
"control_text": "a. [Assignment: organization-defined policies] b. [Assignment: organization-defined methods] c. [Assignment: organization-defined frequency]",
"defined_value": "a. Not appropriate to define at the CNSS level for all NSS. b. Not appropriate to define at the CNSS level for all NSS. c. Continuously.",
"selected": true
},
"CM-11(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CM-11(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-1": {
"control_text": "a. [Assignment: organization-defined personnel or roles] b.1. [Assignment: organization-defined frequency] b.2. [Assignment: organization-defined frequency]",
"defined_value": "a. Not appropriate to define at the CNSS level for all NSS. b.1. At least annually if not otherwise defined in formal organizational policy. b.2. At least annually if not otherwise defined in formal organizational policy.",
"selected": true
},
"CP-2": {
"control_text": "a.6. [Assignment: organization-defined personnel or roles] b. [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements] d. [Assignment: organization-defined frequency] f. [Assignment: organization-defined key contingency personnel (identified by name and/or by role) and organizational elements]",
"defined_value": "a.6. Not appropriate to define at the CNSS level for all NSS. b. Key personnel or roles and organizational elements identified in the contingency plan. d. At least annually unless otherwise defined in organizational policy. f. Key personnel and .organizational elements identified in the contingency plan.",
"selected": true
},
"CP-2(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-2(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-2(3)": {
"control_text": "[Assignment: organization-defined time period]",
"defined_value": "A time period as defined in the contingency plan.",
"selected": true
},
"CP-2(4)": {
"control_text": "[Assignment: organization-defined time period]",
"defined_value": "A time period as defined in the contingency plan.",
"selected": true
},
"CP-2(5)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-2(8)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-3": {
"control_text": "a. [Assignment: organization-defined time period] c. [Assignment: organization-defined frequency]",
"defined_value": "a. 10 working days . c. Annually or as defined in the contingency plan.",
"selected": true
},
"CP-3(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-4": {
"control_text": "a. [Assignment: organization-defined frequency] [Assignment: organization-defined tests]",
"defined_value": "a. At a frequency as defined in the contingency plan. Tests as defined in the contingency plan.",
"selected": true
},
"CP-4(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-4(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-6": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-6(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-6(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-6(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-7": {
"control_text": "a. [Assignment: organization-defined information system operations] [Assignment: organization-defined time period consistent with recovery time and recovery point objectives]",
"defined_value": "a. Information system operations as defined in the contingency plan. A time period as defined in the contingency plan.",
"selected": true
},
"CP-7(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-7(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-7(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-7(4)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-8": {
"control_text": "[Assignment: organization-defined information system operations] [Assignment: organization-defined time period]",
"defined_value": "Information system operations as defined in the contingency plan. A time period as defined in the contingency plan.",
"selected": true
},
"CP-8(1)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-8(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-8(3)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-8(4)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-8(5)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-9": {
"control_text": "a. [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives] b. [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives] c. [Assignment: organization-defined frequency consistent with recovery time and recovery point objectives]",
"defined_value": "a. At least weekly or as defined in the contingency plan. b. At least weekly or as defined in the contingency plan. c. When created, received, updated, or as defined in the contingency plan.",
"selected": true
},
"CP-9(1)": {
"control_text": "[Assignment: organization-defined frequency]",
"defined_value": "At least monthly or as defined in the contingency plan.",
"selected": true
},
"CP-9(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-9(3)": {
"control_text": "[Assignment: organization-defined critical information system software and other security- related information]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS but as defined in the contingency plan.",
"selected": true
},
"CP-9(5)": {
"control_text": "[Assignment: organization-defined time period and transfer rate consistent with the recovery time and recovery point objectives]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS but as defined in the contingency plan.",
"selected": true
},
"CP-9(7)": {
"control_text": "[Assignment: organization-defined backup information]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS, but as defined in the contingency plan.",
"selected": false
},
"CP-10": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-10(2)": {
"control_text": "",
"defined_value": "",
"selected": true
},
"CP-10(4)": {
"control_text": "[Assignment: organization-defined restoration time-periods]",
"defined_value": "Not appropriate to define at the CNSS level for all NSS but as defined in the contingency plan.",
"selected": true
},
"CP-11": {
"control_text": "[Assignment: organization-defined alternative communications protocols]",
"defined_value": "Alternate communications protocols as defined in the contingency plan.",
"selected": false