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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
|
{{#
How to log in to a Red Hat CoreOS Node
#}}
{{% macro rhcos_node_login_instructions() -%}}
As a user with administrator privileges, log into a node in the relevant pool:
<pre>
$ oc debug node/$NODE_NAME
</pre>
At the <pre>sh-4.4#</pre> prompt, run:
<pre>
# chroot /host
</pre>
{{% endmacro %}}
{{# OC macros #}}
{{#
Macro that creates a check from :code:`oc` output
#}}
{{% macro ocil_oc_pipe_jq_filter(object, jqfilter, namespace=none, all_namespaces=false) -%}}
$ oc get {{% if all_namespaces %}}--all-namespaces{{% elif namespace %}}-n {{{ namespace }}}{{% endif %}} {{{ object }}} -o json | jq '{{{ jqfilter }}}'
{{%- endmacro %}}
{{% macro sshd_config_file() %}}
{{% if sshd_distributed_config == "true" %}}
<tt>/etc/ssh/sshd_config.d/00-complianceascode-hardening.conf</tt>:
{{% else %}}
<tt>/etc/ssh/sshd_config</tt>:
{{% endif %}}
{{%- endmacro %}}
{{# Audit macros #}}
{{#
Standard audit OCIL clause
#}}
{{%- macro ocil_clause_audit() -%}}
the command does not return a line, or the line is commented out
{{%- endmacro %}}
{{#
OCIL and OCIL clause for ensuring that a privileged command is audited.
:param cmd: The command to audit
:type cmd: str
:param path_prefix: The directory the command is in
:type path_prefix: str
#}}
{{% macro complete_ocil_entry_audit_privileged_commands(cmd, path_prefix, key) %}}
ocil_clause: '{{{ ocil_clause_audit() }}}'
ocil: |-
Verify that {{{ full_name }}} is configured to audit the execution of the "{{{ cmd }}}" command with the following command:
$ sudo auditctl -l | grep {{{ cmd }}}
-a always,exit -F path={{{ path_prefix }}}{{{ cmd }}} -F perm=x -F auid>={{{ auid }}} -F auid!=unset -k {{% if key %}}{{{ key }}}{{% else %}}privileged-{{{ cmd }}}{{% endif %}}
{{% endmacro %}}
{{#
OCIL for adding a syscall to audit logs
:param syscall: The syscall to audit
:type syscall: str
#}}
{{% macro ocil_audit_syscall(syscall) -%}}
To determine if the system is configured to audit calls to the
<code>{{{ syscall }}}</code> system call, run the following command:
<pre space="preserve">$ sudo grep "{{{ syscall }}}" /etc/audit/audit.*</pre>
If the system is configured to audit this activity, it will return a line.
{{%- endmacro %}}
{{#
OCIL clause for adding a syscall to audit logs
#}}
{{% macro ocil_clause_entry_audit_syscall() -%}}
ocil_clause: "no line is returned"
{{%- endmacro %}}
{{#
OCIL and OCIL clause for adding a syscall to audit logs
:param syscall: The syscall to audit
:type syscall: str
#}}
{{% macro complete_ocil_entry_audit_syscall(syscall) -%}}
ocil: |
{{{ ocil_audit_syscall(syscall) }}}
{{{ ocil_clause_entry_audit_syscall() }}}
{{%- endmacro %}}
{{#
OCIL for adding a successful syscall to audit logs
:param syscall: The syscall to audit
:type syscall: str
#}}
{{% macro ocil_audit_successful_syscall(syscall) -%}}
To determine if the system is configured to audit successful calls
to the <code>{{{ syscall }}}</code> system call, run the following command:
<pre space="preserve">$ sudo grep "{{{ syscall }}}" /etc/audit.*</pre>
If the system is configured to audit this activity, it will return a line.
{{%- endmacro %}}
{{#
OCIL for adding a unsuccessful syscall to audit logs
:param syscall: The syscall to audit
:type syscall: str
#}}
{{% macro ocil_audit_unsuccessful_syscall(syscall) -%}}
To determine if the system is configured to audit unsuccessful calls
to the <code>{{{ syscall }}}</code> system call, run the following command:
<pre space="preserve">$ sudo grep "{{{ syscall }}}" /etc/audit.*</pre>
If the system is configured to audit this activity, it will return a line.
{{%- endmacro %}}
{{#
OCIL and OCIL clause for adding a successful syscall to audit logs
:param syscall: The syscall to audit
:type syscall: str
#}}
{{% macro complete_ocil_entry_audit_successful_syscall(syscall) -%}}
ocil: |
{{{ ocil_audit_successful_syscall(syscall) }}}
{{{ ocil_clause_entry_audit_syscall() }}}
{{%- endmacro %}}
{{#
OCIL and OCIL clause for adding a unsuccessful syscall to audit logs
:param syscall: The syscall to audit
:type syscall: str
#}}
{{% macro complete_ocil_entry_audit_unsuccessful_syscall(syscall) -%}}
ocil: |
{{{ ocil_audit_unsuccessful_syscall(syscall) }}}
{{{ ocil_clause_entry_audit_syscall() }}}
{{%- endmacro %}}
{{# Package macros #}}
{{#
Describe how to check if a package is installed with rpm.
:param package: The package to check
:type package: str
#}}
{{%- macro rpm_ocil_package(package) -%}}
Run the following command to determine if the <code>{{{ package }}}</code> package is installed:
<pre>$ rpm -q {{{ package }}}</pre>
{{%- endmacro -%}}
{{#
Describe how to check if a package is installed with dpkg.
:param package: The package to check
:type package: str
#}}
{{%- macro dpkg_ocil_package(package) %}}
Run the following command to determine if the <code>{{{ package }}}</code> package is installed:
<pre>$ dpkg -l {{{ package }}}</pre>
{{%- endmacro %}}
{{#
Insert general ocil clause to check if a package is installed, substituting the
correct package management software.
:param package: Name of package
:type package: str
#}}
{{% macro ocil_package(package) -%}}
{{% if pkg_system is defined %}}
{{%- if pkg_system == "rpm" -%}}
{{{ rpm_ocil_package(package) }}}
{{%- elif pkg_system == "dpkg" -%}}
{{{ dpkg_ocil_package(package) }}}
{{%- else -%}}
JINJA MACRO ERROR - Unknown package system '{{{ pkg_system }}}'.
{{%- endif -%}}
{{%- endif -%}}
{{%- endmacro %}}
{{#
OCIL and OCIL clause how to check if a package is installed with rpm.
:param package: The package to check
:type package: str
#}}
{{%- macro rpm_complete_ocil_entry_package(package) %}}
ocil: |-
{{{ rpm_ocil_package(package) }}}
ocil_clause: "the package is installed"
{{%- endmacro %}}
{{#
OCIL and OCIL clause how to check if a package is installed with dpkg.
:param package: The package to check
:type package: str
#}}
{{%- macro dpkg_complete_ocil_entry_package(package) %}}
ocil: |-
{{{ dpkg_ocil_package(package) }}}
ocil_clause: "the package is installed"
{{%- endmacro %}}
{{#
Insert a complete OCIL block for a case when a package should be removed,
substituting the correct package management software.
:param package: Name of package
:type package: str
#}}
{{% macro complete_ocil_entry_package(package) -%}}
{{% if pkg_system is defined %}}
{{%- if pkg_system == "rpm" %}}
{{{ rpm_complete_ocil_entry_package(package) }}}
{{%- elif pkg_system == "dpkg" %}}
{{{ dpkg_complete_ocil_entry_package(package) }}}
{{%- else -%}}
ocil: |-
JINJA MACRO ERROR - Unknown package system '{{{ pkg_system }}}'.
{{%- endif -%}}
{{%- endif -%}}
{{%- endmacro %}}
{{# Service Enabled macros #}}
{{#
Describe how to check if a service is enabled via systemd.
:param service: The service to check
:type service: str
#}}
{{%- macro systemd_ocil_service_enabled(service) %}}
{{% if product == "rhcos4" -%}}
{{{ rhcos_node_login_instructions() }}}
{{%- endif %}}
Run the following command to determine the current status of the
<code>{{{ service }}}</code> service:
<pre>$ sudo systemctl is-active {{{ service }}}</pre>
If the service is running, it should return the following: <pre>active</pre>
{{%- endmacro %}}
{{#
Inserts an OCIL for a case when a service should be enabled,
substituting the correct init system.
:param service: Name of service
:type service: str
#}}
{{% macro ocil_service_enabled(service) -%}}
{{% if init_system is defined %}}
{{%- if init_system == "systemd" -%}}
{{{ systemd_ocil_service_enabled(service) }}}
{{%- else -%}}
JINJA MACRO ERROR - Unknown init system '{{{ init_system }}}'.
{{%- endif -%}}
{{%- endif -%}}
{{%- endmacro %}}
{{#
Inserts an OCIL Clause for a case when a service should be enabled.
:param service: Name of service
:type service: str
#}}
{{% macro ocil_clause_service_enabled(service) -%}}
the "{{{ service }}}" service is disabled, masked, or not started.
{{%- endmacro %}}
{{# Service Disabled macros #}}
{{#
Describe how to check if a service is disabled via systemd.
:param service: The service to check
:type service: str
#}}
{{%- macro systemd_ocil_service_disabled(service) -%}}
To check that the <code>{{{ service }}}</code> service is disabled in system boot configuration,
{{% if product == "rhcos4" -%}}
You'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Subsequently,
{{%- endif -%}}
run the following command:
<pre>$ sudo systemctl is-enabled <code>{{{ service }}}</code></pre>
Output should indicate the <code>{{{ service }}}</code> service has either not been installed,
or has been disabled at all runlevels, as shown in the example below:
<pre>$ sudo systemctl is-enabled <code>{{{ service }}}</code><br/> disabled</pre>
Run the following command to verify <code>{{{ service }}}</code> is not active (i.e. not running) through current runtime configuration:
<pre>$ sudo systemctl is-active {{{ service }}}</pre>
If the service is not running the command will return the following output:
<pre>inactive</pre>
The service will also be masked, to check that the <code>{{{ service }}}</code> is masked, run the following command:
<pre>$ sudo systemctl show <code>{{{ service }}}</code> | grep "LoadState\|UnitFileState"</pre>
If the service is masked the command will return the following outputs:
<pre>LoadState=masked</pre>
<pre>UnitFileState=masked</pre>
{{%- endmacro %}}
{{#
Inserts an OCIL for a case when a service should be disabled,
substituting the correct init system.
:param service: Name of service
:type service: str
#}}
{{% macro ocil_service_disabled(service) -%}}
{{% if init_system is defined %}}
{{%- if init_system == "systemd" -%}}
{{{ systemd_ocil_service_disabled(service) }}}
{{%- else -%}}
JINJA MACRO ERROR - Unknown init system '{{{ init_system }}}'.
{{%- endif -%}}
{{%- endif -%}}
{{%- endmacro %}}
{{#
Inserts an OCIL Clause for a case when a service should be disabled.
:param service: Name of service
:type service: str
#}}
{{% macro ocil_clause_service_disabled(service) -%}}
the "{{{ service }}}" is loaded and not masked
{{%- endmacro %}}
{{# Socket and Service Disabled macros #}}
{{#
Describe how to check if service is disabled in system boot configuration with xinetd.
:param service: service to disable
:type service: str
#}}
{{%- macro xinetd_disabled_check_with_systemd(service) %}}
To check that the <code>{{{ service }}}</code> service is disabled in system boot configuration with xinetd, run the following command:
<pre>$ chkconfig <code>{{{ service }}}</code> --list</pre>
Output should indicate the <code>{{{ service }}}</code> service has either not been installed, or has been disabled, as shown in the example below:
<pre>$ chkconfig <code>{{{ service }}}</code> --list
Note: This output shows SysV services only and does not include native
systemd services. SysV configuration data might be overridden by native
systemd configuration.
If you want to list systemd services use 'systemctl list-unit-files'.
To see services enabled on particular target use
'systemctl list-dependencies [target]'.
<code>{{{ service }}}</code> off</pre>
{{%- endmacro %}}
{{#
Describe how to check if socket is disabled with systemd.
:param socket: The socket to check
:type socket: str
#}}
{{%- macro socket_disabled_check_with_systemd(socket) %}}
To check that the <code>{{{ socket }}}</code> socket is disabled in system boot configuration with systemd, run the following command:
<pre>$ systemctl is-enabled <code>{{{ socket }}}</code></pre>
Output should indicate the <code>{{{ socket }}}</code> socket has either not been installed,
or has been disabled at all runlevels, as shown in the example below:
<pre>$ sudo systemctl is-enabled <code>{{{ socket }}}</code><br/>disabled</pre>
Run the following command to verify <code>{{{ socket }}}</code> is not active (i.e. not running) through current runtime configuration:
<pre>$ sudo systemctl is-active {{{ socket }}}</pre>
If the socket is not running the command will return the following output:
<pre>inactive</pre>
The socket will also be masked, to check that the <code>{{{ socket }}}</code> is masked, run the following command:
<pre>$ sudo systemctl show <code>{{{ socket }}}</code> | grep "LoadState\|UnitFileState"</pre>
If the socket is masked the command will return the following outputs:
<pre>LoadState=masked</pre>
<pre>UnitFileState=masked</pre>
{{%- endmacro %}}
{{#
OCIL and OCIL clause for ensure socket is disabled in systemd and xinetd.
:param name: The socket to check
:type name: str
#}}
{{%- macro systemd_complete_ocil_entry_socket_and_service_disabled(name) %}}
ocil: |-
{{{ xinetd_disabled_check_with_systemd(name) }}}
{{{ socket_disabled_check_with_systemd(name) }}}
ocil_clause: "service and/or socket are running"
{{%- endmacro %}}
{{#
Inserts an OCIL for a case when a service and a corresponding socket should be
disabled, substituting the correct init system.
:param service: Name of service
:type service: str
#}}
{{% macro complete_ocil_entry_socket_and_service_disabled(service) -%}}
{{% if init_system is defined %}}
{{%- if init_system == "systemd" -%}}
{{{ systemd_complete_ocil_entry_socket_and_service_disabled(service) }}}
{{%- else -%}}
ocil: |-
JINJA MACRO ERROR - Unknown init system '{{{ init_system }}}'.
{{%- endif -%}}
{{%- endif -%}}
{{%- endmacro %}}
{{# SSHD macros #}}
{{#
An OCIL clause for an sshd option
#}}
{{% macro ocil_clause_entry_sshd_option() -%}}
ocil_clause: "the required value is not set"
{{%- endmacro %}}
{{#
OCIL for an sshd option.
Example usage::
ocil_sshd_option(default="no", option="Banner", value="/etc/issue")
:param default: If set to yes the default value is accepted
:type default: str
:param option: The sshd option to configure
:type option: str
:param value: The value for the given option
:type value: str
#}}
{{% macro ocil_sshd_option(default, option, value) -%}}
To determine how the SSH daemon's <tt>{{{ option }}}</tt> option is set, run the following command:
{{% if sshd_distributed_config == "true" %}}
<pre>$ sudo grep -i {{{ option }}} /etc/ssh/sshd_config.d/00-complianceascode-hardening.conf</pre>
{{% if default == "yes" -%}}
<pre>$ sudo grep -i {{{ option }}} /etc/ssh/sshd_config.d/01-complianceascode-reinforce-os-defaults.conf</pre>
{{%- endif %}}
{{% else %}}
<pre>$ sudo grep -i {{{ option }}} /etc/ssh/sshd_config</pre>
{{% endif %}}
If a line indicating <tt>{{{ value }}}</tt> is returned, then the required value is set.
{{%- endmacro %}}
{{#
OCIL and OCIL clause for and sshd option.
Example usage::
complete_ocil_entry_sshd_option(default="no", option="Banner", value="/etc/issue")
:param default: If set to yes the default value is accepted
:type default: str
:param option: The sshd option to configure
:type option: str
:param value: The value for the given option
:type value: str
#}}
{{% macro complete_ocil_entry_sshd_option(default, option, value) -%}}
ocil: |
{{{ ocil_sshd_option(default, option, value) }}}
{{{ ocil_clause_entry_sshd_option() }}}
{{%- endmacro %}}
{{# Mount option macros #}}
{{#
The OCIL text for mount options.
:param point: The mount point to check
:type point: str
:param option: The options the mount point should have
:type option: str
#}}
{{% macro ocil_mount_option(point, option) -%}}
Verify the <tt>{{{ option }}}</tt> option is configured for the <tt>{{{ point }}}</tt> mount point,
{{% if product == "rhcos4" -%}}
You'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Subsequently,
{{%- endif -%}}
run the following command:
<pre>$ sudo mount | grep '\s{{{ point }}}\s'</pre>
<pre>. . . {{{ point }}} . . . {{{ option }}} . . .</pre>
{{%- endmacro %}}
{{#
The OCIL clause for mount options.
:param point: The mount point to check
:type point: str
:param option: The options the mount point should have
:type option: str
#}}
{{% macro ocil_clause_entry_mount_option(point, option) -%}}
ocil_clause: the "{{{ point }}}" file system does not have the "{{{ option }}}" option set
{{%- endmacro %}}
{{#
The OCIL and OCIL clause for mount options.
:param point: The mount point to check
:type point: str
:param option: The options the mount point should have
:type option: str
#}}
{{% macro complete_ocil_entry_mount_option(point, option) -%}}
ocil: |
{{{ ocil_mount_option(point, option) | indent(4) }}}
{{{ ocil_clause_entry_mount_option(point, option) }}}
{{%- endmacro %}}
{{# Partition macros #}}
{{#
Describe how to check if given path is on its own partition or logical volume.
:param part: Path to check
:type part: str
#}}
{{% macro partition_check(part) -%}}
{{% if product == "rhcos4" -%}}
You'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Subsequently,
{{%- endif -%}}
Verify that a separate file system/partition has been created for <code>{{{ part }}}</code> with the following command:
<pre>$ mountpoint {{{ part }}}</pre>
{{%- endmacro %}}
{{#
OCIL for how to check if given path is on its own partition or logical volume and the
correct OCIL clause.
:param part: Path to check
:type part: str
#}}
{{% macro complete_ocil_entry_separate_partition(part) -%}}
ocil: |
{{{ partition_check(part) }}}
ocil_clause: '"{{{ part }}} is not a mountpoint" is returned'
{{%- endmacro %}}
{{# Firewalld macros #}}
{{%- macro _firewalld_check(access_action, port, proto, service) %}}
To determine if <code>firewalld</code> is configured to {{{ access_action }}}
{{% if port is not none %}}
on port <code>{{{ port }}}/{{{ proto }}}</code>, run the following command(s):
<code>firewall-cmd --list-ports</code>
{{% endif %}}
{{% if service is not none %}}
to <code>{{{ service }}}</code>
<code>firewall-cmd --list-services</code>
{{% endif %}}
{{%- endmacro %}}
{{%- macro _firewalld_access_param_check(macroname, port, proto, service) %}}
{{%- if ((port is none) and (proto is not none)) or ((port is not none) and (proto is none)) %}}
{{{- raise(macroname ~ ": if you have proto/port you need respectively port/proto") }}}
{{%- endif %}}
{{%- if (service is none) and (port is none) %}}
{{{- raise(macroname ~ ": define either service, or port+proto") }}}
{{%- endif %}}
{{%- endmacro %}}
{{#
OCIL for allowing a port or service in firewalld. If the :code:`service` parameter is defined
it is assumed to be a service and the :code:`port` and :code:`proto` parameters will have no effect.
:param port: The port to allow
:type port: str
:param proto: The protocol to allow
:type proto: str
:param service: The service to allow
:type service: str
#}}
{{%- macro ocil_firewalld_allow_access(port=none, proto=none, service=none) %}}
{{{ _firewalld_access_param_check(name, port, proto, service) }}}
{{{ _firewalld_check("allow access", port, proto, service) }}}
If <code>firewalld</code> is configured to allow access through the firewall, something similar to the following will be output:
{{% if service is not none %}}
If it is a service:
<code>{{{ service }}}</code>
{{% endif %}}
{{% if port is not none %}}
If it is a port:
<code>{{{ port }}}/{{{ proto }}}</code>
{{% endif %}}
{{%- endmacro %}}
{{#
OCIL for preventing access a port or service in firewalld. If the :code:`service` parameter is defined
it is assumed to be a service and the :code:`port` and :code:`proto` parameters will have no effect.
:param port: The port to allow
:type port: int
:param proto: The protocol to allow
:type proto: str
:param service: The service to allow
:type service: str
#}}
{{%- macro ocil_firewalld_prevent_access(port=none, proto=none, service=none) %}}
{{{ _firewalld_access_param_check(name, port, proto, service) }}}
{{{ _firewalld_check("prevent access", port, proto, service) }}}
If <code>firewalld</code> is configured to prevent access, no output will be returned.
{{%- endmacro %}}
{{# Kernel modules macros #}}
{{#
OCIL for disabling a kernel module.
:param module: The module to disable.
:type module: str
#}}
{{%- macro ocil_module_disable(module) %}}
If the system is configured to prevent the loading of the <code>{{{ module }}}</code> kernel module,
it will contain lines inside any file in <code>/etc/modprobe.d</code> or the deprecated<code> /etc/modprobe.conf</code>.
These lines instruct the module loading system to run another program (such as <code>/bin/false</code>) upon a module <code>install</code> event.
{{% if "ol" in product or product in ["rhel8"] %}}
These lines can also instruct the module loading system to ignore the <code>{{{ module }}}</code> kernel module via <code>blacklist</code> keyword.
{{% endif %}}
Run the following command to search for such lines in all files in <code>/etc/modprobe.d</code> and the deprecated <code>/etc/modprobe.conf</code>:
<pre>$ grep -r {{{ module }}} /etc/modprobe.conf /etc/modprobe.d</pre>
{{%- endmacro %}}
{{#
OCIL and OCIL clause for disabling a kernel module.
:param module: The module to disable.
:type module: str
#}}
{{%- macro complete_ocil_entry_module_disable(module) %}}
ocil: |-
{{{ ocil_module_disable(module) }}}
ocil_clause: "no line is returned"
{{%- endmacro %}}
{{# SELinux boolean macros #}}
{{#
OCIL and OCIL clause for how to check if given SELinux boolean is set depending on a variable.
:param sebool: The SELinux boolean to check
:type sebool: str
#}}
{{%- macro complete_ocil_entry_sebool_var(sebool) %}}
ocil: |-
{{{ describe_sebool_check_var(sebool) }}}
ocil_clause: "{{{ sebool }}} is not set as expected"
{{%- endmacro %}}
{{#
Describe how to check if given SELinux boolean is set depending on a variable.
:param sebool: The SELinux boolean to check
:type sebool: str
#}}
{{%- macro describe_sebool_check_var(sebool) %}}
Run the following command to get the current configured value for <code>{{{ sebool }}}</code>
SELinux boolean:
<pre>$ getsebool {{{ sebool }}}</pre>
The expected cofiguration is {{{ xccdf_value("var_" + sebool) }}}.
"on" means true, and "off" means false
{{%- endmacro %}}
{{# SELinux boolean macros #}}
{{#
Describe how to check if given SELinux boolean is disabled.
:param sebool: The SELinux boolean to check
:type sebool: str
#}}
{{%- macro describe_sebool_check_disabled(sebool) %}}
Run the following command to determine if the <code>{{{ sebool }}}</code> SELinux boolean is disabled:
<pre>$ getsebool {{{ sebool }}}</pre>
If properly configured, the output should show the following:
<code>{{{ sebool }}} --> off</code>
{{%- endmacro %}}
{{#
OCIL and OCIL clause for how to check if given SELinux boolean is disabled.
:param sebool: The SELinux boolean to check
:type sebool: str
#}}
{{%- macro complete_ocil_entry_sebool_disabled(sebool) %}}
ocil: |-
{{{ describe_sebool_check_disabled(sebool) }}}
ocil_clause: "{{{ sebool }}} is not disabled"
{{%- endmacro %}}
{{#
Describe how to check if given SELinux boolean is enabled.
:param sebool: The SELinux boolean to check
:type sebool: str
#}}
{{%- macro describe_sebool_check_enabled(sebool) %}}
Run the following command to determine if the <code>{{{ sebool }}}</code> SELinux boolean is enabled:
<pre>$ getsebool {{{ sebool }}}</pre>
If properly configured, the output should show the following:
<code>{{{ sebool }}} --> on</code>
{{%- endmacro %}}
{{#
OCIL and OCIL clause for how to check if given SELinux boolean is enabled.
:param sebool: The SELinux boolean to check
:type sebool: str
#}}
{{%- macro complete_ocil_entry_sebool_enabled(sebool) %}}
ocil: |-
{{{ describe_sebool_check_enabled(sebool) }}}
ocil_clause: "{{{ sebool }}} is not enabled"
{{%- endmacro %}}
{{# Timer enabled macros #}}
{{#
Describe how to check if timer is enabled in systemd.
:param timer: The timer to check
:type timer: str
#}}
{{%- macro systemd_ocil_timer_enabled(timer) %}}
Run the following command to determine the current status of the
<code>{{{ timer }}}</code> timer:
<pre>$ sudo systemctl is-active {{{ timer }}}.timer</pre>
If the timer is running, it should return the following: <pre>active</pre>
{{%- endmacro %}}
{{#
Inserts an OCIL for a case when a timer should be enabled,
substituting the correct init system.
:param timer: Name of timer
:type timer: str
#}}
{{% macro ocil_timer_enabled(timer) -%}}
{{% if init_system is defined %}}
{{%- if init_system == "systemd" -%}}
{{{ systemd_ocil_timer_enabled(timer) }}}
{{%- else -%}}
JINJA MACRO ERROR - Unknown init system '{{{ init_system }}}'.
{{%- endif -%}}
{{%- endif -%}}
{{%- endmacro %}}
{{# Mount unit enabled macros #}}
{{#
Describe how to check if mount unit is enabled in systemd.
:param mount: The mount unit to check
:type mount: str
#}}
{{%- macro ocil_systemd_mount_enabled(mount) %}}
Run the following command to determine the current status of the
<code>{{{ mount }}}</code> mount:
<pre>$ sudo systemctl is-active {{{ mount }}}.mount</pre>
If the mount unit is running, it should return the following: <pre>active</pre>
{{%- endmacro %}}
{{# File macros #}}
{{#
OCIL for how to check the permissions on a file.
:param file: File to change
:type file: str
:param perms: The permissions for the file
:type perms: str
#}}
{{%- macro ocil_file_permissions(file, perms) -%}}
To check the permissions of <code>{{{ file }}}</code>,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -l {{{ file }}}</pre>
If properly configured, the output should indicate the following permissions:
<code>{{{ perms }}}</code>
{{%- endmacro %}}
{{#
OCIL how to check permissions a directory
:param directory: Directory path
:type directory: str
:param perms: the permissions of the given directory
:type perms: str
#}}
{{%- macro ocil_directory_permissions(directory, perms) -%}}
To check the permissionsship of <code>{{{ directory }}}</code> directory,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -ldL {{{ directory }}}</pre>
If properly configured, the output should indicate the following permissions:
<code>{{{ perms }}}</code>
{{%- endmacro %}}
{{#
OCIL how to check file permissions of files in a directory
:param directory: Directory path
:type directory: str
:param perms: the permissions for the files in the given directory
:type perms: str
#}}
{{%- macro ocil_files_in_directory_permissions(directory, perms) -%}}
To check the permissions of files in the <code>{{{ directory }}}</code> directory,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -lL {{{ directory }}}</pre>
If properly configured, the output should indicate the following permissions:
<code>{{{ perms }}}</code>
{{%- endmacro %}}
{{#
OCIL clause for file permissions
:param file: File to change
:type file: str
:param perms: the permissions for the file
:type perms: str
#}}
{{%- macro ocil_clause_file_permissions(file, perms) -%}}
{{{ file }}} does not have unix mode {{{ perms }}}
{{%- endmacro %}}
{{#
OCIL clause for directory permissions
:param directory: Directory path
:type directory: str
:param perms: the permissions for the files
:type perms: str
#}}
{{%- macro ocil_clause_directory_permissions(directory, perms) -%}}
{{{ directory }}} directory does not have unix mode {{{ permms }}}
{{%- endmacro %}}
{{#
OCIL clause for file permissions of files in a directory
:param directory: Directory path
:type directory: str
:param perms: the permissions for the files
:type perms: str
#}}
{{%- macro ocil_clause_files_in_directory_permissions(directory, perms) -%}}
files in the {{{ directory }}} directory do not have unix mode {{{ perms }}}
{{%- endmacro %}}
{{#
OCIL how to check the file owner of a file.
:param file: File to change
:type file: str
:param owner: The owner for the file
:type owner: str
#}}
{{%- macro ocil_file_owner(file, owner) -%}}
To check the ownership of <code>{{{ file }}}</code>,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -lL {{{ file }}}</pre>
If properly configured, the output should indicate the following owner:
<code>{{{ owner }}}</code>
{{%- endmacro %}}
{{#
OCIL how to check owner a directory
:param directory: Directory path
:type directory: str
:param owner: the owner of the given directory
:type owner: str
#}}
{{%- macro ocil_directory_owner(directory, owner) -%}}
To check the ownership of <code>{{{ directory }}}</code> directory,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -ldL {{{ directory }}}</pre>
If properly configured, the output should indicate the following owner:
<code>{{{ owner }}}</code>
{{%- endmacro %}}
{{#
OCIL how to check file owner of files in a directory
:param directory: Directory path
:type directory: str
:param owner: the owner for the files in the given directory
:type owner: str
#}}
{{%- macro ocil_files_in_directory_owner(directory, owner) -%}}
To check the ownership of files in the <code>{{{ directory }}}</code> directory,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -lL {{{ directory }}}</pre>
If properly configured, the output should indicate the following owner:
<code>{{{ owner }}}</code>
{{%- endmacro %}}
{{#
OCIL clause for file owner
:param file: File to change
:type file: str
:param owner: the owner for the file
:type owner: str
#}}
{{%- macro ocil_clause_file_owner(file, owner) -%}}
{{{ file }}} does not have an owner of {{{ owner }}}
{{%- endmacro %}}
{{#
OCIL clause for directory owner
:param directory: Directory path
:type directory: str
:param owner: the owner for the files
:type owner: str
#}}
{{%- macro ocil_clause_directory_owner(directory, owner) -%}}
{{{ directory }}} directory does not have a owner owner of {{{ owner }}}
{{%- endmacro %}}
{{#
OCIL clause for file owner of files in a directory
:param directory: Directory path
:type directory: str
:param owner: the owner for the files
:type owner: str
#}}
{{%- macro ocil_clause_files_in_directory_owner(directory, owner) -%}}
files in the {{{ directory }}} directory do not have a owner of {{{ owner }}}
{{%- endmacro %}}
{{#
OCIL how to check the file group owner of a file.
:param file: File to change
:type file: str
:param group: the group owner for the file
:type group: str
#}}
{{%- macro ocil_file_group_owner(file, group) -%}}
To check the group ownership of <code>{{{ file }}}</code>,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -lL {{{ file }}}</pre>
If properly configured, the output should indicate the following group-owner:
<code>{{{ group }}}</code>
{{%- endmacro %}}
{{#
OCIL how to check file group owner a directory
:param directory: Directory path
:type directory: str
:param group: the group owner of the given directory
:type group: str
#}}
{{%- macro ocil_directory_group_owner(directory, group) -%}}
To check the group ownership of <code>{{{ directory }}}</code> directory,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -ldL {{{ directory }}}</pre>
If properly configured, the output should indicate the following group-owner:
<code>{{{ group }}}</code>
{{%- endmacro %}}
{{#
OCIL how to check file group owner of files in a directory
:param directory: Directory path
:type directory: str
:param group: the group owner for the files in the given directory
:type group: str
#}}
{{%- macro ocil_files_in_directory_group_owner(directory, group) -%}}
To check the group ownership of files in the <code>{{{ directory }}}</code> directory,
{{% if product in ["ocp4", "rhcos4"] -%}}
you'll need to log into a node in the cluster.
{{{ rhcos_node_login_instructions() }}}
Then,
{{%- endif -%}}
run the command:
<pre>$ ls -lL {{{ directory }}}</pre>
If properly configured, the output should indicate the following group-owner:
<code>{{{ group }}}</code>
{{%- endmacro %}}
{{#
OCIL clause for file group owner
:param file: File to change
:type file: str
:param group: the group owner for the file
:type group: str
#}}
{{%- macro ocil_clause_file_group_owner(file, group) -%}}
{{{ file }}} does not have a group owner of {{{ group }}}
{{%- endmacro %}}
{{#
OCIL clause for directory group owner of a directory
:param directory: Directory path
:type directory: str
:param group: the group owner for the files
:type group: str
#}}
{{%- macro ocil_clause_directory_group_owner(directory, group) -%}}
{{{ directory }}} directory does not have a group owner of {{{ group }}}
{{%- endmacro %}}
{{#
OCIL clause for file group owner of files in a directory
:param directory: Directory path
:type directory: str
:param group: the group owner for the files
:type group: str
#}}
{{%- macro ocil_clause_files_in_directory_group_owner(directory, group) -%}}
files in the {{{ directory }}} directory do not have a group owner of {{{ group }}}
{{%- endmacro %}}
{{# Sysctl option macros #}}
{{#
OCIL for a sysctl option
:param sysctl: The kernel parameter to change
:type sysctl: str
:param value: The value to be set
:type value: str
#}}
{{% macro ocil_sysctl_option_value(sysctl, value) -%}}
The runtime status of the <code>{{{ sysctl }}}</code> kernel parameter can be queried
by running the following command:
<pre>$ sysctl {{{ sysctl }}}</pre>
<code>{{{ value }}}</code>.
{{%- endmacro %}}
{{#
OCIL and OCIL clause for a sysctl option
:param sysctl: The kernel parameter to change
:type sysctl: str
:param value: The value to be set
:type value: str
#}}
{{% macro complete_ocil_entry_sysctl_option_value(sysctl, value) -%}}
ocil: |
{{{ ocil_sysctl_option_value(sysctl, value) }}}
ocil_clause: "the correct value is not returned"
{{%- endmacro %}}
{{# GRUB2 argument macros #}}
{{#
Provide OCIL for checking if an argument for kernel command line is configured with Grub2.
The parameter should have form `parameter=value`.
#}}
{{%- macro ocil_grub2_argument(arg_name_value) -%}}
{{%- if product in ["ol7", "ol8", "ol9", "rhel8", "rhel9", "rhel10"] or 'ubuntu' in product -%}}
Inspect the form of default GRUB 2 command line for the Linux operating system
in <tt>/etc/default/grub</tt>. If it includes <tt>{{{ arg_name_value }}}</tt>,
then the parameter will be configured for newly installed kernels.
First check if the GRUB recovery is enabled:
<pre>$ sudo grep 'GRUB_DISABLE_RECOVERY' /etc/default/grub</pre>
If this option is set to true, then check that a line is output by the following command:
<pre>$ sudo grep 'GRUB_CMDLINE_LINUX_DEFAULT.*{{{ arg_name_value }}}.*' /etc/default/grub</pre>
If the recovery is disabled, check the line with
<pre>$ sudo grep 'GRUB_CMDLINE_LINUX.*{{{ arg_name_value }}}.*' /etc/default/grub</pre>.
{{%- if 'ubuntu' in product -%}}
Moreover, current Grub config file <tt>grub.cfg</tt> must be checked. The file can be found
either in <tt>{{{ grub2_boot_path }}}</tt> in case of legacy BIOS systems, or in <tt>{{{ grub2_uefi_boot_path }}}</tt> in case of UEFI systems.
If they include <tt>{{{ arg_name_value }}}</tt>, then the parameter
is configured at boot time.
<pre>$ sudo grep vmlinuz GRUB_CFG_FILE_PATH | grep -v '{{{ arg_name_value }}}'</pre>
Fill in <tt>GRUB_CFG_FILE_PATH</tt> based on information above.
This command should not return any output.
{{%- else -%}}
Moreover, command line parameters for currently installed kernels should be checked as well.
Run the following command:
<pre>$ sudo grubby --info=ALL | grep args | grep -v '{{{ arg_name_value }}}'</pre>
The command should not return any output.
{{%- endif -%}}
{{%- else -%}}
Inspect the form of default GRUB 2 command line for the Linux operating system
{{% if grub2_boot_path == grub2_uefi_boot_path or not grub2_uefi_boot_path -%}}
in <tt>{{{ grub2_boot_path }}}/grubenv</tt>.
{{%- else -%}}
in <tt>grubenv</tt> that can be found either in <tt>{{{ grub2_boot_path }}}</tt> in case of legacy BIOS systems, or in <tt>{{{ grub2_uefi_boot_path }}}</tt> in case of UEFI systems.
{{%- endif %}}
If they include <tt>{{{ arg_name_value }}}</tt>, then the parameter
is configured at boot time.
<pre>$ sudo grep 'kernelopts.*{{{ arg_name_value }}}.*' GRUBENV_FILE_LOCATION</pre>
Fill in <tt>GRUBENV_FILE_LOCATION</tt> based on information above.
{{%- endif -%}}
{{%- endmacro -%}}
{{# Kernel build config macros #}}
{{#
OCIL for a kernel build config rule.
Example usage::
ocil_kernel_build_config(config="config_kernel_strict_rwx", value="y")
:param config: The kernel config parameter
:type config: str
:param value: The value for the given config
:type value: str
#}}
{{% macro ocil_kernel_build_config(config, value) -%}}
To determine the config value the kernel was built with, run the following command:
<pre>$ grep {{{ config }}} /boot/config.*</pre>
{{% if value == "n" %}}
Configs with value 'n' are not explicitly set in the file, so either commented lines or no
lines should be returned.
{{% else %}}
For each kernel installed, a line with value "{{{ value }}}" should be returned.
{{% endif %}}
{{%- endmacro %}}
{{# Firefox macros #}}
{{#
Create an OCIL text for rules using the audit_rules_unsuccessful_file_modification template
:param syscall: system call
:type syscall: str
#}}
{{% macro ocil_audit_rules_unsuccessful_file_modification(syscall, key) -%}}
Verify {{{ full_name }}} generates an audit record for unsuccessful attempts to use the {{{ syscall }}} system call.
If the auditd daemon is configured to use the "augenrules" program to to read audit rules during daemon startup (the default), run the following command:
$ sudo grep -r {{{ syscall }}} /etc/audit/rules.d
If the auditd daemon is configured to use the "auditctl" utility to read audit rules during daemon startup, run the following command:
$ sudo grep {{{ syscall }}} /etc/audit/audit.rules
The output should be the following:
-a always,exit -F arch=b32 -S {{{ syscall }}} -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -k {{{ key }}}
-a always,exit -F arch=b64 -S {{{ syscall }}} -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -k {{{ key }}}
-a always,exit -F arch=b32 -S {{{ syscall }}} -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -k {{{ key }}}
-a always,exit -F arch=b64 -S {{{ syscall }}} -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -k {{{ key }}}
{{%- endmacro %}}
{{#
Create an OCIL text for rules using the audit_rules_unsuccessful_file_modification_o_creat template
:param syscall: system call
:type syscall: str
:param position: the position of the system call O_CREAT argument, eg. a2
:type position: str
#}}
{{% macro ocil_audit_rules_unsuccessful_file_modification_o_creat(syscall, position) -%}}
Verify {{{ full_name }}} generates an audit record for unsuccessful attempts to create files using the {{{ syscall }}} system call with O_CREAT flag.
If the auditd daemon is configured to use the "augenrules" program to read audit rules during daemon startup (the default), run the following command:
$ sudo grep -r {{{ syscall }}} /etc/audit/rules.d
If the auditd daemon is configured to use the "auditctl" utility to read audit rules during daemon startup, run the following command:
$ sudo grep {{{ syscall }}} /etc/audit/audit.rules
The output should be the following:
-a always,exit -F arch=b32 -S {{{ syscall }}} -F {{{ position }}}&0100 -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b32 -S {{{ syscall }}} -F {{{ position }}}&0100 -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b64 -S {{{ syscall }}} -F {{{ position }}}&0100 -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b64 -S {{{ syscall }}} -F {{{ position }}}&0100 -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
{{%- endmacro %}}
{{#
Create an OCIL text for rules using the audit_rules_unsuccessful_file_modification_o_trunc_write template
:param syscall: system call
:type syscall: str
:param position: the position of the system call O_TRUNC_WRITE argument, eg. a2
:type position: str
#}}
{{% macro ocil_audit_rules_unsuccessful_file_modification_o_trunc_write(syscall, position) -%}}
Verify {{{ full_name }}} generates an audit record for unsuccessful attempts to modify files using the {{{ syscall }}} system call with O_TRUNC_WRITE flag.
If the auditd daemon is configured to use the "augenrules" program to read audit rules during daemon startup (the default), run the following command:
$ sudo grep -r {{{ syscall }}} /etc/audit/rules.d
If the auditd daemon is configured to use the "auditctl" utility to read audit rules during daemon startup, run the following command:
$ sudo grep {{{ syscall }}} /etc/audit/audit.rules
The output should be the following:
-a always,exit -F arch=b32 -S {{{ syscall }}} -F {{{ position }}}&01003 -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b32 -S {{{ syscall }}} -F {{{ position }}}&01003 -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b64 -S {{{ syscall }}} -F {{{ position }}}&01003 -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b64 -S {{{ syscall }}} -F {{{ position }}}&01003 -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
{{%- endmacro %}}
{{#
Create an OCIL text for rules using the audit_rules_unsuccessful_file_modification_rule_order template
:param syscall: system call
:type syscall: str
:param position: the position of the system call O_TRUNC_WRITE and O_CREAT arguments, eg. a2
:type position: str
#}}
{{% macro ocil_audit_rules_unsuccessful_file_modification_rule_order(syscall, position) -%}}
Verify that rules for unsuccessful calls of the {{{ syscall }}} syscall are in the order shown below.
If the auditd daemon is configured to use the "augenrules" program to read audit rules during daemon startup (the default), check the order of rules below in a file with suffix ".rules" in the directory "/etc/audit/rules.d".
If the auditd daemon is configured to use the "auditctl" utility to read audit rules during daemon startup, check the order of rules below in "/etc/audit/audit.rules" file.
-a always,exit -F arch=b32 -S {{{ syscall }}} -F {{{ position }}}&0100 -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b32 -S {{{ syscall }}} -F {{{ position }}}&0100 -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b32 -S {{{ syscall }}} -F {{{ position }}}&01003 -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-modification
-a always,exit -F arch=b32 -S {{{ syscall }}} -F {{{ position }}}&01003 -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-modification
-a always,exit -F arch=b32 -S {{{ syscall }}} -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-access
-a always,exit -F arch=b32 -S {{{ syscall }}} -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-access
If the system is 64 bit then also add the following lines:
-a always,exit -F arch=b64 -S {{{ syscall }}} -F {{{ position }}}&0100 -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b64 -S {{{ syscall }}} -F {{{ position }}}&0100 -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-create
-a always,exit -F arch=b64 -S {{{ syscall }}} -F {{{ position }}}&01003 -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-modification
-a always,exit -F arch=b64 -S {{{ syscall }}} -F {{{ position }}}&01003 -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-modification
-a always,exit -F arch=b64 -S {{{ syscall }}} -F exit=-EACCES -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-access
-a always,exit -F arch=b64 -S {{{ syscall }}} -F exit=-EPERM -F auid>={{{ auid }}} -F auid!=unset -F key=unsuccesful-access
{{%- endmacro %}}
{{# OpenShift Logging Macros #}}
{{#
OCIL for how to check RBAC permissions for cluster logging
:param verb: The RBAC verb to check
:type verb: str
#}}
{{%- macro ocil_cluster_logging_rbac_review(verb) -%}}
Perform a check to list the users and groups who have permission to {{{ verb }}} the cluster logging configuration by running the following two commands.
> oc policy who-can {{{ verb }}} ClusterLogging -n openshift-logging
> oc policy who-can {{{ verb }}} ClusterLoggingForwarder -n openshift-logging
Review the list of users and groups who have {{{ verb }}} access to the cluster logging resources.
If any user or group listed should not have access to {{{ verb }}} the cluster logging resources, this is a finding.
{{%- endmacro %}}
{{# RBAC macros #}}
{{#
OCIL for how to check RBAC permissions for the cluster in general
#}}
{{%- macro ocil_rbac_least_privilege() -%}}
The administrator must verify that Openshift is configured with the necessary RBAC access controls.
Review the RBAC configuration.
As the cluster-admin, view the cluster roles and their associated rule sets by executing the following::
oc describe clusterrole.rbac
Now view the current set of cluster role bindings, which shows the users and groups that are bound to various roles by executing the following:
oc describe clusterrolebinding.rbac
Local roles and bindings can be determined using the follow commands by executing the following:
oc describe rolebinding.rbac
If these results show users with privileged access that do not require that access, this is a finding.
{{%- endmacro %}}
{{#
OCIL macro to check CIS requirements on command line warning banners.
The macro provides both check and clause.
:param filepath: filepath to be checked
:type filepath: str
#}}
{{%- macro ocil_cis_banner(filepath) -%}}
ocil_clause: any results are returned
ocil: |-
Run the following command and verify no results are returned:
$ grep -E -i "(\\\v|\\\r|\\\m|\\\s|$(grep '^ID=' /etc/os-release | cut -d= -f2 | sed -e 's/"//g'))" {{{ filepath }}}
{{%- endmacro %}}
|