-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnist_800_53_rev4.yaml
1240 lines (1212 loc) · 51 KB
/
nist_800_53_rev4.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
# This profile maps applicable parameters to NIST 800-53 Rev 4
# Added to handle %{ within a string
global::percent_sign: '%'
# auditd module
compliance::nist_800_53_rev4::auditd::root_audit_level :
'identifier' : ['AC-6(9)','AU-2(a)','AU-2(b)','AU-2(c)','AU-2(d)','AU-2(4)','AU-12(a)','AU-12(c)']
'value' : 'basic'
compliance::nist_800_53_rev4::auditd::at_boot :
'identifier' : ['AU-14(1)','AU-1(b)','AU-2(a)','AU-2(c)','AU-2(d)','AU-10']
'value' : true
compliance::nist_800_53_rev4::auditd::to_syslog :
'identifier' : ['AU-3(2)','AU-4(1)','AU-9']
'value' : true
'notes' : 'Sending audit logs to syslog *might* by a bandwidth problem in some instances. Otherwise, it should NOT be turned off'
compliance::nist_800_53_rev4::auditd::package_name :
'identifier' : ['AU-3','AU-8(b)','AU-12(a)','AU-12(b)','AU-12(c)','AU-12(2)']
'value' : 'audit'
compliance::nist_800_53_rev4::auditd::service_name::enabled :
'identifier' : ['AU-8(b)','AU-12(a)','AU-12(b)','AU-12(c)','AU-12(2)']
'value' : true
compliance::nist_800_53_rev4::auditd::enable_auditing :
'identifier' : ['AU-8(b)','AU-12(a)','AU-12(b)','AU-12(c)','AU-12(2)']
'value' : true
compliance::nist_800_53_rev4::auditd::num_logs :
'identifier' : ['AU-4','AU-11']
'value' : '5'
'notes' : 'This value can be different than 5 but should be justified.'
compliance::nist_800_53_rev4::auditd::max_log_file :
'identifier' : ['AU-4','AU-11']
'value' : '24'
'notes' : 'This value can be different than 24 but should be justified.'
compliance::nist_800_53_rev4::auditd::space_left_action :
'identifier' : ['AU-4','AU-5(a)','AU-11']
'value' : 'SYSLOG'
'notes' : 'This value can be changed if there is a more ideal notification method for your systems'
compliance::nist_800_53_rev4::auditd::admin_space_left :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : '50'
compliance::nist_800_53_rev4::auditd::admin_space_left_action :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : 'SUSPEND'
compliance::nist_800_53_rev4::auditd::disk_full_action :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : 'SUSPEND'
compliance::nist_800_53_rev4::auditd::disk_error_action :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : 'SUSPEND'
compliance::nist_800_53_rev4::auditd::admin_space_left_action :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : 'SUSPEND'
# For now just check that the simp profile is applied
compliance::nist_800_53_rev4::auditd::default_audit_profile :
'identifier' : ['AU-2(a)','AU-2(c)','AU-2(d)','AC-6(9)','AU-12(a)','AU-12(c)']
'value' : 'simp'
'notes' : 'The SIMP profile applies a base set of audit rules that adhere to guidance from several sources'
compliance::nist_800_53_rev4::auditd::failure_mode :
'identifier' : 'AU-5(b)'
'value' : '2'
#aide
compliance::nist_800_53_rev4::aide::enable :
'identifier' : ['SI-7','SI-7(1)','SI-7(2)','SI-7(3)','SI-7(8)']
'value' : false
compliance::nist_800_53_rev4::aide::default_rules :
'identifier' : ['SI-7','SI-7(1)','SI-7(2)','SI-7(3)','SI-7(8)']
'value' : ''
compliance::nist_800_53_rev4::aide::rotate_logs :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : true
compliance::nist_800_53_rev4::aide::to_syslog :
'value' : true
compliance::nist_800_53_rev4::aide::use_auditd :
'identifier' : ['AU-3(2)','AU-4(1)','AU-9']
'value' : true
compliance::nist_800_53_rev4::aide::logrotate::rotate_period :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : 'weekly'
'notes' : 'This value can be different than weekly but should be justified.'
compliance::nist_800_53_rev4::aide::logrotate::rotate_number :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : '4'
'notes' : 'This value can be different than 4 but should be justified.'
#ClamAV
compliance::nist_800_53_rev4::clamav::enable_clamav :
'identifier' : 'SI-3(a)'
'value' : true
'notes' : 'If ClamAV is not used, alternate malicious code detection software should be implemented'
compliance::nist_800_53_rev4::clamav::package_name :
'identifier' : 'SI-3(a)'
'value' : 'clamav'
'notes' : 'If ClamAV is not used, alternate malicious code detection software should be implemented'
compliance::nist_800_53_rev4::clamav::enable_freshclam :
'identifier' : 'SI-3(b)'
'value' : false
'notes' : 'If ClamAV is not used, alternate malicious code detection software should be implemented'
compliance::nist_800_53_rev4::clamav::schedule_scan :
'identifier' : 'SI-3(c)'
'value' : true
'notes' : 'If ClamAV is not used, alternate malicious code detection software should be implemented'
#iptables
compliance::nist_800_53_rev4::iptables::authoritative :
'identifier' : ['AC-4','CM-7(b)']
'value' : true
compliance::nist_800_53_rev4::iptables::optimize_rules :
'identifier' : 'AC-4'
'value' : true
compliance::nist_800_53_rev4::iptables::ignore :
'identifier' : 'AC-4'
'value' : []
compliance::nist_800_53_rev4::iptables::enable_default_rules :
'identifier' : ['AC-4','CM-7(b)']
'value' : true
'notes' : 'If the SIMP default rules are modified, the running rules should be viewed to ensure they allow a minimal set inbound flows'
compliance::nist_800_53_rev4::iptables::enable_scanblock :
'identifier' : ['AC-4','IR-4']
'value' : false
'notes' : 'This is turned off by default for SIMP as writing rules *could* cause unintended behaviour'
compliance::nist_800_53_rev4::iptables::prevent_localhost_spoofing :
'identifier' : 'AC-4'
'value' : true
compliance::nist_800_53_rev4::iptables::disable :
'identifier' : 'AC-4'
'value' : false
# simp module
compliance::nist_800_53_rev4::simp::enable_filebucketing :
'identifier' : ['SI-2(a)','SI-6(a)','SI-6(b)','SI-7','SI-7(1)']
'value' : true
compliance::nist_800_53_rev4::simp::admin::passwordless_admin_sudo :
'identifier' : ['IA-1(a)(1)','IA-1(b)(1)']
'value' : true
'notes' : 'Passwordless sudo for the administrators group is part of a larger default account management strategy in SIMP. Setting this to false might not be a bad thing as long as the implementation can explain their account strategy'
compliance::nist_800_53_rev4::simp::admin::passwordless_auditor_sudo :
'identifier' : ['IA-1(a)(1)','IA-1(b)(1)']
'value' : true
'notes' : 'Passwordless sudo for the administrators group is part of a larger default account management strategy in SIMP. Setting this to false might not be a bad thing as long as the implementation can explain their account strategy'
compliance::nist_800_53_rev4::simp::admin::force_sudosh :
'identifier' : ['AC-6(9)','AU-14','AU-14(2)']
'value' : true
compliance::nist_800_53_rev4::simp::server::allow_simp_user :
'identifier' : ['IA-1(a)(1)','IA-1(b)(1)']
'value' : true
'notes' : 'Passwordless sudo for the administrators group is part of a larger default account management strategy in SIMP. Setting this to false might not be a bad thing as long as the implementation can explain their account strategy'
compliance::nist_800_53_rev4::simp::server::enable_rsync_shares:
'identifier' : ['CM-2(2)','CM-4(3)']
'value' : true
compliance::nist_800_53_rev4::simp::yum::enable_auto_updates :
'identifier' : ['CM-3(3)','CM-11(b)','SI-2(c)']
'value' : true
'notes' : 'For this control to be fully applied, updated packages need to be applied to the configured yum repos'
compliance::nist_800_53_rev4::simp::nfs::stock::export_home::sec :
'identifier' : 'IA-2'
'value' : 'none:sys'
compliance::nist_800_53_rev4::simp::rsyslog::stock::security_relevant_logs :
'identifier' : ['AU-2(a)','AU-2(d)','AU-3(2)','AU-14']
'value' : "if $programname == 'sudosh' or $programname == 'yum' or $syslogfacility-text == 'cron' or $syslogfacility-text == 'authpriv' or $syslogfacility-text == 'local5' or $syslogfacility-text == 'local6' or $syslogfacility-text == 'local7' or $syslogpriority-text == 'emerg' or ( $syslogfacility-text == 'kern' and $msg startswith 'IPT:' ) then"
'notes' : 'If the default security relevant logs are changed, they should be justified, especially if fewer than the SIMP default are configured'
compliance::nist_800_53_rev4::simp::rsyslog::stock::log_server::rotate_period :
'identifier' : ['AU-4','AU-11']
'value' : 'weekly'
'notes' : 'This value can vary according to storage capacity of a log server'
compliance::nist_800_53_rev4::simp::rsyslog::stock::log_server::rotate :
'identifier' : ['AU-4','AU-11']
'value' : '122'
'notes' : 'This value can vary according to storage capacity of a log server'
compliance::nist_800_53_rev4::simp::rsyslog::stock::log_server::size :
'identifier' : ['AU-4','AU-11']
'value' : '2'
'notes' : 'This value can vary according to storage capacity of a log server'
compliance::nist_800_53_rev4::simp::rsyslog::stock::log_server::use_iptables :
'identifier' : ['AC-4','AC-6']
'value' : true
compliance::nist_800_53_rev4::simp::rsyslog::stock::log_server::forward::log_transport :
'identifier' : 'SI-13'
'value' : 'tcp'
'notes' : 'The use of UDP should be justified'
compliance::nist_800_53_rev4::simp::server::rsync_shares::use_stunnel :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-13','SC-23']
'value' : true
compliance::nist_800_53_rev4::simp::sssd::client::use_ldap :
'identifier' : 'IA-2'
'value' : true
compliance::nist_800_53_rev4::simp::sssd::client::use_autofs :
'identifier' : 'IA-2'
'value' : true
compliance::nist_800_53_rev4::simp::sssd::client::use_sudo :
'identifier' : ['AC-6(9)','AU-14','AU-14(2)']
'value' : true
compliance::nist_800_53_rev4::simp::sssd::client::use_ssh :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-13','SC-23']
'value' : true
compliance::nist_800_53_rev4::simp::sssd::client::enumerate_users :
'identifier' : 'IA-2'
'value' : false
compliance::nist_800_53_rev4::simp::sssd::client::min_id :
'identifier' : 'IA-2'
'value' : '501'
#simplib
compliance::nist_800_53_rev4::simplib::user_umask :
'identifier' : ['AC-2','AC-2(4)','AC-6']
'value' : '0077'
compliance::nist_800_53_rev4::simplib::daemon_umask :
'identifier' : ['AC-2','AC-2(4)','AC-6']
'value' : '0027'
compliance::nist_800_53_rev4::simplib::core_dump :
'identifier' : ['CP-12','SI-11']
'value' : false
compliance::nist_800_53_rev4::simplib::max_logins :
'identifier' : 'AC-10'
'value' : '10'
'notes' : 'Setting this number higher than 10 should be justified'
compliance::nist_800_53_rev4::simplib::ftpusers_min :
'identifier' : ['AC-10','IA-2']
'value' : '500'
compliance::nist_800_53_rev4::simplib::disable_rc_local :
'identifier' : 'CM-6'
'value' : true
'notes' : 'If rc.local is enabled in EL7, it should be justified and documented'
compliance::nist_800_53_rev4::simplib::disable_hosts_equiv :
'identifier' : ['CM-6','SC-8']
'value' : true
compliance::nist_800_53_rev4::simplib::shells :
'identifier' : ['CM-6','CM-7']
'value' : ['/bin/sh','/bin/zsh','/bin/bash','/sbin/nologin']
'notes' : 'Adding or removing shells may not be a bad thing. Any changes to the SIMP default should be justified'
compliance::nist_800_53_rev4::simplib::securetty :
'identifier' : ['IA-2(1)','AC-1(1)']
'value' : ['console','tty1','tty2','tty3','tty4','tty5','tty6','ttyS0','ttyS1']
'notes' : 'This list can actually be reduced in many cases. This is a list that the SIMP team feels might be needed for most systems'
compliance::nist_800_53_rev4::simplib::manage_tmp_perms :
'identifier' : ['AC-3','CM-7']
'value' : true
compliance::nist_800_53_rev4::simplib::manage_root_perms :
'identifier' : ['AC-3','CM-7']
'value' : true
compliance::nist_800_53_rev4::simplib::use_fips :
'identifier' : ['AC-3','AC-17A(2)','IA-7','SC-13']
'value' : true
compliance::nist_800_53_rev4::simplib::use_fips_aesni :
'identifier' : ['AC-3','AC-17A(2)','IA-7','SC-13']
'value' : true
compliance::nist_800_53_rev4::simplib::runlevel :
'identifier' : 'CM-7'
'value' : '3'
'notes' : 'A run level other than 3 should be justified'
compliance::nist_800_53_rev4::simplib::proc_hidepid :
'identifier' : ['AC-3','AC-6']
'value' : '2'
compliance::nist_800_53_rev4::simplib::chkrootkit::destination :
'identifier' : 'SI-3(a)'
'value' : 'syslog'
compliance::nist_800_53_rev4::simplib::cron::use_rsync :
'identifier' : 'CM-2(2)'
'value' : true
compliance::nist_800_53_rev4::simplib::host_conf::spoof :
'identifier' : 'SC-20'
'value' : 'warn'
'notes' : 'This only helps with "Secure Name/Address Resolution" but does not alone meet that control'
compliance::nist_800_53_rev4::simplib::issue::source :
'identifier' : 'AC-8'
'value' : 'puppet:///modules/simplib/etc/issue'
'notes' : 'The actual content should be manually validated to determine if it matches the need of the implementation'
compliance::nist_800_53_rev4::simplib::issue::source :
'identifier' : 'AC-8'
'value' : 'puppet:///modules/simplib/etc/issue'
compliance::nist_800_53_rev4::simplib::libuser_conf::defaults_create_modules :
'identifier' : 'IA-1'
'value' : ['files','shadow']
compliance::nist_800_53_rev4::simplib::libuser_conf::defaults_crypt_style :
'identifier' : ['IA-5(c)','IA-5(h)']
'value' : 'sha512'
compliance::nist_800_53_rev4::simplib::libuser_conf::defaults_hash_rounds_min :
'identifier' : ['IA-5(c)','IA-5(h)']
'value' : ''
compliance::nist_800_53_rev4::simplib::libuser_conf::defaults_hash_rounds_max :
'identifier' : ['IA-5(c)','IA-5(h)']
'value' : ''
compliance::nist_800_53_rev4::simplib::libuser_conf::defaults_modules :
'identifier' : 'IA-1'
'value' : ['files','shadow']
compliance::nist_800_53_rev4::simplib::libuser_conf::defaults_skeleton :
'identifier' : 'IA-1'
'value' : ''
compliance::nist_800_53_rev4::simplib::libuser_conf::import_login_defs :
'identifier' : 'IA-1'
'value' : '/etc/login.defs'
compliance::nist_800_53_rev4::simplib::libuser_conf::import_default_useradd :
'identifier' : 'IA-1'
'value' : '/etc/default/useradd'
compliance::nist_800_53_rev4::simplib::libuser_conf::userdefaults :
'identifier' : 'IA-2'
'value' : "LU_USERNAME = %n\nLU_GIDNUMBER = %u"
compliance::nist_800_53_rev4::simplib::libuser_conf::groupdefaults :
'identifier' : 'IA-2'
'value' : 'LU_GROUPNAME = %n'
compliance::nist_800_53_rev4::simplib::login_defs::chfn_auth :
'identifier' : 'IA-1'
'value' : false
compliance::nist_800_53_rev4::simplib::login_defs::chfn_restrict :
'identifier' : ['AC-1','IA-1']
'value' : 'frwh'
compliance::nist_800_53_rev4::simplib::login_defs::chsh_auth :
'identifier' : 'IA-1'
'value' : false
compliance::nist_800_53_rev4::simplib::login_defs::console :
'identifier' : 'AC-6(5)'
'value' : []
'notes' : 'SIMP restricts root console with other mechanisms. Adding devices here only enhances security'
compliance::nist_800_53_rev4::simplib::login_defs::console_groups :
'identifier' : 'AC-6(5)'
'value' : []
'notes' : 'SIMP restricts root console with other mechanisms. Adding devices here only enhances security'
compliance::nist_800_53_rev4::simplib::login_defs::create_home :
'identifier' : 'AC-3'
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::default_home :
'identifier' : 'AC-3'
'value' : false
compliance::nist_800_53_rev4::simplib::login_defs::encrypt_method :
'identifier' : ['IA-5(c)','IA-5(h)']
'value' : 'SHA512'
compliance::nist_800_53_rev4::simplib::login_defs::fail_delay :
'identifier' : ['AC-7','IA-11']
'value' : '4'
compliance::nist_800_53_rev4::simplib::login_defs::faillog_enab :
'identifier' : 'AU-2'
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::gid_max :
'identifier' : 'IA-1'
'value' : '500000'
compliance::nist_800_53_rev4::simplib::login_defs::gid_min :
'identifier' : 'IA-1'
'value' : '500'
compliance::nist_800_53_rev4::simplib::login_defs::issue_file :
'identifier' : 'AC-8'
'value' : '/etc/issue'
compliance::nist_800_53_rev4::simplib::login_defs::lastlog_enab :
'identifier' : ['AC-9','AC-9(1)','AC-9(2)']
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::log_ok_logins :
'identifier' : ['AC-9','AC-9(1)','AC-9(2)']
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::log_unkfail_enab :
'identifier' : 'AU-2'
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::login_retries :
'identifier' : 'AC-12'
'value' : '3'
compliance::nist_800_53_rev4::simplib::login_defs::login_timeout :
'identifier' : 'AC-12'
'value' : '60'
compliance::nist_800_53_rev4::simplib::login_defs::obscure_checks_enab :
'identifier' : 'IA-5'
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::pass_always_warn :
'identifier' : 'IA-1'
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::pass_change_tries :
'identifier' : 'AC-12'
'value' : '3'
compliance::nist_800_53_rev4::simplib::login_defs::log_unkfail_enab :
'identifier' : 'AU-2'
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::pass_max_days :
'identifier' : ['IA-5(f)','IA-5(1)(d)']
'value' : '180'
compliance::nist_800_53_rev4::simplib::login_defs::pass_min_days :
'identifier' : ['IA-5(f)','IA-5(1)(d)']
'value' : '1'
compliance::nist_800_53_rev4::simplib::login_defs::pass_warn_age :
'identifier' : ['IA-5(f)','IA-5(1)(d)']
'value' : '14'
compliance::nist_800_53_rev4::simplib::login_defs::pass_max_len :
'identifier' : ['IA-5(c)','IA-5(1)(d)']
'value' : ''
'notes' : 'A value assigned here might conflict with other complexity settings'
compliance::nist_800_53_rev4::simplib::login_defs::pass_min_len :
'identifier' : ['IA-5(c)','IA-5(1)(d)']
'value' : '14'
compliance::nist_800_53_rev4::simplib::login_defs::porttime_checks_enab :
'identifier' : 'IA-1'
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::sha_crypt_min_rounds :
'identifier' : ['IA-5(c)','IA-5(h)']
'value' : '5000'
compliance::nist_800_53_rev4::simplib::login_defs::sha_crypt_max_rounds :
'identifier' : ['IA-5(c)','IA-5(h)']
'value' : '10000'
compliance::nist_800_53_rev4::simplib::login_defs::su_name :
'identifier' : 'IA-1'
'value' : 'su'
compliance::nist_800_53_rev4::simplib::login_defs::syslog_sg_enab :
'identifier' : ['AU-2','AU-3']
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::syslog_su_enab :
'identifier' : ['AU-2','AU-3']
'value' : true
compliance::nist_800_53_rev4::simplib::login_defs::uid_max :
'identifier' : 'IA-1'
'value' : '1000000'
compliance::nist_800_53_rev4::simplib::login_defs::umask :
'identifier' : ['AC-2','AC-2(4)','AC-6']
'value' : '007'
compliance::nist_800_53_rev4::simplib::modprobe_blacklist::enable :
'identifier' : 'CM-7'
'value' : true
compliance::nist_800_53_rev4::simplib::modprobe_blacklist::blacklist :
'identifier' : 'CM-7'
'value' : ['bluetooth','cramfs','dccp','dccp_ipv4','dccp_ipv6','freevxfs','hfs','hfsplus','ieee1394','jffs2','net-pf-31','rds','sctp','squashfs','tipc','udf','usb-storage']
compliance::nist_800_53_rev4::simplib::modprobe_blacklist::blacklist_method :
'identifier' : 'CM-7'
'value' : '/bin/true'
compliance::nist_800_53_rev4::simplib::nsswitch::passwd :
'identifier' : 'IA-1'
'value' : ['files']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::shadow :
'identifier' : 'IA-1'
'value' : ['files']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::group :
'identifier' : 'IA-1'
'value' : ['files']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::hosts :
'identifier' : 'IA-1'
'value' : ['files','dns']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::bootparams :
'identifier' : 'IA-1'
'value' : ['nisplus [NOTFOUND=return]','files']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::netgroup :
'identifier' : 'IA-1'
'value' : ['files']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::publickey :
'identifier' : 'IA-1'
'value' : ['nisplus']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::automount :
'identifier' : 'IA-1'
'value' : ['files','nisplus']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::aliases :
'identifier' : 'IA-1'
'value' : ['files','nisplus']
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::use_ldap :
'identifier' : 'IA-1'
'value' : true
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::nsswitch::use_sssd :
'identifier' : 'IA-1'
'value' : true
'notes' : 'This is part of the overall SIMP authentication architecture. Different implementations can be used but should be justified'
compliance::nist_800_53_rev4::simplib::prelink::enable :
'identifier' : 'CM-7'
'value' : false
compliance::nist_800_53_rev4::simplib::profile_settings::session_timeout :
'identifier' : ['AC-11','AC-12']
'value' : '15'
compliance::nist_800_53_rev4::simplib::profile_settings::umask :
'identifier' : ['AC-2','AC-2(4)','AC-6']
'value' : '0077'
compliance::nist_800_53_rev4::simplib::profile_settings::mesg :
'identifier' : 'AC-6'
'value' : false
compliance::nist_800_53_rev4::simplib::profile_settings::user_whitelist :
'identifier' : 'IA-1'
'value' : []
'notes' : 'Any user in this list should be justified'
compliance::nist_800_53_rev4::simplib::profile_settings::prepend :
'identifier' : 'IA-1'
'value' : {}
compliance::nist_800_53_rev4::simplib::profile_settings::append :
'identifier' : 'IA-1'
'value' : {}
compliance::nist_800_53_rev4::simplib::secure_mountpoints::secure_tmp_mounts :
'identifier' : ['AC-3','CM-7']
'value' : true
compliance::nist_800_53_rev4::simplib::secure_mountpoints::tmp_opts :
'identifier' : ['AC-3','CM-7']
'value' : ['noexec','nodev','nosuid']
compliance::nist_800_53_rev4::simplib::secure_mountpoints::var_tmp_opts :
'identifier' : ['AC-3','CM-7']
'value' : ['noexec','nodev','nosuid']
compliance::nist_800_53_rev4::simplib::secure_mountpoints::dev_shm_opts :
'identifier' : ['AC-3','CM-7']
'value' : ['noexec','nodev','nosuid']
compliance::nist_800_53_rev4::simplib::sysconfig::init::single_user_login :
'identifier' : ['IA-2(1)','AC-1(1)']
'value' : '/sbin/sulogin'
compliance::nist_800_53_rev4::simplib::sysctl::fs__suid_dumpable :
'identifier' : ['CP-12','SI-11']
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::kernel__dmesg_restrict :
'identifier' : 'AC-6'
'value' : '1'
compliance::nist_800_53_rev4::simplib::sysctl::kernel__exec_shield :
'identifier' : 'AC-6'
'value' : '1'
compliance::nist_800_53_rev4::simplib::sysctl::kernel__randomize_va_space :
'identifier' : 'SC-30(2)'
'value' : '2'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__conf__all__accept_redirects :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__conf__all__accept_source_route :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__conf__all__log_martians :
'identifier' : ['AC-3(10)','AU-2','SC-5']
'value' : '1'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__conf__all__rp_filter :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '1'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__conf__all__secure_redirects :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__conf__all__send_redirects :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__conf__default__accept_redirects :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__icmp_echo_ignore_broadcasts :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '1'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__icmp_ignore_bogus_error_responses :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '1'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv4__tcp_syncookies :
'identifier' : ['AC-4','CM-7','SC-5']
'value' : '1'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__accept_ra :
'identifier' : 'CM-7'
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__accept_ra_defrtr :
'identifier' : 'CM-7'
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__accept_ra_pinfo :
'identifier' : 'CM-7'
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__accept_ra_rtr_pref :
'identifier' : 'CM-7'
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__accept_redirects :
'identifier' : 'CM-7'
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__autoconf :
'identifier' : 'CM-7'
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__dad_transmits :
'identifier' : 'CM-7'
'value' : '0'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__max_addresses :
'identifier' : 'CM-7'
'value' : '1'
compliance::nist_800_53_rev4::simplib::sysctl::net__ipv6__conf__default__router_solicitations :
'identifier' : 'CM-7'
'value' : '0'
compliance::nist_800_53_rev4::simplib::yum_schedule::repos :
'identifier' : ['CM-3(3)','CM-11(b)','SI-2(c)']
'value' : ['all']
# logrotate
compliance::nist_800_53_rev4::logrotate::manage_wtmp :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : true
# named
compliance::nist_800_53_rev4::named::chroot_path :
'identifier' : 'AC-6'
'value' : '/var/named/chroot'
compliance::nist_800_53_rev4::named::bind_dns_rsync :
'identifier' : 'AC-6'
'value' : 'default'
compliance::nist_800_53_rev4::named::service::chroot :
'identifier' : 'AC-6'
'value' : false
# ntpd
compliance::nist_800_53_rev4::ntpd::logconfig :
'identifier' : ['AU-2','AU-3']
'value' : ['=syncall','+clockall']
#openldap
compliance::nist_800_53_rev4::openldap::use_nscd :
'identifier' : 'IA-1'
'value' : false
compliance::nist_800_53_rev4::openldap::client::tls_cacertdir :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : '/etc/pki/cacerts'
compliance::nist_800_53_rev4::openldap::client::tls_reqcert :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : 'allow'
compliance::nist_800_53_rev4::openldap::pam::start_tls :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : true
compliance::nist_800_53_rev4::openldap::pam::use_auditd :
'identifier' : ['AU-3(2)','AU-4(1)','AU-9']
'value' : true
compliance::nist_800_53_rev4::openldap::pam::bind_policy :
'identifier' : 'IA-1'
'value' : 'hard'
compliance::nist_800_53_rev4::openldap::pam::pam_member_attribute :
'identifier' : ['IA-4(b)','IA-4(c)']
'value' : 'memberUid'
compliance::nist_800_53_rev4::openldap::pam::ssl :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : true
compliance::nist_800_53_rev4::openldap::pam::ssl :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : true
compliance::nist_800_53_rev4::openldap::pam::tls_ciphers :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-13','SC-23']
'value' : ['HIGH','-SSLv2']
compliance::nist_800_53_rev4::openldap::pam::validnames :
'identifier' : 'IA-4'
'value' : '/^[a-z0-9._@$()][a-z0-9._@$() \~-]+[a-z0-9._@$()~-]$/i'
compliance::nist_800_53_rev4::openldap::pam::nss_initgroups_ignoreusers :
'identifier' : 'IA-1'
'value' : ['root','bin','daemon','adm','lp','mail','operator','nobody','dbus','ntp','saslauth','postfix','sshd','puppet','stunnel','nscd','haldaemon','clamav','rpcuser','rpc','clam','nfsnobody','rpm','nslcd','avahi','gdm','rtkit','pulse','hsqldb','radvd','apache','tomcat']
compliance::nist_800_53_rev4::openldap::server::schema_sync :
'identifier' : 'IA-1'
'value' : true
compliance::nist_800_53_rev4::openldap::server::schema_source :
'identifier' : 'IA-1'
'value' : 'puppet:///modules/openldap/etc/openldap/schema'
compliance::nist_800_53_rev4::openldap::server::host_auth_user :
'identifier' : 'IA-2'
'value' : 'hostAuth'
compliance::nist_800_53_rev4::openldap::server::use_ppolicy :
'identifier' : 'IA-5'
'value' : true
compliance::nist_800_53_rev4::openldap::server::use_tcpwrappers :
'identifier' : 'AC-4'
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::audit_to_syslog :
'identifier' : ['AU-3(2)','AU-4(1)','AU-9']
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::auditlog :
'identifier' : 'AU-3'
'value' : '/var/log/slapd.audit'
compliance::nist_800_53_rev4::openldap::server::conf::auditlog_rotate :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : 'daily'
compliance::nist_800_53_rev4::openldap::server::conf::auditlog_preserve :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : '7'
compliance::nist_800_53_rev4::openldap::server::conf::authz_policy :
'identifier' : 'IA-1'
'value' : 'to'
compliance::nist_800_53_rev4::openldap::server::conf::audit_transactions :
'identifier' : 'AU-2'
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::bind_anon :
'identifier' : 'AC-6'
'value' : false
compliance::nist_800_53_rev4::openldap::server::conf::conn_max_pending :
'identifier' : 'SC-5'
'value' : '100'
compliance::nist_800_53_rev4::openldap::server::conf::conn_max_pending_auth :
'identifier' : 'SC-5'
'value' : '100'
compliance::nist_800_53_rev4::openldap::server::conf::default_schemas :
'identifier' : 'IA-1'
'value' : ['openssh-lpk','freeradius','autofs']
compliance::nist_800_53_rev4::openldap::server::conf::disallow :
'identifier' : 'IA-1'
'value' : ['bind_anon','tls_2_anon']
compliance::nist_800_53_rev4::openldap::server::conf::listen_ldaps :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-13','SC-23']
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::slapd_logLevel :
'identifier' : 'AU-3'
'value' : ['stats', 'acl', 'sync']
compliance::nist_800_53_rev4::openldap::server::conf::password_crypt_salt_format :
'identifier' : ['IA-5(c)','IA-1(c)']
'value' : '%s'
compliance::nist_800_53_rev4::openldap::server::conf::password_hash :
'identifier' : ['IA-5(c)','IA-1(c)']
'value' : 'SSHA'
compliance::nist_800_53_rev4::openldap::server::conf::security :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-13','SC-23']
'value' : 'ssf=256 tls=256 update_ssf=256 simple_bind=256 update_tls=256'
compliance::nist_800_53_rev4::openldap::server::conf::use_tls :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-13','SC-23']
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::enable_iptables :
'identifier' : 'AC-4'
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_min_age :
'identifier' : 'IA-5(1)(d)'
'value' : '86400'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_max_age :
'identifier' : 'IA-5(1)(d)'
'value' : '15552000'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_in_history :
'identifier' : 'IA-5(1)(e)'
'value' : '24'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_check_quality :
'identifier' : 'IA-5(1)(a)'
'value' : '2'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_min_length :
'identifier' : 'IA-5(1)(a)'
'value' : '14'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_expire_warning :
'identifier' : 'IA-5(1)(d)'
'value' : '1209600'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_grace_authn_limit :
'identifier' : 'IA-5(1)(d)'
'value' : '-1'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_lockout :
'identifier' : 'AC-7'
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_lockout_duration :
'identifier' : 'AC-7(b)'
'value' : '900'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_max_failure :
'identifier' : 'AC-7(a)'
'value' : '5'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_failure_count_interval :
'identifier' : 'AC-7(b)'
'value' : '900'
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_must_change :
'identifier' : 'AC-7(f)'
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_allow_user_change :
'identifier' : 'AC-7'
'value' : true
compliance::nist_800_53_rev4::openldap::server::conf::default_ldif::ppolicy_pwd_safe_modify :
'identifier' : 'AC-7'
'value' : false
# pam
compliance::nist_800_53_rev4::pam::cracklib_difok :
'identifier' : 'IA-5(1)(a)'
'value' : '4'
compliance::nist_800_53_rev4::pam::cracklib_maxrepeat :
'identifier' : 'IA-5(1)(a)'
'value' : '2'
compliance::nist_800_53_rev4::pam::cracklib_maxsequence :
'identifier' : 'IA-5(1)(a)'
'value' : '4'
compliance::nist_800_53_rev4::pam::cracklib_maxclassrepeat :
'identifier' : 'IA-5(1)(a)'
'value' : '0'
compliance::nist_800_53_rev4::pam::cracklib_reject_username :
'identifier' : 'IA-5(1)(a)'
'value' : true
compliance::nist_800_53_rev4::pam::cracklib_gecoscheck :
'identifier' : 'IA-5(1)(a)'
'value' : true
compliance::nist_800_53_rev4::pam::cracklib_enforce_for_root :
'identifier' : 'IA-5'
'value' : true
compliance::nist_800_53_rev4::pam::cracklib_dcredit :
'identifier' : 'IA-5(1)(a)'
'value' : '-1'
compliance::nist_800_53_rev4::pam::cracklib_ucredit :
'identifier' : 'IA-5(1)(a)'
'value' : '-1'
compliance::nist_800_53_rev4::pam::cracklib_lcredit :
'identifier' : 'IA-5(1)(a)'
'value' : '-1'
compliance::nist_800_53_rev4::pam::cracklib_ocredit :
'identifier' : 'IA-5(1)(a)'
'value' : '-1'
compliance::nist_800_53_rev4::pam::cracklib_minclass :
'identifier' : 'IA-5(1)(a)'
'value' : '3'
compliance::nist_800_53_rev4::pam::cracklib_minlen :
'identifier' : 'IA-5(1)(a)'
'value' : '14'
compliance::nist_800_53_rev4::pam::cracklib_retry :
'identifier' : 'AC-7(a)'
'value' : '3'
compliance::nist_800_53_rev4::pam::deny :
'identifier' : 'IA-1'
'value' : '5'
compliance::nist_800_53_rev4::pam::display_account_lock :
'identifier' : 'AC-7'
'value' : false
compliance::nist_800_53_rev4::pam::homedir_umask :
'identifier' : ['AC-2','AC-2(4)','AC-6']
'value' : '0077'
compliance::nist_800_53_rev4::pam::remember :
'identifier' : 'IA-5(1)(e)'
'value' : '24'
compliance::nist_800_53_rev4::pam::root_unlock_time :
'identifier' : 'AC-7(b)'
'value' : '60'
compliance::nist_800_53_rev4::pam::rounds :
'identifier' : 'IA-5(c)'
'value' : '10000'
compliance::nist_800_53_rev4::pam::uid :
'identifier' : 'IA-1'
'value' : '500'
compliance::nist_800_53_rev4::pam::unlock_time :
'identifier' : 'AC-7(b)'
'value' : '900'
compliance::nist_800_53_rev4::pam::fail_interval :
'identifier' : 'AC-7(b)'
'value' : '900'
compliance::nist_800_53_rev4::pam::preserve_ac :
'identifier' : 'IA-1'
'value' : false
compliance::nist_800_53_rev4::pam::deny_if_unknown :
'identifier' : 'IA-1'
'value' : true
compliance::nist_800_53_rev4::pam::use_netgroups :
'identifier' : 'IA-1'
'value' : false
compliance::nist_800_53_rev4::pam::wheel::wheel_group :
'identifier' : 'IA-1'
'value' : 'wheel'
compliance::nist_800_53_rev4::pam::wheel::root_only :
'identifier' : 'IA-1'
'value' : false
# pki
compliance::nist_800_53_rev4::pki::enable_audit :
'identifier' : ['AU-3(2)','AU-4(1)','AU-9']
'value' : true
# postfix
compliance::nist_800_53_rev4::postfix::enable_server :
'identifier' : 'CM-7'
'value' : false
compliance::nist_800_53_rev4::postfix::server::enable_iptables :
'identifier' : 'AC-4'
'value' : true
compliance::nist_800_53_rev4::postfix::server::enable_user_connect :
'identifier' : 'AC-1'
'value' : true
compliance::nist_800_53_rev4::postfix::server::enable_tls :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : true
compliance::nist_800_53_rev4::postfix::server::enforce_tls :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : true
compliance::nist_800_53_rev4::postfix::server::mandatory_ciphers :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : true
compliance::nist_800_53_rev4::postfix::server::enable_simp_pki :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : true
# pupmod
compliance::nist_800_53_rev4::pupmod::auditd_support :
'identifier' : ['AU-3(2)','AU-4(1)','AU-9']
'value' : true
compliance::nist_800_53_rev4::pupmod::ca_crl_pull_interval :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : '2'
compliance::nist_800_53_rev4::pupmod::confdir :
'identifier' : 'CM-6'
'value' : '/etc/puppet'
compliance::nist_800_53_rev4::pupmod::daemonize :
'identifier' : 'CM-6'
'value' : false
compliance::nist_800_53_rev4::pupmod::digest_algorithm :
'identifier' : ['SI-7','SI-7(1)','SI-7(6)']
'value' : 'sha256'
compliance::nist_800_53_rev4::pupmod::environmentpath :
'identifier' : 'CM-6'
'value' : '/etc/puppet/environments'
compliance::nist_800_53_rev4::pupmod::logdir :
'identifier' : 'AU-3'
'value' : '/var/log/puppet'
compliance::nist_800_53_rev4::pupmod::vardir :
'identifier' : 'CM-6'
'value' : '/var/lib/puppet'
compliance::nist_800_53_rev4::pupmod::syslogfacility :
'identifier' : ['AU-3(2)','AU-4(1)','AU-9']
'value' : 'local6'
compliance::nist_800_53_rev4::pupmod::master::bind_address :
'identifier' : 'CM-7'
'value' : '0.0.0.0'
compliance::nist_800_53_rev4::pupmod::master::ca_bind_address :
'identifier' : 'CM-7'
'value' : '0.0.0.0'
compliance::nist_800_53_rev4::pupmod::master::daemonize :
'identifier' : 'CM-6'
'value' : true
compliance::nist_800_53_rev4::pupmod::master::environmentpath :
'identifier' : 'CM-6'
'value' : '/etc/puppet/environments'
compliance::nist_800_53_rev4::pupmod::master::use_iptables :
'identifier' : 'CM-7'
'value' : true
compliance::nist_800_53_rev4::pupmod::master::ssl_protocols :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : ['TLSv1','TLSv1.1','TLSv1.2']
compliance::nist_800_53_rev4::pupmod::master::log_to_syslog :
'identifier' : ['AU-3(2)','AU-4(1)','AU-9']
'value' : true
compliance::nist_800_53_rev4::pupmod::master::syslog_message_format :
'identifier' : 'AU-2'
'value' : '%logger[%thread]: %msg'
compliance::nist_800_53_rev4::pupmod::master::reports::purge :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : true
compliance::nist_800_53_rev4::pupmod::master::reports::purge_keep_days :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : '7'
compliance::nist_800_53_rev4::pupmod::master::sysconfig::java_max_memory :
'identifier' : ['SC-5','CM-6']
'value' : '80%'
compliance::nist_800_53_rev4::pupmod::master::sysconfig::java_max_perm_size :
'identifier' : ['SC-5','CM-6']
'value' : '256m'
compliance::nist_800_53_rev4::pupmod::agent::cron::interval :
'identifier' : 'CM-3(3)'
'value' : '30'
'notes' : 'Changing this interval should not impact security unless the value is very low or very high.'
compliance::nist_800_53_rev4::pupmod::agent::cron::run_timeframe :
'identifier' : 'CM-3(3)'
'value' : '60'
'notes' : 'Changing this interval should not impact security unless the value is very low or very high.'
compliance::nist_800_53_rev4::pupmod::agent::cron::hour :
'identifier' : 'CM-3(3)'
'value' : '*'
compliance::nist_800_53_rev4::pupmod::agent::cron::monthday :
'identifier' : 'CM-3(3)'
'value' : '*'
compliance::nist_800_53_rev4::pupmod::agent::cron::month :
'identifier' : 'CM-3(3)'
'value' : '*'
compliance::nist_800_53_rev4::pupmod::agent::cron::weekday :
'identifier' : 'CM-3(3)'
'value' : '*'
# rsync
compliance::nist_800_53_rev4::rsync::server::use_stunnel :
'identifier' : ['SC-8', 'SC-8(1)','SC-8(2)','SC-23']
'value' : true
compliance::nist_800_53_rev4::rsync::server::global::address :
'identifier' : 'CM-7'
'value' : '127.0.0.1'
# rsyslog
compliance::nist_800_53_rev4::rsyslog::rule_dir :
'identifier' : 'CM-6'
'value' : '/etc/rsyslog.simp.d'
'notes' : 'Changing this value will move the location of the default simp rules'
compliance::nist_800_53_rev4::rsyslog::enable_logrotate :
'identifier' : ['AU-4','AU-5(b)','AU-11']
'value' : true
compliance::nist_800_53_rev4::rsyslog::config::umask :
'identifier' : ['AC-2','AC-2(4)','AC-6']
'value' : '0027'
compliance::nist_800_53_rev4::rsyslog::config::preserve_fqdn :
'identifier' : 'AU-3'
'value' : true
compliance::nist_800_53_rev4::rsyslog::config::main_msg_queue_type :
'identifier' : 'AU-5(b)'
'value' : 'LinkedList'
compliance::nist_800_53_rev4::rsyslog::config::main_msg_queue_save_on_shutdown :
'identifier' : 'AU-5(b)'
'value' : 'on'
compliance::nist_800_53_rev4::rsyslog::config::enable_default_rules :
'identifier' : 'AU-4(1)'
'value' : true
compliance::nist_800_53_rev4::rsyslog::server::enable_firewall :
'identifier' : 'AU-4(1)'
'value' : true
compliance::nist_800_53_rev4::rsyslog::server::enable_selinux :
'identifier' : 'AC-3(3)'
'value' : true
compliance::nist_800_53_rev4::rsyslog::server::enable_tcpwrappers :
'identifier' : 'AC-4'
'value' : true
# selinux
compliance::nist_800_53_rev4::selinux::ensure :
'identifier' : 'AC-3(3)'
'value' : 'enforcing'
compliance::nist_800_53_rev4::selinux::mode :
'identifier' : 'AC-3(3)'
'value' : 'targeted'
# ssh
compliance::nist_800_53_rev4::ssh::enable_client :
'identifier' : ['AC-17','AC-17(2)']
'value' : false
compliance::nist_800_53_rev4::ssh::enable_client :
'identifier' : ['AC-17','AC-17(2)']
'value' : true
compliance::nist_800_53_rev4::ssh::client::add_default_entry :
'identifier' : ['AC-2(1)','AC-6','AC-17(2)','IA-7','SC-8','SC-8(1)','SC-8(2)','SC-23']
'value' : true
'notes' : 'If the default entry is not used, each of the values for the ssh client config should be evaluated'