forked from intuitem/ciso-assistant-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfedramp-rev5.yaml
5950 lines (5950 loc) · 282 KB
/
fedramp-rev5.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:fedramp-rev5
locale: en
ref_id: GSA-FEDRAMP-rev5
name: GSA FedRAMP Rev5
description: The Federal Risk and Authorization Management Program (FedRAMP) provides
a standardized approach to security authorizations for Cloud Service Offerings.
copyright: FedRAMP
version: 1
provider: US General Services Administration
packager: intuitem
objects:
framework:
urn: urn:intuitem:risk:framework:fedramp-rev5
ref_id: GSA-FEDRAMP-rev5
name: GSA FedRAMP rev5
description: The Federal Risk and Authorization Management Program (FedRAMP) provides
a standardized approach to security authorizations for Cloud Service Offerings.
implementation_groups_definition:
- ref_id: L
name: Low
description: "Low Impact is most appropriate for CSOs where the loss of confidentiality,\
\ integrity, and availability would result in limited adverse effect on an\
\ agency\u2019s operations, assets, or individuals."
- ref_id: M
name: Moderate
description: "Moderate Impact accounts for the majority of CSOs that receive\
\ FedRAMP authorization and is most appropriate for CSOs where the loss of\
\ confidentiality, integrity, and availability would result in serious adverse\
\ effect on an agency\u2019s operations, assets, or individuals."
- ref_id: H
name: High
description: High Impact data is usually in Law Enforcement and Emergency Services
systems, Financial systems, Health systems, and any other system where loss
of confidentiality, integrity, or availability could be expected to have a
severe or catastrophic adverse effect on organizational operations, organizational
assets, or individuals.
requirement_nodes:
- urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
assessable: false
depth: 1
name: ACCESS CONTROL
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-1
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-1
name: Policy and Procedures
description: "a. Develop, document, and disseminate to [Assignment: organization-defined\
\ personnel or roles]:\n 1. [Selection (one or more): Organization-level;\
\ Mission/business process-level; System-level] access control policy that:\n\
\ (a) Addresses purpose, scope, roles, responsibilities, management commitment,\
\ coordination among organizational entities, and compliance; and\n (b) Is\
\ consistent with applicable laws, executive orders, directives, regulations,\
\ policies, standards, and guidelines; and\n 2. Procedures to facilitate the\
\ implementation of the access control policy and the associated access controls;\n\
\ b. Designate an [Assignment: organization-defined official] to manage the\
\ development, documentation, and dissemination of the access control policy\
\ and procedures; and\n c. Review and update the current access control:\n\
\ 1. Policy [Assignment: organization-defined frequency] and following [Assignment:\
\ organization-defined events]; and\n 2. Procedures [Assignment: organization-defined\
\ frequency] and following [Assignment: organization-defined events]."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2
name: Account Management
description: "a. Define and document the types of accounts allowed and specifically\
\ prohibited for use within the system;\n b. Assign account managers;\n c.\
\ Require [Assignment: organization-defined prerequisites and criteria] for\
\ group and role membership;\n d. Specify:\n 1. Authorized users of the system;\n\
\ 2. Group and role membership; and\n 3. Access authorizations (i.e., privileges)\
\ and [Assignment: organization-defined attributes (as required)] for each\
\ account;\n e. Require approvals by [Assignment: organization-defined personnel\
\ or roles] for requests to create accounts;\n f. Create, enable, modify,\
\ disable, and remove accounts in accordance with [Assignment: organization-defined\
\ policy, procedures, prerequisites, and criteria];\n g. Monitor the use of\
\ accounts;\n h. Notify account managers and [Assignment: organization-defined\
\ personnel or roles] within:\n 1. [Assignment: organization-defined time\
\ period] when accounts are no longer required;\n 2. [Assignment: organization-defined\
\ time period] when users are terminated or transferred; and\n 3. [Assignment:\
\ organization-defined time period] when system usage or need-to-know changes\
\ for an individual;\n i. Authorize access to the system based on:\n 1. A\
\ valid access authorization;\n 2. Intended system usage; and\n 3. [Assignment:\
\ organization-defined attributes (as required)];\n j. Review accounts for\
\ compliance with account management requirements [Assignment: organization-defined\
\ frequency];\n k. Establish and implement a process for changing shared or\
\ group account authenticators (if deployed) when individuals are removed\
\ from the group; and\n l. Align account management processes with personnel\
\ termination and transfer processes."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (1)
name: Account Management | Automated System Account Management
description: 'Support the management of system accounts using [Assignment: organization-defined
automated mechanisms].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(2)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (2)
name: Account Management | Automated Temporary and Emergency Account Management
description: 'Automatically [Selection: remove; disable] temporary and emergency
accounts after [Assignment: organization-defined time period for each type
of account].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(3)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (3)
name: Account Management | Disable Accounts
description: "Disable accounts within [Assignment: organization-defined time\
\ period] when the accounts: \n (a) Have expired;\n (b) Are no longer associated\
\ with a user or individual;\n (c) Are in violation of organizational policy;\
\ or\n (d) Have been inactive for [Assignment: organization-defined time period]."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(4)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (4)
name: Account Management | Automated Audit Actions
description: Automatically audit account creation, modification, enabling, disabling,
and removal actions.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(5)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (5)
name: Account Management | Inactivity Logout
description: 'Require that users log out when [Assignment: organization-defined
time period of expected inactivity or description of when to log out].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(7)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (7)
name: Account Management | Privileged User Accounts
description: " (a) Establish and administer privileged user accounts in accordance\
\ with [Selection: a role-based access scheme; an attribute-based access scheme];\n\
\ (b) Monitor privileged role or attribute assignments;\n (c) Monitor changes\
\ to roles or attributes; and\n (d) Revoke access when privileged role or\
\ attribute assignments are no longer appropriate."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(9)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (9)
name: Account Management | Restrictions on Use of Shared and Group Accounts
description: 'Only permit the use of shared and group accounts that meet [Assignment:
organization-defined conditions for establishing shared and group accounts].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(11)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (11)
name: Account Management | Usage Conditions
description: 'Enforce [Assignment: organization-defined circumstances and/or
usage conditions] for [Assignment: organization-defined system accounts].'
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(12)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (12)
name: Account Management | Account Monitoring for Atypical Usage
description: " (a) Monitor system accounts for [Assignment: organization-defined\
\ atypical usage]; and\n (b) Report atypical usage of system accounts to [Assignment:\
\ organization-defined personnel or roles]."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-2-(13)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-2 (13)
name: Account Management | Disable Accounts for High-risk Individuals
description: 'Disable accounts of individuals within [Assignment: organization-defined
time period] of discovery of [Assignment: organization-defined significant
risks].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-3
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-3
name: Access Enforcement
description: Enforce approved authorizations for logical access to information
and system resources in accordance with applicable access control policies.
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-4
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-4
name: Information Flow Enforcement
description: 'Enforce approved authorizations for controlling the flow of information
within the system and between connected systems based on [Assignment: organization-defined
information flow control policies].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-4-(4)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-4 (4)
name: Information Flow Enforcement | Flow Control of Encrypted Information
description: 'Prevent encrypted information from bypassing [Assignment: organization-defined
information flow control mechanisms] by [Selection (one or more): decrypting
the information; blocking the flow of the encrypted information; terminating
communications sessions attempting to pass encrypted information; [Assignment:
organization-defined procedure or method]].'
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-4-(21)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-4 (21)
name: Information Flow Enforcement | Physical or Logical Separation of Information
Flows
description: 'Separate information flows logically or physically using [Assignment:
organization-defined mechanisms and/or techniques] to accomplish [Assignment:
organization-defined required separations by types of information].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-5
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-5
name: Separation of Duties
description: "a. Identify and document [Assignment: organization-defined duties\
\ of individuals requiring separation]; and\n b. Define system access authorizations\
\ to support separation of duties."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6
name: Least Privilege
description: Employ the principle of least privilege, allowing only authorized
accesses for users (or processes acting on behalf of users) that are necessary
to accomplish assigned organizational tasks.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6 (1)
name: Least Privilege | Authorize Access to Security Functions
description: "Authorize access for [Assignment: organization-defined individuals\
\ or roles] to:\n (a) [Assignment: organization-defined security functions\
\ (deployed in hardware, software, and firmware)]; and\n (b) [Assignment:\
\ organization-defined security-relevant information]."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6-(2)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6 (2)
name: Least Privilege | Non-privileged Access for Nonsecurity Functions
description: 'Require that users of system accounts (or roles) with access to
[Assignment: organization-defined security functions or security-relevant
information] use non-privileged accounts or roles, when accessing nonsecurity
functions.'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6-(3)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6 (3)
name: Least Privilege | Network Access to Privileged Commands
description: 'Authorize network access to [Assignment: organization-defined
privileged commands] only for [Assignment: organization-defined compelling
operational needs] and document the rationale for such access in the security
plan for the system.'
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6-(5)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6 (5)
name: Least Privilege | Privileged Accounts
description: 'Restrict privileged accounts on the system to [Assignment: organization-defined
personnel or roles].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6-(7)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6 (7)
name: Least Privilege | Review of User Privileges
description: " (a) Review [Assignment: organization-defined frequency] the privileges\
\ assigned to [Assignment: organization-defined roles or classes of users]\
\ to validate the need for such privileges; and\n (b) Reassign or remove privileges,\
\ if necessary, to correctly reflect organizational mission and business needs."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6-(8)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6 (8)
name: Least Privilege | Privilege Levels for Code Execution
description: 'Prevent the following software from executing at higher privilege
levels than users executing the software: [Assignment: organization-defined
software].'
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6-(9)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6 (9)
name: Least Privilege | Log Use of Privileged Functions
description: Log the execution of privileged functions.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-6-(10)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-6 (10)
name: Least Privilege | Prohibit Non-privileged Users from Executing Privileged
Functions
description: Prevent non-privileged users from executing privileged functions.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-7
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-7
name: Unsuccessful Logon Attempts
description: "a. Enforce a limit of [Assignment: organization-defined number]\
\ consecutive invalid logon attempts by a user during a [Assignment: organization-defined\
\ time period]; and\n b. Automatically [Selection (one or more): lock the\
\ account or node for an [Assignment: organization-defined time period]; lock\
\ the account or node until released by an administrator; delay next logon\
\ prompt per [Assignment: organization-defined delay algorithm]; notify system\
\ administrator; take other [Assignment: organization-defined action]] when\
\ the maximum number of unsuccessful attempts is exceeded."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-8
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-8
name: System Use Notification
description: "a. Display [Assignment: organization-defined system use notification\
\ message or banner] to users before granting access to the system that provides\
\ privacy and security notices consistent with applicable laws, executive\
\ orders, directives, regulations, policies, standards, and guidelines and\
\ state that:\n 1. Users are accessing a U.S. Government system;\n 2. System\
\ usage may be monitored, recorded, and subject to audit;\n 3. Unauthorized\
\ use of the system is prohibited and subject to criminal and civil penalties;\
\ and\n 4. Use of the system indicates consent to monitoring and recording;\n\
\ b. Retain the notification message or banner on the screen until users acknowledge\
\ the usage conditions and take explicit actions to log on to or further access\
\ the system; and\n c. For publicly accessible systems:\n 1. Display system\
\ use information [Assignment: organization-defined conditions], before granting\
\ further access to the publicly accessible system;\n 2. Display references,\
\ if any, to monitoring, recording, or auditing that are consistent with privacy\
\ accommodations for such systems that generally prohibit those activities;\
\ and\n 3. Include a description of the authorized uses of the system."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-10
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-10
name: Concurrent Session Control
description: 'Limit the number of concurrent sessions for each [Assignment:
organization-defined account and/or account type] to [Assignment: organization-defined
number].'
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-11
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-11
name: Device Lock
description: "a. Prevent further access to the system by [Selection (one or\
\ more): initiating a device lock after [Assignment: organization-defined\
\ time period] of inactivity; requiring the user to initiate a device lock\
\ before leaving the system unattended]; and\n b. Retain the device lock until\
\ the user reestablishes access using established identification and authentication\
\ procedures."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-11-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-11 (1)
name: Device Lock | Pattern-hiding Displays
description: Conceal, via the device lock, information previously visible on
the display with a publicly viewable image.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-12
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-12
name: Session Termination
description: 'Automatically terminate a user session after [Assignment: organization-defined
conditions or trigger events requiring session disconnect].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-14
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-14
name: Permitted Actions Without Identification or Authentication
description: "a. Identify [Assignment: organization-defined user actions] that\
\ can be performed on the system without identification or authentication\
\ consistent with organizational mission and business functions; and\n b.\
\ Document and provide supporting rationale in the security plan for the system,\
\ user actions not requiring identification or authentication."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-17
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-17
name: Remote Access
description: "a. Establish and document usage restrictions, configuration/connection\
\ requirements, and implementation guidance for each type of remote access\
\ allowed; and\n b. Authorize each type of remote access to the system prior\
\ to allowing such connections."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-17-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-17 (1)
name: Remote Access | Monitoring and Control
description: Employ automated mechanisms to monitor and control remote access
methods.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-17-(2)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-17 (2)
name: Remote Access | Protection of Confidentiality and Integrity Using Encryption
description: Implement cryptographic mechanisms to protect the confidentiality
and integrity of remote access sessions.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-17-(3)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-17 (3)
name: Remote Access | Managed Access Control Points
description: Route remote accesses through authorized and managed network access
control points.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-17-(4)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-17 (4)
name: Remote Access | Privileged Commands and Access
description: " (a) Authorize the execution of privileged commands and access\
\ to security-relevant information via remote access only in a format that\
\ provides assessable evidence and for the following needs: [Assignment: organization-defined\
\ needs]; and\n (b) Document the rationale for remote access in the security\
\ plan for the system."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-18
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-18
name: Wireless Access
description: "a. Establish configuration requirements, connection requirements,\
\ and implementation guidance for each type of wireless access; and\n b. Authorize\
\ each type of wireless access to the system prior to allowing such connections."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-18-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-18 (1)
name: Wireless Access | Authentication and Encryption
description: 'Protect wireless access to the system using authentication of
[Selection (one or more): users; devices] and encryption.'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-18-(3)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-18 (3)
name: Wireless Access | Disable Wireless Networking
description: Disable, when not intended for use, wireless networking capabilities
embedded within system components prior to issuance and deployment.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-18-(4)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-18 (4)
name: Wireless Access | Restrict Configurations by Users
description: Identify and explicitly authorize users allowed to independently
configure wireless networking capabilities.
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-18-(5)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-18 (5)
name: Wireless Access | Antennas and Transmission Power Levels
description: Select radio antennas and calibrate transmission power levels to
reduce the probability that signals from wireless access points can be received
outside of organization-controlled boundaries.
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-19
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-19
name: Access Control for Mobile Devices
description: "a. Establish configuration requirements, connection requirements,\
\ and implementation guidance for organization-controlled mobile devices,\
\ to include when such devices are outside of controlled areas; and\n b. Authorize\
\ the connection of mobile devices to organizational systems."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-19-(5)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-19 (5)
name: Access Control for Mobile Devices | Full Device or Container-based Encryption
description: 'Employ [Selection: full-device encryption; container-based encryption]
to protect the confidentiality and integrity of information on [Assignment:
organization-defined mobile devices].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-20
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-20
name: Use of External Systems
description: "a. [Selection (one or more): Establish [Assignment: organization-defined\
\ terms and conditions]; Identify [Assignment: organization-defined controls\
\ asserted to be implemented on external systems]], consistent with the trust\
\ relationships established with other organizations owning, operating, and/or\
\ maintaining external systems, allowing authorized individuals to:\n 1. Access\
\ the system from external systems; and\n 2. Process, store, or transmit organization-controlled\
\ information using external systems; or\n b. Prohibit the use of [Assignment:\
\ organizationally-defined types of external systems]."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-20-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-20 (1)
name: Use of External Systems | Limits on Authorized Use
description: "Permit authorized individuals to use an external system to access\
\ the system or to process, store, or transmit organization-controlled information\
\ only after:\n (a) Verification of the implementation of controls on the\
\ external system as specified in the organization\u2019s security and privacy\
\ policies and security and privacy plans; or\n (b) Retention of approved\
\ system connection or processing agreements with the organizational entity\
\ hosting the external system."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-20-(2)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-20 (2)
name: "Use of External Systems | Portable Storage Devices \u2014 Restricted\
\ Use"
description: 'Restrict the use of organization-controlled portable storage devices
by authorized individuals on external systems using [Assignment: organization-defined
restrictions].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-21
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-21
name: Information Sharing
description: "a. Enable authorized users to determine whether access authorizations\
\ assigned to a sharing partner match the information\u2019s access and use\
\ restrictions for [Assignment: organization-defined information sharing circumstances\
\ where user discretion is required]; and\n b. Employ [Assignment: organization-defined\
\ automated mechanisms or manual processes] to assist users in making information\
\ sharing and collaboration decisions."
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:ac-22
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node2
ref_id: AC-22
name: Publicly Accessible Content
description: "a. Designate individuals authorized to make information publicly\
\ accessible;\n b. Train authorized individuals to ensure that publicly accessible\
\ information does not contain nonpublic information;\n c. Review the proposed\
\ content of information prior to posting onto the publicly accessible system\
\ to ensure that nonpublic information is not included; and\n d. Review the\
\ content on the publicly accessible system for nonpublic information [Assignment:\
\ organization-defined frequency] and remove such information, if discovered."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:node53
assessable: false
depth: 1
name: AWARENESS AND TRAINING
- urn: urn:intuitem:risk:req_node:fedramp-rev5:at-1
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node53
ref_id: AT-1
name: Policy and Procedures
description: "a. Develop, document, and disseminate to [Assignment: organization-defined\
\ personnel or roles]:\n 1. [Selection (one or more): Organization-level;\
\ Mission/business process-level; System-level] awareness and training policy\
\ that:\n (a) Addresses purpose, scope, roles, responsibilities, management\
\ commitment, coordination among organizational entities, and compliance;\
\ and\n (b) Is consistent with applicable laws, executive orders, directives,\
\ regulations, policies, standards, and guidelines; and\n 2. Procedures to\
\ facilitate the implementation of the awareness and training policy and the\
\ associated awareness and training controls;\n b. Designate an [Assignment:\
\ organization-defined official] to manage the development, documentation,\
\ and dissemination of the awareness and training policy and procedures; and\n\
\ c. Review and update the current awareness and training:\n 1. Policy [Assignment:\
\ organization-defined frequency] and following [Assignment: organization-defined\
\ events]; and\n 2. Procedures [Assignment: organization-defined frequency]\
\ and following [Assignment: organization-defined events]."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:at-2
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node53
ref_id: AT-2
name: Literacy Training and Awareness
description: "a. Provide security and privacy literacy training to system users\
\ (including managers, senior executives, and contractors):\n 1. As part of\
\ initial training for new users and [Assignment: organization-defined frequency]\
\ thereafter; and\n 2. When required by system changes or following [Assignment:\
\ organization-defined events];\n b. Employ the following techniques to increase\
\ the security and privacy awareness of system users [Assignment: organization-defined\
\ awareness techniques];\n c. Update literacy training and awareness content\
\ [Assignment: organization-defined frequency] and following [Assignment:\
\ organization-defined events]; and\n d. Incorporate lessons learned from\
\ internal or external security incidents or breaches into literacy training\
\ and awareness techniques."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:at-2-(2)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node53
ref_id: AT-2 (2)
name: Literacy Training and Awareness | Insider Threat
description: Provide literacy training on recognizing and reporting potential
indicators of insider threat.
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:at-2-(3)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node53
ref_id: AT-2 (3)
name: Literacy Training and Awareness | Social Engineering and Mining
description: Provide literacy training on recognizing and reporting potential
and actual instances of social engineering and social mining.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:at-3
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node53
ref_id: AT-3
name: Role-based Training
description: "a. Provide role-based security and privacy training to personnel\
\ with the following roles and responsibilities: [Assignment: organization-defined\
\ roles and responsibilities]:\n 1. Before authorizing access to the system,\
\ information, or performing assigned duties, and [Assignment: organization-defined\
\ frequency] thereafter; and\n 2. When required by system changes;\n b. Update\
\ role-based training content [Assignment: organization-defined frequency]\
\ and following [Assignment: organization-defined events]; and\n c. Incorporate\
\ lessons learned from internal or external security incidents or breaches\
\ into role-based training."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:at-4
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node53
ref_id: AT-4
name: Training Records
description: "a. Document and monitor information security and privacy training\
\ activities, including security and privacy awareness training and specific\
\ role-based security and privacy training; and\n b. Retain individual training\
\ records for [Assignment: organization-defined time period]."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
assessable: false
depth: 1
name: AUDIT AND ACCOUNTABILITY
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-1
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-1
name: Policy and Procedures
description: "a. Develop, document, and disseminate to [Assignment: organization-defined\
\ personnel or roles]:\n 1. [Selection (one or more): Organization-level;\
\ Mission/business process-level; System-level] audit and accountability policy\
\ that:\n (a) Addresses purpose, scope, roles, responsibilities, management\
\ commitment, coordination among organizational entities, and compliance;\
\ and\n (b) Is consistent with applicable laws, executive orders, directives,\
\ regulations, policies, standards, and guidelines; and\n 2. Procedures to\
\ facilitate the implementation of the audit and accountability policy and\
\ the associated audit and accountability controls;\n b. Designate an [Assignment:\
\ organization-defined official] to manage the development, documentation,\
\ and dissemination of the audit and accountability policy and procedures;\
\ and\n c. Review and update the current audit and accountability:\n 1. Policy\
\ [Assignment: organization-defined frequency] and following [Assignment:\
\ organization-defined events]; and\n 2. Procedures [Assignment: organization-defined\
\ frequency] and following [Assignment: organization-defined events]."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-2
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-2
name: Event Logging
description: "a. Identify the types of events that the system is capable of\
\ logging in support of the audit function: [Assignment: organization-defined\
\ event types that the system is capable of logging];\n b. Coordinate the\
\ event logging function with other organizational entities requiring audit-related\
\ information to guide and inform the selection criteria for events to be\
\ logged;\n c. Specify the following event types for logging within the system:\
\ [Assignment: organization-defined event types (subset of the event types\
\ defined in AU-2a.) along with the frequency of (or situation requiring)\
\ logging for each identified event type];\n d. Provide a rationale for why\
\ the event types selected for logging are deemed to be adequate to support\
\ after-the-fact investigations of incidents; and\n e. Review and update the\
\ event types selected for logging [Assignment: organization-defined frequency]."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-3
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-3
name: Content of Audit Records
description: "Ensure that audit records contain information that establishes\
\ the following:\n a. What type of event occurred;\n b. When the event occurred;\n\
\ c. Where the event occurred;\n d. Source of the event;\n e. Outcome of the\
\ event; and \n f. Identity of any individuals, subjects, or objects/entities\
\ associated with the event."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-3-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-3 (1)
name: Content of Audit Records | Additional Audit Information
description: 'Generate audit records containing the following additional information:
[Assignment: organization-defined additional information].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-4
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-4
name: Audit Log Storage Capacity
description: 'Allocate audit log storage capacity to accommodate [Assignment:
organization-defined audit log retention requirements].'
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-5
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-5
name: Response to Audit Logging Process Failures
description: "a. Alert [Assignment: organization-defined personnel or roles]\
\ within [Assignment: organization-defined time period] in the event of an\
\ audit logging process failure; and\n b. Take the following additional actions:\
\ [Assignment: organization-defined additional actions]."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-5-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-5 (1)
name: Response to Audit Logging Process Failures | Storage Capacity Warning
description: 'Provide a warning to [Assignment: organization-defined personnel,
roles, and/or locations] within [Assignment: organization-defined time period]
when allocated audit log storage volume reaches [Assignment: organization-defined
percentage] of repository maximum audit log storage capacity.'
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-5-(2)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-5 (2)
name: Response to Audit Logging Process Failures | Real-time Alerts
description: 'Provide an alert within [Assignment: organization-defined real-time
period] to [Assignment: organization-defined personnel, roles, and/or locations]
when the following audit failure events occur: [Assignment: organization-defined
audit logging failure events requiring real-time alerts].'
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-6
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-6
name: Audit Record Review, Analysis, and Reporting
description: "a. Review and analyze system audit records [Assignment: organization-defined\
\ frequency] for indications of [Assignment: organization-defined inappropriate\
\ or unusual activity] and the potential impact of the inappropriate or unusual\
\ activity;\n b. Report findings to [Assignment: organization-defined personnel\
\ or roles]; and\n c. Adjust the level of audit record review, analysis, and\
\ reporting within the system when there is a change in risk based on law\
\ enforcement information, intelligence information, or other credible sources\
\ of information."
implementation_groups:
- H
- M
- L
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-6-(1)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-6 (1)
name: Audit Record Review, Analysis, and Reporting | Automated Process Integration
description: 'Integrate audit record review, analysis, and reporting processes
using [Assignment: organization-defined automated mechanisms].'
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-6-(3)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-6 (3)
name: Audit Record Review, Analysis, and Reporting | Correlate Audit Record
Repositories
description: Analyze and correlate audit records across different repositories
to gain organization-wide situational awareness.
implementation_groups:
- H
- M
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-6-(4)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60
ref_id: AU-6 (4)
name: Audit Record Review, Analysis, and Reporting | Central Review and Analysis
description: Provide and implement the capability to centrally review and analyze
audit records from multiple components within the system.
implementation_groups:
- H
- urn: urn:intuitem:risk:req_node:fedramp-rev5:au-6-(5)
assessable: true
depth: 2
parent_urn: urn:intuitem:risk:req_node:fedramp-rev5:node60