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 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180
|
<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet type='text/xsl' href='STIG_unclass.xsl'?><Benchmark xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cpe="http://cpe.mitre.org/language/2.0" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xsi:schemaLocation="http://checklists.nist.gov/xccdf/1.1 http://nvd.nist.gov/schema/xccdf-1.1.4.xsd http://cpe.mitre.org/dictionary/2.0 http://cpe.mitre.org/files/cpe-dictionary_2.1.xsd" id="CAN_Ubuntu_22-04_LTS_STIG" xml:lang="en" xmlns="http://checklists.nist.gov/xccdf/1.1"><status date="2024-11-25">accepted</status><title>Canonical Ubuntu 22.04 LTS Security Technical Implementation Guide</title><description>This Security Technical Implementation Guide is published as a tool to improve the security of Department of Defense (DOD) information systems. The requirements are derived from the National Institute of Standards and Technology (NIST) 800-53 and related documents. Comments or proposed revisions to this document should be sent via email to the following address: disa.stig_spt@mail.mil.</description><notice id="terms-of-use" xml:lang="en"></notice><front-matter xml:lang="en"></front-matter><rear-matter xml:lang="en"></rear-matter><reference href="https://cyber.mil"><dc:publisher>DISA</dc:publisher><dc:source>STIG.DOD.MIL</dc:source></reference><plain-text id="release-info">Release: 3 Benchmark Date: 30 Jan 2025</plain-text><plain-text id="generator">3.5</plain-text><plain-text id="conventionsVersion">1.10.0</plain-text><version>2</version><Profile id="MAC-1_Classified"><title>I - Mission Critical Classified</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Profile id="MAC-1_Public"><title>I - Mission Critical Public</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Profile id="MAC-1_Sensitive"><title>I - Mission Critical Sensitive</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Profile id="MAC-2_Classified"><title>II - Mission Support Classified</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Profile id="MAC-2_Public"><title>II - Mission Support Public</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Profile id="MAC-2_Sensitive"><title>II - Mission Support Sensitive</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Profile id="MAC-3_Classified"><title>III - Administrative Classified</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Profile id="MAC-3_Public"><title>III - Administrative Public</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Profile id="MAC-3_Sensitive"><title>III - Administrative Sensitive</title><description><ProfileDescription></ProfileDescription></description><select idref="V-260469" selected="true" /><select idref="V-260470" selected="true" /><select idref="V-260471" selected="true" /><select idref="V-260472" selected="true" /><select idref="V-260473" selected="true" /><select idref="V-260474" selected="true" /><select idref="V-260475" selected="true" /><select idref="V-260476" selected="true" /><select idref="V-260477" selected="true" /><select idref="V-260478" selected="true" /><select idref="V-260479" selected="true" /><select idref="V-260480" selected="true" /><select idref="V-260481" selected="true" /><select idref="V-260482" selected="true" /><select idref="V-260483" selected="true" /><select idref="V-260484" selected="true" /><select idref="V-260485" selected="true" /><select idref="V-260486" selected="true" /><select idref="V-260487" selected="true" /><select idref="V-260488" selected="true" /><select idref="V-260489" selected="true" /><select idref="V-260490" selected="true" /><select idref="V-260491" selected="true" /><select idref="V-260492" selected="true" /><select idref="V-260493" selected="true" /><select idref="V-260494" selected="true" /><select idref="V-260495" selected="true" /><select idref="V-260496" selected="true" /><select idref="V-260497" selected="true" /><select idref="V-260498" selected="true" /><select idref="V-260499" selected="true" /><select idref="V-260500" selected="true" /><select idref="V-260501" selected="true" /><select idref="V-260502" selected="true" /><select idref="V-260503" selected="true" /><select idref="V-260504" selected="true" /><select idref="V-260505" selected="true" /><select idref="V-260506" selected="true" /><select idref="V-260507" selected="true" /><select idref="V-260508" selected="true" /><select idref="V-260509" selected="true" /><select idref="V-260510" selected="true" /><select idref="V-260511" selected="true" /><select idref="V-260512" selected="true" /><select idref="V-260513" selected="true" /><select idref="V-260514" selected="true" /><select idref="V-260515" selected="true" /><select idref="V-260516" selected="true" /><select idref="V-260517" selected="true" /><select idref="V-260518" selected="true" /><select idref="V-260519" selected="true" /><select idref="V-260520" selected="true" /><select idref="V-260521" selected="true" /><select idref="V-260522" selected="true" /><select idref="V-260523" selected="true" /><select idref="V-260524" selected="true" /><select idref="V-260525" selected="true" /><select idref="V-260526" selected="true" /><select idref="V-260527" selected="true" /><select idref="V-260528" selected="true" /><select idref="V-260529" selected="true" /><select idref="V-260530" selected="true" /><select idref="V-260531" selected="true" /><select idref="V-260532" selected="true" /><select idref="V-260533" selected="true" /><select idref="V-260534" selected="true" /><select idref="V-260535" selected="true" /><select idref="V-260536" selected="true" /><select idref="V-260537" selected="true" /><select idref="V-260538" selected="true" /><select idref="V-260539" selected="true" /><select idref="V-260540" selected="true" /><select idref="V-260541" selected="true" /><select idref="V-260542" selected="true" /><select idref="V-260543" selected="true" /><select idref="V-260545" selected="true" /><select idref="V-260546" selected="true" /><select idref="V-260547" selected="true" /><select idref="V-260548" selected="true" /><select idref="V-260549" selected="true" /><select idref="V-260550" selected="true" /><select idref="V-260552" selected="true" /><select idref="V-260553" selected="true" /><select idref="V-260554" selected="true" /><select idref="V-260555" selected="true" /><select idref="V-260556" selected="true" /><select idref="V-260557" selected="true" /><select idref="V-260558" selected="true" /><select idref="V-260559" selected="true" /><select idref="V-260560" selected="true" /><select idref="V-260561" selected="true" /><select idref="V-260562" selected="true" /><select idref="V-260563" selected="true" /><select idref="V-260564" selected="true" /><select idref="V-260565" selected="true" /><select idref="V-260566" selected="true" /><select idref="V-260567" selected="true" /><select idref="V-260569" selected="true" /><select idref="V-260570" selected="true" /><select idref="V-260571" selected="true" /><select idref="V-260572" selected="true" /><select idref="V-260573" selected="true" /><select idref="V-260574" selected="true" /><select idref="V-260575" selected="true" /><select idref="V-260576" selected="true" /><select idref="V-260577" selected="true" /><select idref="V-260578" selected="true" /><select idref="V-260579" selected="true" /><select idref="V-260580" selected="true" /><select idref="V-260581" selected="true" /><select idref="V-260582" selected="true" /><select idref="V-260583" selected="true" /><select idref="V-260584" selected="true" /><select idref="V-260585" selected="true" /><select idref="V-260586" selected="true" /><select idref="V-260587" selected="true" /><select idref="V-260588" selected="true" /><select idref="V-260589" selected="true" /><select idref="V-260590" selected="true" /><select idref="V-260591" selected="true" /><select idref="V-260592" selected="true" /><select idref="V-260593" selected="true" /><select idref="V-260594" selected="true" /><select idref="V-260595" selected="true" /><select idref="V-260596" selected="true" /><select idref="V-260597" selected="true" /><select idref="V-260598" selected="true" /><select idref="V-260599" selected="true" /><select idref="V-260600" selected="true" /><select idref="V-260601" selected="true" /><select idref="V-260602" selected="true" /><select idref="V-260603" selected="true" /><select idref="V-260604" selected="true" /><select idref="V-260605" selected="true" /><select idref="V-260606" selected="true" /><select idref="V-260607" selected="true" /><select idref="V-260608" selected="true" /><select idref="V-260609" selected="true" /><select idref="V-260610" selected="true" /><select idref="V-260611" selected="true" /><select idref="V-260612" selected="true" /><select idref="V-260613" selected="true" /><select idref="V-260614" selected="true" /><select idref="V-260615" selected="true" /><select idref="V-260616" selected="true" /><select idref="V-260617" selected="true" /><select idref="V-260618" selected="true" /><select idref="V-260619" selected="true" /><select idref="V-260620" selected="true" /><select idref="V-260621" selected="true" /><select idref="V-260622" selected="true" /><select idref="V-260623" selected="true" /><select idref="V-260624" selected="true" /><select idref="V-260625" selected="true" /><select idref="V-260626" selected="true" /><select idref="V-260627" selected="true" /><select idref="V-260628" selected="true" /><select idref="V-260629" selected="true" /><select idref="V-260630" selected="true" /><select idref="V-260631" selected="true" /><select idref="V-260632" selected="true" /><select idref="V-260633" selected="true" /><select idref="V-260634" selected="true" /><select idref="V-260635" selected="true" /><select idref="V-260636" selected="true" /><select idref="V-260637" selected="true" /><select idref="V-260638" selected="true" /><select idref="V-260639" selected="true" /><select idref="V-260640" selected="true" /><select idref="V-260641" selected="true" /><select idref="V-260642" selected="true" /><select idref="V-260643" selected="true" /><select idref="V-260644" selected="true" /><select idref="V-260645" selected="true" /><select idref="V-260646" selected="true" /><select idref="V-260647" selected="true" /><select idref="V-260648" selected="true" /><select idref="V-260649" selected="true" /><select idref="V-260650" selected="true" /></Profile><Group id="V-260469"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260469r991589_rule" weight="10.0" severity="high"><version>UBTU-22-211015</version><title>Ubuntu 22.04 LTS must disable the x86 Ctrl-Alt-Delete key sequence.</title><description><VulnDiscussion>A locally logged-on user who presses Ctrl-Alt-Delete, when at the console, can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64106r953219_fix">Configure Ubuntu 22.04 LTS to disable the Ctrl-Alt-Delete sequence for the command line by using the following commands:
$ sudo systemctl disable ctrl-alt-del.target
$ sudo systemctl mask ctrl-alt-del.target
Reload the daemon to take effect:
$ sudo systemctl daemon-reload</fixtext><fix id="F-64106r953219_fix" /><check system="C-64198r953218_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is not configured to reboot the system when Ctrl-Alt-Delete is pressed by using the following command:
$ systemctl status ctrl-alt-del.target
ctrl-alt-del.target
Loaded: masked (Reason: Unit ctrl-alt-del.target is masked.)
Active: inactive (dead)
If the "ctrl-alt-del.target" is not masked, this is a finding.</check-content></check></Rule></Group><Group id="V-260470"><title>SRG-OS-000080-GPOS-00048</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260470r958472_rule" weight="10.0" severity="high"><version>UBTU-22-212010</version><title>Ubuntu 22.04 LTS, when booted, must require authentication upon booting into single-user and maintenance modes.</title><description><VulnDiscussion>To mitigate the risk of unauthorized access to sensitive information by entities that have been issued certificates by DOD-approved PKIs, all DOD systems (e.g., web servers and web portals) must be properly configured to incorporate access control methods that do not rely solely on the possession of a certificate for access.
Successful authentication must not automatically give an entity access to an asset or security boundary. Authorization procedures and controls must be implemented to ensure each authenticated entity also has a validated and current authorization. Authorization is the process of determining whether an entity, once authenticated, is permitted to access a specific asset. Information systems use access control policies and enforcement mechanisms to implement this requirement.
Access control policies include identity-based policies, role-based policies, and attribute-based policies. Access enforcement mechanisms include access control lists, access control matrices, and cryptography. These policies and mechanisms must be employed by the application to control access between users (or processes acting on behalf of users) and objects (e.g., devices, files, records, processes, programs, and domains) in the information system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000213</ident><fixtext fixref="F-64107r953222_fix">Configure Ubuntu 22.04 LTS to require a password for authentication upon booting into single-user and maintenance modes.
Generate an encrypted (grub) password for root by using the following command:
$ grub-mkpasswd-pbkdf2
Enter Password:
Reenter Password:
PBKDF2 hash of your password is grub.pbkdf2.sha512.10000.03255F190F0E2F7B4F0D1C3216012309162F022A7A636771
Using the hash from the output, modify the "/etc/grub.d/40_custom" file by using the following command to add a boot password:
$ sudo sed -i '$i set superusers=\"root\"\npassword_pbkdf2 root <hash>' /etc/grub.d/40_custom
where <hash> is the hash generated by grub-mkpasswd-pbkdf2 command.
Generate an updated "grub.conf" file with the new password by using the following command:
$ sudo update-grub</fixtext><fix id="F-64107r953222_fix" /><check system="C-64199r953221_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS requires a password for authentication upon booting into single-user and maintenance modes by using the following command:
$ sudo grep -i password /boot/grub/grub.cfg
password_pbkdf2 root grub.pbkdf2.sha512.10000.03255F190F0E2F7B4F0D1C3216012309162F022A7A636771
If the root password entry does not begin with "password_pbkdf2", this is a finding.</check-content></check></Rule></Group><Group id="V-260471"><title>SRG-OS-000254-GPOS-00095</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260471r991555_rule" weight="10.0" severity="medium"><version>UBTU-22-212015</version><title>Ubuntu 22.04 LTS must initiate session audits at system startup.</title><description><VulnDiscussion>If auditing is enabled late in the startup process, the actions of some startup processes may not be audited. Some audit systems also maintain state information only available if auditing is enabled before a given process is created.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001464</ident><fixtext fixref="F-64108r953225_fix">Configure Ubuntu 22.04 LTS to produce audit records at system startup.
Edit the "/etc/default/grub" file and add "audit=1" to the "GRUB_CMDLINE_LINUX" option.
To update the grub config file, run:
$ sudo update-grub</fixtext><fix id="F-64108r953225_fix" /><check system="C-64200r953224_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Ubuntu 22.04 LTS enables auditing at system startup in grub by using the following command:
$ grep "^\s*linux" /boot/grub/grub.cfg
linux /vmlinuz-5.15.0-89-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro audit=1
linux /vmlinuz-5.15.0-89-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro audit=1
linux /vmlinuz-5.15.0-89-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro single nomodeset dis_ucode_ldr audit=1
linux /vmlinuz-5.15.0-83-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro audit=1
linux /vmlinuz-5.15.0-83-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro single nomodeset dis_ucode_ldr audit=1
If any linux lines do not contain "audit=1", this is a finding.</check-content></check></Rule></Group><Group id="V-260472"><title>SRG-OS-000138-GPOS-00069</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260472r958524_rule" weight="10.0" severity="low"><version>UBTU-22-213010</version><title>Ubuntu 22.04 LTS must restrict access to the kernel message buffer.</title><description><VulnDiscussion>Restricting access to the kernel message buffer limits access only to root. This prevents attackers from gaining additional system information as a nonprivileged user.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001090</ident><fixtext fixref="F-64109r953228_fix">Configure Ubuntu 22.04 LTS to restrict access to the kernel message buffer.
Add or modify the following line in the "/etc/sysctl.conf" file:
kernel.dmesg_restrict = 1
Remove any configurations that conflict with the above from the following locations:
/run/sysctl.d/
/etc/sysctl.d/
/usr/local/lib/sysctl.d/
/usr/lib/sysctl.d/
/lib/sysctl.d/
/etc/sysctl.conf
Reload settings from all system configuration files by using the following command:
$ sudo sysctl --system</fixtext><fix id="F-64109r953228_fix" /><check system="C-64201r953227_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to restrict access to the kernel message buffer by using the following command:
$ sysctl kernel.dmesg_restrict
kernel.dmesg_restrict = 1
If "kernel.dmesg_restrict" is not set to "1" or is missing, this is a finding.
Verify that there are no configurations that enable the kernel dmesg function:
$ sudo grep -ir kernel.dmesg_restrict /run/sysctl.d/* /etc/sysctl.d/* /usr/local/lib/sysctl.d/* /usr/lib/sysctl.d/* /lib/sysctl.d/* /etc/sysctl.conf 2> /dev/null
/etc/sysctl.d/10-kernel-hardening.conf:kernel.dmesg_restrict = 1
If "kernel.dmesg_restrict" is not set to "1", is commented out, is missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260473"><title>SRG-OS-000184-GPOS-00078</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260473r1044782_rule" weight="10.0" severity="medium"><version>UBTU-22-213015</version><title>Ubuntu 22.04 LTS must disable kernel core dumps so that it can fail to a secure state if system initialization fails, shutdown fails or aborts fail.</title><description><VulnDiscussion>Kernel core dumps may contain the full contents of system memory at the time of the crash. Kernel core dumps may consume a considerable amount of disk space and may result in denial of service by exhausting the available space on the target file system partition.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001190</ident><fixtext fixref="F-64110r1044781_fix">If kernel core dumps are not required, disable and mask "kdump-tools.service" by using the following command:
$ sudo systemctl mask kdump-tools --now
If kernel core dumps are required, document the need with the ISSO.</fixtext><fix id="F-64110r1044781_fix" /><check system="C-64202r1044780_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that kernel core dumps are disabled unless needed by using the following command:
$ systemctl status kdump-tools.service
kdump-tools.service
Loaded: masked (Reason: Unit kdump-tools.service is masked.)
Active: inactive (dead)
If "kdump-tools.service" is not masked and inactive, ask the system administrator (SA) if the use of the service is required and documented with the information system security officer (ISSO).
If the service is active and is not documented, this is a finding.</check-content></check></Rule></Group><Group id="V-260474"><title>SRG-OS-000433-GPOS-00193</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260474r958928_rule" weight="10.0" severity="medium"><version>UBTU-22-213020</version><title>Ubuntu 22.04 LTS must implement address space layout randomization to protect its memory from unauthorized code execution.</title><description><VulnDiscussion>Some adversaries launch attacks with the intent of executing code in nonexecutable regions of memory or in prohibited memory locations. Security safeguards employed to protect memory include, for example, data execution prevention and address space layout randomization. Data execution prevention safeguards can either be hardware-enforced or software-enforced with hardware providing the greater strength of mechanism.
Examples of attacks are buffer overflow attacks.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002824</ident><fixtext fixref="F-64111r953234_fix">Remove the "kernel.randomize_va_space" entry found in the "/etc/sysctl.conf" file or any file located in the "/etc/sysctl.d/" directory.
Reload the system configuration files for the changes to take effect by using the following command:
$ sudo sysctl --system</fixtext><fix id="F-64111r953234_fix" /><check system="C-64203r953233_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS implements address space layout randomization (ASLR) by using the following command:
$ sysctl kernel.randomize_va_space
kernel.randomize_va_space = 2
If no output is returned, verify the kernel parameter "randomize_va_space" is set to "2" by using the following command:
$ cat /proc/sys/kernel/randomize_va_space
2
If "kernel.randomize_va_space" is not set to "2", this is a finding.
Verify that a saved value of the "kernel.randomize_va_space" variable is not defined.
$ sudo grep -ER "^kernel.randomize_va_space=[^2]" /etc/sysctl.conf /etc/sysctl.d
If this returns a result, this is a finding.</check-content></check></Rule></Group><Group id="V-260475"><title>SRG-OS-000433-GPOS-00192</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260475r958928_rule" weight="10.0" severity="medium"><version>UBTU-22-213025</version><title>Ubuntu 22.04 LTS must implement nonexecutable data to protect its memory from unauthorized code execution.</title><description><VulnDiscussion>Some adversaries launch attacks with the intent of executing code in nonexecutable regions of memory or in memory locations that are prohibited. Security safeguards employed to protect memory include, for example, data execution prevention and address space layout randomization. Data execution prevention safeguards can either be hardware-enforced or software-enforced with hardware providing the greater strength of mechanism.
Examples of attacks are buffer overflow attacks.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002824</ident><fixtext fixref="F-64112r953237_fix">Configure Ubuntu 22.04 LTS to enable NX.
If the installed CPU is hardware capable of NX protection, check if the system's BIOS/UEFI setup configuration permits toggling the "NX bit" or "no execution bit", and set it to "enabled".</fixtext><fix id="F-64112r953237_fix" /><check system="C-64204r953236_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the NX (no-execution) bit flag is set on the system by using the following command:
$ sudo dmesg | grep -i "execute disable"
[ 0.000000] NX (Execute Disable) protection: active
If "dmesg" does not show "NX (Execute Disable) protection: active", check the hardware capabilities of the installed CPU by using the following command:
$ grep flags /proc/cpuinfo | grep -o nx | sort -u
nx
If no output is returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260476"><title>SRG-OS-000366-GPOS-00153</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260476r1015003_rule" weight="10.0" severity="low"><version>UBTU-22-214010</version><title>Ubuntu 22.04 LTS must be configured so that the Advance Package Tool (APT) prevents the installation of patches, service packs, device drivers, or operating system components without verification they have been digitally signed using a certificate that is recognized and approved by the organization.</title><description><VulnDiscussion>Changes to any software components can have significant effects on the overall security of the operating system. This requirement ensures the software has not been tampered with and that it has been provided by a trusted vendor.
Accordingly, patches, service packs, device drivers, or operating system components must be signed with a certificate recognized and approved by the organization.
Verifying the authenticity of the software prior to installation validates the integrity of the patch or upgrade received from a vendor. This ensures the software has not been tampered with and that it has been provided by a trusted vendor. Self-signed certificates are disallowed by this requirement. The operating system should not have to verify the software again. This requirement does not mandate DOD certificates for this purpose; however, the certificate used to verify the software must be from an approved certificate authority (CA).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-003992</ident><ident system="http://cyber.mil/cci">CCI-001749</ident><fixtext fixref="F-64113r953240_fix">Configure APT to prevent the installation of patches, service packs, device drivers, or Ubuntu operating system components without verification they have been digitally signed using a certificate that is recognized and approved by the organization.
Add or modify the following line in any file under the "/etc/apt/apt.conf.d/" directory:
APT::Get::AllowUnauthenticated "false";</fixtext><fix id="F-64113r953240_fix" /><check system="C-64205r953239_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that APT is configured to prevent the installation of patches, service packs, device drivers, or Ubuntu operating system components without verification they have been digitally signed using a certificate that is recognized and approved by the organization by using the following command:
$ grep -i allowunauthenticated /etc/apt/apt.conf.d/*
/etc/apt/apt.conf.d/01-vendor-ubuntu:APT::Get::AllowUnauthenticated "false";
If "APT::Get::AllowUnauthenticated" is not set to "false", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260477"><title>SRG-OS-000437-GPOS-00194</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260477r1044773_rule" weight="10.0" severity="medium"><version>UBTU-22-214015</version><title>Ubuntu 22.04 LTS must be configured so that the Advance Package Tool (APT) removes all software components after updated versions have been installed.</title><description><VulnDiscussion>Previous versions of software components that are not removed from the information system after updates have been installed may be exploited by adversaries. Some information technology products may remove older versions of software automatically from the information system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002617</ident><fixtext fixref="F-64114r1044772_fix">Configure APT to remove all software components after updated versions have been installed.
Add or modify the following lines in the "/etc/apt/apt.conf.d/50unattended-upgrades" file:
Unattended-Upgrade::Remove-Unused-Kernel-Packages "true";
Unattended-Upgrade::Remove-Unused-Dependencies "true";</fixtext><fix id="F-64114r1044772_fix" /><check system="C-64206r1044771_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify APT is configured to remove all software components after updated versions have been installed by using the following command:
$ grep -i remove-unused /etc/apt/apt.conf.d/50unattended-upgrades
Unattended-Upgrade::Remove-Unused-Kernel-Packages "true";
Unattended-Upgrade::Remove-Unused-Dependencies "true";
If "Unattended-Upgrade::Remove-Unused-Kernel-Packages" and "Unattended-Upgrade::Remove-Unused-Dependencies" are not set to "true", are commented out, or are missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260478"><title>SRG-OS-000480-GPOS-00225</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260478r991587_rule" weight="10.0" severity="medium"><version>UBTU-22-215010</version><title>Ubuntu 22.04 LTS must have the "libpam-pwquality" package installed.</title><description><VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. "pwquality" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64115r953246_fix">Install the "pam_pwquality" package by using the following command:
$ sudo apt-get install libpam-pwquality</fixtext><fix id="F-64115r953246_fix" /><check system="C-64207r953245_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS has the "libpam-pwquality" package installed with the following command:
$ dpkg -l | grep libpam-pwquality
ii libpam-pwquality:amd64 1.4.4-1build2 amd64 PAM module to check password strength
If "libpam-pwquality" is not installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260479"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260479r991589_rule" weight="10.0" severity="low"><version>UBTU-22-215015</version><title>Ubuntu 22.04 LTS must have the "chrony" package installed.</title><description><VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.
Organizations must consider endpoints that may not have regular access to the authoritative time server (e.g., mobile, teleworking, and tactical endpoints).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64116r953249_fix">Install the "chrony" network time protocol package using the following command:
$ sudo apt-get install chrony</fixtext><fix id="F-64116r953249_fix" /><check system="C-64208r953248_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the "chrony" package is installed using the following command:
$ dpkg -l | grep chrony
ii chrony 4.2-2ubuntu2 amd64 Versatile implementation of the Network Time Protocol
If the "chrony" package is not installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260480"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260480r991589_rule" weight="10.0" severity="low"><version>UBTU-22-215020</version><title>Ubuntu 22.04 LTS must not have the "systemd-timesyncd" package installed.</title><description><VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.
Organizations must consider endpoints that may not have regular access to the authoritative time server (e.g., mobile, teleworking, and tactical endpoints).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64117r953252_fix">The "systemd-timesyncd" package will be uninstalled as part of the "chrony" package install. The remaining configuration files for "systemd-timesyncd" must be purged from the operating system:
$ sudo dpkg -P --force-all systemd-timesyncd</fixtext><fix id="F-64117r953252_fix" /><check system="C-64209r953251_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the "systemd-timesyncd" package is not installed by using the following command:
$ dpkg -l | grep systemd-timesyncd
If the "systemd-timesyncd" package is installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260481"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260481r991589_rule" weight="10.0" severity="low"><version>UBTU-22-215025</version><title>Ubuntu 22.04 LTS must not have the "ntp" package installed.</title><description><VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.
Organizations must consider endpoints that may not have regular access to the authoritative time server (e.g., mobile, teleworking, and tactical endpoints).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64118r953255_fix">Uninstall the "ntp" package by using the following command:
$ sudo dpkg -P --force-all ntp</fixtext><fix id="F-64118r953255_fix" /><check system="C-64210r953254_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the "ntp" package is not installed by using the following command:
$ dpkg -l | grep ntp
If the "ntp" package is installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260482"><title>SRG-OS-000095-GPOS-00049</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260482r958478_rule" weight="10.0" severity="high"><version>UBTU-22-215030</version><title>Ubuntu 22.04 LTS must not have the "rsh-server" package installed.</title><description><VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities or services are often overlooked and therefore may remain unsecured. They increase the risk to the platform by providing additional attack vectors.
Remote Shell (RSH) is a client/server application protocol that provides an unencrypted remote access service, which does not provide for the confidentiality and integrity of user passwords or the remote session. If users were allowed to login to a system using RSH, the privileged user passwords and communications could be compromised.
Removing the "rsh-server" package decreases the risk of accidental or intentional activation of the RSH service.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000381</ident><fixtext fixref="F-64119r953258_fix">Remove the "rsh-server" package by using the following command:
$ sudo apt-get remove rsh-server</fixtext><fix id="F-64119r953258_fix" /><check system="C-64211r953257_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the "rsh-server" package is not installed by using the following command:
$ dpkg -l | grep rsh-server
If the "rsh-server" package is installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260483"><title>SRG-OS-000074-GPOS-00042</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260483r987796_rule" weight="10.0" severity="high"><version>UBTU-22-215035</version><title>Ubuntu 22.04 LTS must not have the "telnet" package installed.</title><description><VulnDiscussion>It is detrimental for operating systems to provide, or install by default, functionality exceeding requirements or mission objectives. These unnecessary capabilities are often overlooked and therefore, may remain unsecure. They increase the risk to the platform by providing additional attack vectors.
Telnet is a client/server application protocol that provides an unencrypted remote access service, which does not provide for the confidentiality and integrity of user passwords or the remote session. If users were allowed to login to a system using Telnet, the privileged user passwords and communications could be compromised.
Removing the "telnetd" package decreases the risk of accidental or intentional activation of the Telnet service.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000197</ident><fixtext fixref="F-64120r953261_fix">Remove the "telnetd" package by using the following command:
$ sudo apt-get remove telnetd</fixtext><fix id="F-64120r953261_fix" /><check system="C-64212r953260_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the "telnetd" package is not installed on Ubuntu 22.04 LTS by using the following command:
$ dpkg -l | grep telnetd
If the "telnetd" package is installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260484"><title>SRG-OS-000185-GPOS-00079</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260484r958552_rule" weight="10.0" severity="medium"><version>UBTU-22-231010</version><title>Ubuntu 22.04 LTS must implement cryptographic mechanisms to prevent unauthorized disclosure and modification of all information that requires protection at rest.</title><description><VulnDiscussion>Operating systems handling data requiring "data at rest" protections must employ cryptographic mechanisms to prevent unauthorized disclosure and modification of the information at rest.
Selection of a cryptographic mechanism is based on the need to protect the integrity of organizational information. The strength of the mechanism is commensurate with the security category and/or classification of the information. Organizations have the flexibility to either encrypt all information on storage devices (i.e., full disk encryption) or encrypt specific data structures (e.g., files, records, or fields).
Satisfies: SRG-OS-000185-GPOS-00079, SRG-OS-000404-GPOS-00183, SRG-OS-000405-GPOS-00184</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001199</ident><ident system="http://cyber.mil/cci">CCI-002475</ident><ident system="http://cyber.mil/cci">CCI-002476</ident><fixtext fixref="F-64121r953264_fix">To encrypt an entire partition, dedicate a partition for encryption in the partition layout.
Note: Encrypting a partition in an already-installed system is more difficult because it will need to be resized and existing partitions changed.</fixtext><fix id="F-64121r953264_fix" /><check system="C-64213r953263_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS prevents unauthorized disclosure or modification of all information requiring at-rest protection by using disk encryption.
Note: If there is a documented and approved reason for not having data-at-rest encryption, this requirement is not applicable.
Determine the partition layout for the system by using the following command:
$ sudo fdisk -l
...
Device Start End Sectors Size Type
/dev/sda1 2048 2203647 2201600 1G EFI System
/dev/sda2 2203648 6397951 4194304 2G Linux filesystem
/dev/sda3 6397952 536868863 530470912 252.9G Linux filesystem
...
Verify the system partitions are all encrypted by using the following command:
# more /etc/crypttab
Every persistent disk partition present must have an entry in the file.
If any partitions other than the boot partition or pseudo file systems (such as /proc or /sys) are not listed, this is a finding.</check-content></check></Rule></Group><Group id="V-260485"><title>SRG-OS-000258-GPOS-00099</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260485r991559_rule" weight="10.0" severity="medium"><version>UBTU-22-232010</version><title>Ubuntu 22.04 LTS must have directories that contain system commands set to a mode of "755" or less permissive.</title><description><VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.
Operating systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools and the corresponding rights the user has in order to make access decisions regarding the deletion of audit tools.
Audit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001495</ident><fixtext fixref="F-64122r953267_fix">Configure Ubuntu 22.04 LTS commands directories to be protected from unauthorized access. Run the following command:
$ sudo find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin -perm /022 -type d -exec chmod -R 755 '{}' \;</fixtext><fix id="F-64122r953267_fix" /><check system="C-64214r953266_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the system commands directories have mode "755" or less permissive by using the following command:
$ find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin -perm /022 -type d -exec stat -c "%n %a" '{}' \;
If any directories are found to be group-writable or world-writable, this is a finding.</check-content></check></Rule></Group><Group id="V-260486"><title>SRG-OS-000259-GPOS-00100</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260486r991560_rule" weight="10.0" severity="medium"><version>UBTU-22-232015</version><title>Ubuntu 22.04 LTS must have system commands set to a mode of "755" or less permissive.</title><description><VulnDiscussion>If Ubuntu 22.04 LTS were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.
This requirement applies to Ubuntu 22.04 LTS with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals must be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001499</ident><fixtext fixref="F-64123r953270_fix">Configure Ubuntu 22.04 LTS commands to be protected from unauthorized access. Run the following command:
$ sudo find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin -perm /022 -type f -exec chmod 755 '{}' \;</fixtext><fix id="F-64123r953270_fix" /><check system="C-64215r953269_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the system commands contained in the following directories have mode "755" or less permissive by using the following command:
$ sudo find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin -perm /022 -type f -exec stat -c "%n %a" '{}' \;
If any files are found to be group-writable or world-writable, this is a finding.</check-content></check></Rule></Group><Group id="V-260487"><title>SRG-OS-000259-GPOS-00100</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260487r991560_rule" weight="10.0" severity="medium"><version>UBTU-22-232020</version><title>Ubuntu 22.04 LTS library files must have mode "755" or less permissive.</title><description><VulnDiscussion>If the operating system were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.
This requirement applies to operating systems with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals must be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001499</ident><fixtext fixref="F-64124r953273_fix">Configure the library files to be protected from unauthorized access. Run the following command:
$ sudo find /lib /lib64 /usr/lib -perm /022 -type f -exec chmod 755 '{}' \;</fixtext><fix id="F-64124r953273_fix" /><check system="C-64216r953272_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the systemwide shared library files contained in the directories "/lib", "/lib64", and "/usr/lib" have mode "755" or less permissive by using the following command:
$ sudo find /lib /lib64 /usr/lib -perm /022 -type f -exec stat -c "%n %a" '{}' \;
If any files are found to be group-writable or world-writable, this is a finding.</check-content></check></Rule></Group><Group id="V-260488"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260488r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232025</version><title>Ubuntu 22.04 LTS must configure the "/var/log" directory to have mode "755" or less permissive.</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64125r953276_fix">Configure the "/var/log" directory to have permissions of "0755" by using the following command:
$ sudo chmod 0755 /var/log</fixtext><fix id="F-64125r953276_fix" /><check system="C-64217r953275_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the "/var/log" directory has mode of "755" or less permissive by using the following command:
Note: If rsyslog is active and enabled on the operating system, this requirement is not applicable.
$ stat -c "%n %a" /var/log
/var/log 755
If a value of "755" or less permissive is not returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260489"><title>SRG-OS-000205-GPOS-00083</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260489r958564_rule" weight="10.0" severity="medium"><version>UBTU-22-232026</version><title>Ubuntu 22.04 LTS must generate error messages that provide information necessary for corrective actions without revealing information that could be exploited by adversaries.</title><description><VulnDiscussion>Any operating system providing too much information in error messages risks compromising the data and security of the structure, and content of error messages needs to be carefully considered by the organization.
Organizations carefully consider the structure/content of error messages. The extent to which information systems are able to identify and handle error conditions is guided by organizational policy and operational requirements. Information that could be exploited by adversaries includes, for example, erroneous logon attempts with passwords entered by mistake as the username, mission/business information that can be derived from (if not stated explicitly by) information recorded, and personal information, such as account numbers, social security numbers, and credit card numbers.
The /var/log/btmp, /var/log/wtmp, and /var/log/lastlog files have group write and global read permissions to allow for the lastlog function to perform. Limiting the permissions beyond this configuration will result in the failure of functions that rely on the lastlog database.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001312</ident><fixtext fixref="F-64126r953279_fix">Configure Ubuntu 22.04 LTS to set permissions of all log files under the "/var/log" directory to "640" or more restricted by using the following command:
Note: The btmp, wtmp, and lastlog files are excluded. Refer to the Discussion for details.
$ sudo find /var/log -perm /137 ! -name '*[bw]tmp' ! -name '*lastlog' -type f -exec chmod 640 '{}' \;</fixtext><fix id="F-64126r953279_fix" /><check system="C-64218r953278_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS has all system log files under the "/var/log" directory with a permission set to "640" or less permissive by using the following command:
Note: The btmp, wtmp, and lastlog files are excluded. Refer to the Discussion for details.
$ sudo find /var/log -perm /137 ! -name '*[bw]tmp' ! -name '*lastlog' -type f -exec stat -c "%n %a" {} \;
If the command displays any output, this is a finding.</check-content></check></Rule></Group><Group id="V-260490"><title>SRG-OS-000205-GPOS-00083</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260490r1014781_rule" weight="10.0" severity="medium"><version>UBTU-22-232027</version><title>Ubuntu 22.04 LTS must generate system journal entries without revealing information that could be exploited by adversaries.</title><description><VulnDiscussion>Any operating system providing too much information in error messages risks compromising the data and security of the structure, and content of error messages needs to be carefully considered by the organization.
Organizations carefully consider the structure/content of error messages. The extent to which information systems are able to identify and handle error conditions is guided by organizational policy and operational requirements. Information that could be exploited by adversaries includes, for example, erroneous logon attempts with passwords entered by mistake as the username, mission/business information that can be derived from (if not stated explicitly by) information recorded, and personal information, such as account numbers, social security numbers, and credit card numbers.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001312</ident><fixtext fixref="F-64127r1014780_fix">Configure Ubuntu 22.04 LTS to set the appropriate permissions to the files and directories used by the systemd journal:
Add or modify the following lines in the "/etc/tmpfiles.d/systemd.conf" file:
z /run/log/journal 2750 root systemd-journal - -
Z /run/log/journal/%m ~2750 root systemd-journal - -
z /var/log/journal 2750 root systemd-journal - -
z /var/log/journal/%m 2750 root systemd-journal - -
z /var/log/journal/%m/system.journal 0750 root systemd-journal - -
Restart the system for the changes to take effect.</fixtext><fix id="F-64127r1014780_fix" /><check system="C-64219r1014779_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the /run/log/journal and /var/log/journal directories have permissions set to "2750" or less permissive by using the following command:
$ sudo find /run/log/journal /var/log/journal -type d -exec stat -c "%n %a" {} \;
/run/log/journal 2750
/var/log/journal 2750
/var/log/journal/3b018e681c904487b11671b9c1987cce 2750
If any output returned has a permission set greater than "2750", this is a finding.
Verify all files in the /run/log/journal and /var/log/journal directories have permissions set to "640" or less permissive by using the following command:
$ sudo find /run/log/journal /var/log/journal -type f -exec stat -c "%n %a" {} \;
/var/log/journal/3b018e681c904487b11671b9c1987cce/system@99dcc72bb1134aaeae4bf157aa7606f4-0000000000003c7a-0006073f8d1c0fec.journal 640
/var/log/journal/3b018e681c904487b11671b9c1987cce/system.journal 640
/var/log/journal/3b018e681c904487b11671b9c1987cce/user-1000.journal 640
/var/log/journal/3b018e681c904487b11671b9c1987cce/user-1000@bdedf14602ff4081a77dc7a6debc8626-00000000000062a6-00060b4b414b617a.journal 640
/var/log/journal/3b018e681c904487b11671b9c1987cce
If any output returned has a permission set greater than "640", this is a finding.</check-content></check></Rule></Group><Group id="V-260491"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260491r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232030</version><title>Ubuntu 22.04 LTS must configure "/var/log/syslog" file with mode "640" or less permissive.</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64128r953285_fix">Configure Ubuntu 22.04 LTS to have permissions of "640" for the "/var/log/syslog" file by using the following command:
$ sudo chmod 0640 /var/log/syslog</fixtext><fix id="F-64128r953285_fix" /><check system="C-64220r953284_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Ubuntu 22.04 LTS configures the "/var/log/syslog" file with mode "640" or less permissive by using the following command:
$ stat -c "%n %a" /var/log/syslog
/var/log/syslog 640
If a value of "640" or less permissive is not returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260492"><title>SRG-OS-000256-GPOS-00097</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260492r991557_rule" weight="10.0" severity="medium"><version>UBTU-22-232035</version><title>Ubuntu 22.04 LTS must configure audit tools with a mode of "755" or less permissive.</title><description><VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.
Operating systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools and the corresponding rights the user enjoys in order to make access decisions regarding the access to audit tools.
Audit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.
Satisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001493</ident><ident system="http://cyber.mil/cci">CCI-001494</ident><fixtext fixref="F-64129r953288_fix">Configure the audit tools on Ubuntu 22.04 LTS to be protected from unauthorized access by setting the correct permissive mode using the following command:
$ sudo chmod 755 <audit_tool_name>
Replace "<audit_tool_name>" with the audit tool that does not have the correct permissions.</fixtext><fix id="F-64129r953288_fix" /><check system="C-64221r953287_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS configures the audit tools to have a file permission of "755" or less to prevent unauthorized access by using the following command:
$ stat -c "%n %a" /sbin/auditctl /sbin/aureport /sbin/ausearch /sbin/autrace /sbin/auditd /sbin/audispd* /sbin/augenrules
/sbin/auditctl 755
/sbin/aureport 755
/sbin/ausearch 755
/sbin/autrace 755
/sbin/auditd 755
/sbin/audispd-zos-remote 755
/sbin/augenrules 755
If any of the audit tools have a mode more permissive than "0755", this is a finding.</check-content></check></Rule></Group><Group id="V-260493"><title>SRG-OS-000258-GPOS-00099</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260493r991559_rule" weight="10.0" severity="medium"><version>UBTU-22-232040</version><title>Ubuntu 22.04 LTS must have directories that contain system commands owned by "root".</title><description><VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.
Operating systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools and the corresponding rights the user has in order to make access decisions regarding the deletion of audit tools.
Audit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001495</ident><fixtext fixref="F-64130r953291_fix">Configure Ubuntu 22.04 LTS commands directories to be protected from unauthorized access. Run the following command:
$ sudo find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin ! -user root -type d -exec chown root '{}' \;</fixtext><fix id="F-64130r953291_fix" /><check system="C-64222r953290_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the system commands directories are owned by "root" by using the following command:
$ sudo find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin ! -user root -type d -exec stat -c "%n %U" '{}' \;
If any system commands directories are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260494"><title>SRG-OS-000258-GPOS-00099</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260494r991559_rule" weight="10.0" severity="medium"><version>UBTU-22-232045</version><title>Ubuntu 22.04 LTS must have directories that contain system commands group-owned by "root".</title><description><VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.
Operating systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools and the corresponding rights the user has in order to make access decisions regarding the deletion of audit tools.
Audit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001495</ident><fixtext fixref="F-64131r953294_fix">Configure Ubuntu 22.04 LTS commands directories to be protected from unauthorized access. Run the following command:
$ sudo find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin ! -group root -type d -exec chgrp root '{}' \;</fixtext><fix id="F-64131r953294_fix" /><check system="C-64223r953293_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the system commands directories are group-owned by "root" by using the following command:
$ sudo find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin ! -group root -type d -exec stat -c "%n %G" '{}' \;
If any system commands directories are returned that are not Set Group ID up on execution (SGID) files and owned by a privileged account, this is a finding.</check-content></check></Rule></Group><Group id="V-260495"><title>SRG-OS-000259-GPOS-00100</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260495r991560_rule" weight="10.0" severity="medium"><version>UBTU-22-232050</version><title>Ubuntu 22.04 LTS must have system commands owned by "root" or a system account.</title><description><VulnDiscussion>If Ubuntu 22.04 LTS were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.
This requirement applies to Ubuntu 22.04 LTS with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals must be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001499</ident><fixtext fixref="F-64132r953297_fix">Configure Ubuntu 22.04 LTS commands and their respective parent directories to be protected from unauthorized access. Run the following command, replacing "<command_name>" with any system command not owned by "root" or a required system account:
$ sudo chown root <command_name></fixtext><fix id="F-64132r953297_fix" /><check system="C-64224r953296_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the system commands contained in the following directories are owned by "root", or a required system account, by using the following command:
$ sudo find /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin ! -user root -type f -exec stat -c "%n %U" '{}' \;
If any system commands are returned and are not owned by a required system account, this is a finding.</check-content></check></Rule></Group><Group id="V-260496"><title>SRG-OS-000259-GPOS-00100</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260496r991560_rule" weight="10.0" severity="medium"><version>UBTU-22-232055</version><title>Ubuntu 22.04 LTS must have system commands group-owned by "root" or a system account.</title><description><VulnDiscussion>If Ubuntu 22.04 LTS were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.
This requirement applies to Ubuntu 22.04 LTS with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals must be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001499</ident><fixtext fixref="F-64133r953300_fix">Configure Ubuntu 22.04 LTS commands to be protected from unauthorized access.
Run the following command, replacing "<command_name>" with any system command not group-owned by "root" or a required system account:
$ sudo chgrp root <command_name></fixtext><fix id="F-64133r953300_fix" /><check system="C-64225r953299_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the system commands contained in the following directories are group-owned by "root" or a required system account by using the following command:
$ sudo find -L /bin /sbin /usr/bin /usr/sbin /usr/local/bin /usr/local/sbin ! -group root -type f ! -perm /2000 -exec stat -c "%n %G" '{}' \;
If any system commands are returned that are not Set Group ID upon execution (SGID) files and group-owned by a required system account, this is a finding.</check-content></check></Rule></Group><Group id="V-260497"><title>SRG-OS-000259-GPOS-00100</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260497r991560_rule" weight="10.0" severity="medium"><version>UBTU-22-232060</version><title>Ubuntu 22.04 LTS library directories must be owned by "root".</title><description><VulnDiscussion>If the operating system were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.
This requirement applies to operating systems with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals must be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001499</ident><fixtext fixref="F-64134r953303_fix">Configure the library files and their respective parent directories to be protected from unauthorized access. Run the following command:
$ sudo find /lib /usr/lib /lib64 ! -user root -type d -exec chown root '{}' \;</fixtext><fix id="F-64134r953303_fix" /><check system="C-64226r953302_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the systemwide shared library directories "/lib", "/lib64", and "/usr/lib" are owned by "root" by using the following command:
$ sudo find /lib /usr/lib /lib64 ! -user root -type d -exec stat -c "%n %U" '{}' \;
If any systemwide library directory is returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260498"><title>SRG-OS-000259-GPOS-00100</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260498r991560_rule" weight="10.0" severity="medium"><version>UBTU-22-232065</version><title>Ubuntu 22.04 LTS library directories must be group-owned by "root".</title><description><VulnDiscussion>If the operating system were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.
This requirement applies to operating systems with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals must be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001499</ident><fixtext fixref="F-64135r953306_fix">Configure Ubuntu 22.04 LTS library directories to be protected from unauthorized access. Run the following command:
$ sudo find /lib /usr/lib /lib64 ! -group root -type d -exec chgrp root '{}' \;</fixtext><fix id="F-64135r953306_fix" /><check system="C-64227r953305_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the systemwide library directories "/lib", "/lib64", and "/usr/lib" are group-owned by "root" by using the following command:
$ sudo find /lib /usr/lib /lib64 ! -group root -type d -exec stat -c "%n %G" '{}' \;
If any systemwide shared library directory is returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260499"><title>SRG-OS-000259-GPOS-00100</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260499r991560_rule" weight="10.0" severity="medium"><version>UBTU-22-232070</version><title>Ubuntu 22.04 LTS library files must be owned by "root".</title><description><VulnDiscussion>If the operating system were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.
This requirement applies to operating systems with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals must be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001499</ident><fixtext fixref="F-64136r953309_fix">Configure Ubuntu 22.04 LTS library files to be protected from unauthorized access. Run the following command:
$ sudo find /lib /usr/lib /lib64 ! -user root -type f -exec chown root '{}' \;</fixtext><fix id="F-64136r953309_fix" /><check system="C-64228r953308_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the systemwide shared library files contained in the directories "/lib", "/lib64", and "/usr/lib" are owned by "root" by using the following command:
$ sudo find /lib /usr/lib /lib64 ! -user root -type f -exec stat -c "%n %U" '{}' \;
If any systemwide library file is returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260500"><title>SRG-OS-000259-GPOS-00100</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260500r991560_rule" weight="10.0" severity="medium"><version>UBTU-22-232075</version><title>Ubuntu 22.04 LTS library files must be group-owned by "root".</title><description><VulnDiscussion>If the operating system were to allow any user to make changes to software libraries, then those changes might be implemented without undergoing the appropriate testing and approvals that are part of a robust change management process.
This requirement applies to operating systems with software libraries that are accessible and configurable, as in the case of interpreted languages. Software libraries also include privileged programs that execute with escalated privileges. Only qualified and authorized individuals must be allowed to obtain access to information system components for purposes of initiating changes, including upgrades and modifications.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001499</ident><fixtext fixref="F-64137r953312_fix">Configure Ubuntu 22.04 LTS library files to be protected from unauthorized access.
Run the following command, replacing "<command_name>" with any system command not group-owned by "root" or a required system account:
$ sudo chgrp root <command_name></fixtext><fix id="F-64137r953312_fix" /><check system="C-64229r953311_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the systemwide library files contained in the directories "/lib", "/lib64", and "/usr/lib" are group-owned by "root", or a required system account, by using the following command:
$ sudo find /lib /usr/lib /lib64 ! -group root -type f -exec stat -c "%n %G" '{}' \;
If any systemwide shared library file is returned and is not group-owned by a required system account, this is a finding.</check-content></check></Rule></Group><Group id="V-260501"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260501r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232080</version><title>Ubuntu 22.04 LTS must configure the directories used by the system journal to be owned by "root".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64138r953315_fix">Configure Ubuntu 22.04 LTS to set the appropriate ownership to the directories used by the systemd journal:
Add or modify the following lines in the "/usr/lib/tmpfiles.d/systemd.conf" file:
z /run/log/journal 2640 root systemd-journal - -
z /var/log/journal 2640 root systemd-journal - -
Restart the system for the changes to take effect.</fixtext><fix id="F-64138r953315_fix" /><check system="C-64230r953314_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the /run/log/journal and /var/log/journal directories are owned by "root" by using the following command:
$ sudo find /run/log/journal /var/log/journal -type d -exec stat -c "%n %U" {} \;
/run/log/journal root
/var/log/journal root
/var/log/journal/3b018e681c904487b11671b9c1987cce root
If any output returned is not owned by "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260502"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260502r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232085</version><title>Ubuntu 22.04 LTS must configure the directories used by the system journal to be group-owned by "systemd-journal".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64139r953318_fix">Configure Ubuntu 22.04 LTS to set the appropriate group-ownership to the directories used by the systemd journal:
Add or modify the following lines in the "/usr/lib/tmpfiles.d/systemd.conf" file:
z /run/log/journal 2640 root systemd-journal - -
z /var/log/journal 2640 root systemd-journal - -
Restart the system for the changes to take effect.</fixtext><fix id="F-64139r953318_fix" /><check system="C-64231r953317_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the /run/log/journal and /var/log/journal directories are group-owned by "systemd-journal" by using the following command:
$ sudo find /run/log/journal /var/log/journal -type d -exec stat -c "%n %G" {} \;
/run/log/journal systemd-journal
/var/log/journal systemd-journal
/var/log/journal/3b018e681c904487b11671b9c1987cce systemd-journal
If any output returned is not group-owned by "systemd-journal", this is a finding.</check-content></check></Rule></Group><Group id="V-260503"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260503r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232090</version><title>Ubuntu 22.04 LTS must configure the files used by the system journal to be owned by "root".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64140r953321_fix">Configure Ubuntu 22.04 LTS to set the appropriate ownership to the files used by the systemd journal:
Add or modify the following lines in the "/usr/lib/tmpfiles.d/systemd.conf" file:
Z /run/log/journal/%m ~2640 root systemd-journal - -
z /var/log/journal/%m 2640 root systemd-journal - -
z /var/log/journal/%m/system.journal 0640 root systemd-journal - -
Restart the system for the changes to take effect.</fixtext><fix id="F-64140r953321_fix" /><check system="C-64232r953320_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the /run/log/journal and /var/log/journal files are owned by "root" by using the following command:
$ sudo find /run/log/journal /var/log/journal -type f -exec stat -c "%n %U" {} \;
/var/log/journal/3b018e681c904487b11671b9c1987cce/system@99dcc72bb1134aaeae4bf157aa7606f4-0000000000003c7a-0006073f8d1c0fec.journal root
/var/log/journal/3b018e681c904487b11671b9c1987cce/system.journal root
/var/log/journal/3b018e681c904487b11671b9c1987cce/user-1000.journal root
/var/log/journal/3b018e681c904487b11671b9c1987cce/user-1000@bdedf14602ff4081a77dc7a6debc8626-00000000000062a6-00060b4b414b617a.journal root
/var/log/journal/3b018e681c904487b11671b9c1987cce/system@99dcc72bb1134aaeae4bf157aa7606f4-0000000000005301-000609a409
593.journal root
/var/log/journal/3b018e681c904487b11671b9c1987cce/system@99dcc72bb1134aaeae4bf157aa7606f4-0000000000000001-000604dae53225ee.journal root
/var/log/journal/3b018e681c904487b11671b9c1987cce/user-1000@bdedf14602ff4081a77dc7a6debc8626-000000000000083b-000604dae72c7e3b.journal root
If any output returned is not owned by "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260504"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260504r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232095</version><title>Ubuntu 22.04 LTS must configure the files used by the system journal to be group-owned by "systemd-journal".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64141r953324_fix">Configure Ubuntu 22.04 LTS to set the appropriate group-ownership to the files used by the systemd journal:
Add or modify the following line in the "/usr/lib/tmpfiles.d/systemd.conf" file:
Z /run/log/journal/%m ~2640 root systemd-journal - -
z /var/log/journal/%m 2640 root systemd-journal - -
z /var/log/journal/%m/system.journal 0640 root systemd-journal - -
Restart the system for the changes to take effect.</fixtext><fix id="F-64141r953324_fix" /><check system="C-64233r953323_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the /run/log/journal and /var/log/journal files are group-owned by "systemd-journal" by using the following command:
$ sudo find /run/log/journal /var/log/journal -type f -exec stat -c "%n %G" {} \;
/var/log/journal/3b018e681c904487b11671b9c1987cce/system@99dcc72bb1134aaeae4bf157aa7606f4-0000000000003c7a-0006073f8d1c0fec.journal systemd-journal
/var/log/journal/3b018e681c904487b11671b9c1987cce/system.journal systemd-journal
/var/log/journal/3b018e681c904487b11671b9c1987cce/user-1000.journal systemd-journal
/var/log/journal/3b018e681c904487b11671b9c1987cce/user-1000@bdedf14602ff4081a77dc7a6debc8626-00000000000062a6-00060b4b414b617a.journal systemd-journal
/var/log/journal/3b018e681c904487b11671b9c1987cce/system@99dcc72bb1134aaeae4bf157aa7606f4-0000000000005301-000609a409
593.journal systemd-journal
/var/log/journal/3b018e681c904487b11671b9c1987cce/system@99dcc72bb1134aaeae4bf157aa7606f4-0000000000000001-000604dae53225ee.journal systemd-journal
/var/log/journal/3b018e681c904487b11671b9c1987cce/user-1000@bdedf14602ff4081a77dc7a6debc8626-000000000000083b-000604dae72c7e3b.journal systemd-journal
If any output returned is not group-owned by "systemd-journal", this is a finding.</check-content></check></Rule></Group><Group id="V-260505"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260505r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232100</version><title>Ubuntu 22.04 LTS must be configured so that the "journalctl" command is owned by "root".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, Personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64142r953327_fix">Configure "journalctl" to be owned by "root":
$ sudo chown root /usr/bin/journalctl</fixtext><fix id="F-64142r953327_fix" /><check system="C-64234r953326_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the "journalctl" command is owned by "root" by using the following command:
$ sudo find /usr/bin/journalctl -exec stat -c "%n %U" {} \;
/usr/bin/journalctl root
If "journalctl" is not owned by "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260506"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260506r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232105</version><title>Ubuntu 22.04 LTS must be configured so that the "journalctl" command is group-owned by "root".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64143r953330_fix">Configure "journalctl" to be group-owned by "root":
$ sudo chown :root /usr/bin/journalctl</fixtext><fix id="F-64143r953330_fix" /><check system="C-64235r953329_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the "journalctl" command is group-owned by "root" by using the following command:
$ sudo find /usr/bin/journalctl -exec stat -c "%n %G" {} \;
/usr/bin/journalctl root
If "journalctl" is not group-owned by "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260507"><title>SRG-OS-000256-GPOS-00097</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260507r991557_rule" weight="10.0" severity="medium"><version>UBTU-22-232110</version><title>Ubuntu 22.04 LTS must configure audit tools to be owned by "root".</title><description><VulnDiscussion>Protecting audit information also includes identifying and protecting the tools used to view and manipulate log data. Therefore, protecting audit tools is necessary to prevent unauthorized operation on audit information.
Operating systems providing tools to interface with audit information will leverage user permissions and roles identifying the user accessing the tools and the corresponding rights the user enjoys in order to make access decisions regarding the access to audit tools.
Audit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.
Satisfies: SRG-OS-000256-GPOS-00097, SRG-OS-000257-GPOS-00098</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001493</ident><ident system="http://cyber.mil/cci">CCI-001494</ident><fixtext fixref="F-64144r953333_fix">Configure the audit tools on Ubuntu 22.04 LTS to be protected from unauthorized access by setting the file owner as root using the following command:
$ sudo chown root <audit_tool_name>
Replace "<audit_tool_name>" with each audit tool not owned by "root".</fixtext><fix id="F-64144r953333_fix" /><check system="C-64236r953332_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS configures the audit tools to be owned by "root" to prevent any unauthorized access with the following command:
$ stat -c "%n %U" /sbin/auditctl /sbin/aureport /sbin/ausearch /sbin/autrace /sbin/auditd /sbin/audispd* /sbin/augenrules
/sbin/auditctl root
/sbin/aureport root
/sbin/ausearch root
/sbin/autrace root
/sbin/auditd root
/sbin/audispd-zos-remote root
/sbin/augenrules root
If any of the audit tools are not owned by "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260508"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260508r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232120</version><title>Ubuntu 22.04 LTS must configure the "/var/log" directory to be owned by "root".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64145r953336_fix">Configure Ubuntu 22.04 LTS to have root own the "/var/log" directory by using the following command:
$ sudo chown root /var/log</fixtext><fix id="F-64145r953336_fix" /><check system="C-64237r953335_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS configures the "/var/log" directory to be owned by "root" by using the following command:
$ stat -c "%n %U" /var/log
/var/log root
If the "/var/log" directory is not owned by "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260509"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260509r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232125</version><title>Ubuntu 22.04 LTS must configure the "/var/log" directory to be group-owned by "syslog".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64146r953339_fix">Configure Ubuntu 22.04 LTS to have syslog group-own the "/var/log" directory by using the following command:
$ sudo chgrp syslog /var/log</fixtext><fix id="F-64146r953339_fix" /><check system="C-64238r953338_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Ubuntu 22.04 LTS configures the "/var/log" directory to be group-owned by "syslog" by using the following command:
$ stat -c "%n %G" /var/log
/var/log syslog
If the "/var/log" directory is not group-owned by "syslog", this is a finding.</check-content></check></Rule></Group><Group id="V-260510"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260510r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232130</version><title>Ubuntu 22.04 LTS must configure "/var/log/syslog" file to be owned by "syslog".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64147r953342_fix">Configure Ubuntu 22.04 LTS to have syslog own the "/var/log/syslog" file by using the following command:
$ sudo chown syslog /var/log/syslog</fixtext><fix id="F-64147r953342_fix" /><check system="C-64239r953341_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Ubuntu 22.04 LTS configures the "/var/log/syslog" file to be owned by "syslog" by using the following command:
$ stat -c "%n %U" /var/log/syslog
/var/log/syslog
If the "/var/log/syslog" file is not owned by "syslog", this is a finding.</check-content></check></Rule></Group><Group id="V-260511"><title>SRG-OS-000206-GPOS-00084</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260511r958566_rule" weight="10.0" severity="medium"><version>UBTU-22-232135</version><title>Ubuntu 22.04 LTS must configure the "/var/log/syslog" file to be group-owned by "adm".</title><description><VulnDiscussion>Only authorized personnel should be aware of errors and the details of the errors. Error messages are an indicator of an organization's operational state or can identify the operating system or platform. Additionally, personally identifiable information (PII) and operational information must not be revealed through error messages to unauthorized personnel or their designated representatives.
The structure and content of error messages must be carefully considered by the organization and development team. The extent to which the information system is able to identify and handle error conditions is guided by organizational policy and operational requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001314</ident><fixtext fixref="F-64148r953345_fix">Configure Ubuntu 22.04 LTS to have adm group-own the "/var/log/syslog" file by using the following command:
$ sudo chgrp adm /var/log/syslog</fixtext><fix id="F-64148r953345_fix" /><check system="C-64240r953344_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Ubuntu 22.04 LTS configures the "/var/log/syslog" file to be group-owned by "adm" by using the following command:
$ stat -c "%n %G" /var/log/syslog
/var/log/syslog adm
If the "/var/log/syslog" file is not group-owned by "adm", this is a finding.</check-content></check></Rule></Group><Group id="V-260512"><title>SRG-OS-000205-GPOS-00083</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260512r958564_rule" weight="10.0" severity="medium"><version>UBTU-22-232140</version><title>Ubuntu 22.04 LTS must be configured so that the "journalctl" command is not accessible by unauthorized users.</title><description><VulnDiscussion>Any operating system providing too much information in error messages risks compromising the data and security of the structure, and content of error messages needs to be carefully considered by the organization.
Organizations carefully consider the structure/content of error messages. The extent to which information systems are able to identify and handle error conditions is guided by organizational policy and operational requirements. Information that could be exploited by adversaries includes, for example, erroneous logon attempts with passwords entered by mistake as the username, mission/business information that can be derived from (if not stated explicitly by) information recorded, and personal information, such as account numbers, social security numbers, and credit card numbers.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001312</ident><fixtext fixref="F-64149r953348_fix">Configure "journalctl" to have a permission set of "740":
$ sudo chmod 740 /usr/bin/journalctl</fixtext><fix id="F-64149r953348_fix" /><check system="C-64241r953347_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the "journalctl" command has a permission set of "740" by using the following command:
$ sudo find /usr/bin/journalctl -exec stat -c "%n %a" {} \;
/usr/bin/journalctl 740
If "journalctl" is not set to "740", this is a finding.</check-content></check></Rule></Group><Group id="V-260513"><title>SRG-OS-000138-GPOS-00069</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260513r958524_rule" weight="10.0" severity="medium"><version>UBTU-22-232145</version><title>Ubuntu 22.04 LTS must set a sticky bit on all public directories to prevent unauthorized and unintended information transferred via shared system resources.</title><description><VulnDiscussion>Preventing unauthorized information transfers mitigates the risk of information, including encrypted representations of information, produced by the actions of prior users/roles (or the actions of processes acting on behalf of prior users/roles) from being available to any current users/roles (or current processes) that obtain access to shared system resources (e.g., registers, main memory, hard disks) after those resources have been released back to information systems. The control of information in shared resources is also commonly referred to as object reuse and residual information protection.
This requirement generally applies to the design of an information technology product, but it can also apply to the configuration of particular information system components that are, or use, such products. This can be verified by acceptance/validation processes in DOD or other government agencies.
There may be shared resources with configurable protections (e.g., files in storage) that may be assessed on specific information system components.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001090</ident><fixtext fixref="F-64150r953351_fix">Configure all public directories to have the sticky bit set to prevent unauthorized and unintended information transferred via shared system resources.
Set the sticky bit on all public directories using the following command, replacing "<public_directory_name>" with any directory path missing the sticky bit:
$ sudo chmod +t <public_directory_name></fixtext><fix id="F-64150r953351_fix" /><check system="C-64242r953350_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that all public directories have the public sticky bit set by using the following command:
$ sudo find / -type d -perm -002 ! -perm -1000
If any public directories are found missing the sticky bit, this is a finding.</check-content></check></Rule></Group><Group id="V-260514"><title>SRG-OS-000297-GPOS-00115</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260514r958672_rule" weight="10.0" severity="medium"><version>UBTU-22-251010</version><title>Ubuntu 22.04 LTS must have an application firewall installed in order to control remote access methods.</title><description><VulnDiscussion>Remote access services, such as those providing remote access to network devices and information systems, which lack automated control capabilities, increase risk and make remote user access management difficult at best.
Remote access is access to DOD nonpublic information systems by an authorized user (or an information system) communicating through an external, nonorganization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.
Ubuntu 22.04 LTS functionality (e.g., RDP) must be capable of taking enforcement action if the audit reveals unauthorized activity. Automated control of remote access sessions allows organizations to ensure ongoing compliance with remote access policies by enforcing connection rules of remote access applications on a variety of information system components (e.g., servers, workstations, notebook computers, smartphones, and tablets).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002314</ident><fixtext fixref="F-64151r953354_fix">Install the Uncomplicated Firewall by using the following command:
$ sudo apt-get install ufw</fixtext><fix id="F-64151r953354_fix" /><check system="C-64243r953353_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the Uncomplicated Firewall is installed by using the following command:
$ dpkg -l | grep ufw
ii ufw 0.36.1-4ubuntu0.1 all program for managing a Netfilter firewall
If the "ufw" package is not installed, ask the system administrator if another application firewall is installed.
If no application firewall is installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260515"><title>SRG-OS-000297-GPOS-00115</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260515r958672_rule" weight="10.0" severity="medium"><version>UBTU-22-251015</version><title>Ubuntu 22.04 LTS must enable and run the Uncomplicated Firewall (ufw).</title><description><VulnDiscussion>Remote access services, such as those providing remote access to network devices and information systems, which lack automated control capabilities, increase risk and make remote user access management difficult at best.
Remote access is access to DOD nonpublic information systems by an authorized user (or an information system) communicating through an external, nonorganization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.
Ubuntu 22.04 LTS functionality (e.g., RDP) must be capable of taking enforcement action if the audit reveals unauthorized activity. Automated control of remote access sessions allows organizations to ensure ongoing compliance with remote access policies by enforcing connection rules of remote access applications on a variety of information system components (e.g., servers, workstations, notebook computers, smartphones, and tablets).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002314</ident><fixtext fixref="F-64152r953357_fix">Enable the ufw by using the following command:
$ sudo ufw enable</fixtext><fix id="F-64152r953357_fix" /><check system="C-64244r953356_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the ufw is enabled on the system with the following command:
$ sudo ufw status
Status: active
If the above command returns the status as "inactive" or any type of error, this is a finding.</check-content></check></Rule></Group><Group id="V-260516"><title>SRG-OS-000480-GPOS-00232</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260516r991593_rule" weight="10.0" severity="medium"><version>UBTU-22-251020</version><title>Ubuntu 22.04 LTS must have an application firewall enabled.</title><description><VulnDiscussion>Firewalls protect computers from network attacks by blocking or limiting access to open network ports. Application firewalls limit which applications are allowed to communicate over the network.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64153r953360_fix">Enable and start the ufw by using the following command:
$ sudo systemctl enable ufw.service --now</fixtext><fix id="F-64153r953360_fix" /><check system="C-64245r953359_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the Uncomplicated Firewall (ufw) is enabled on the system with the following command:
$ systemctl status ufw.service | grep -i "active:"
Active: active (exited) since Thu 2022-12-25 00:00:01 NZTD; 365 days 11h ago
If "ufw.service" is "inactive", this is a finding.
If the ufw is not installed, ask the system administrator if another application firewall is installed. If no application firewall is installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260517"><title>SRG-OS-000420-GPOS-00186</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260517r958902_rule" weight="10.0" severity="medium"><version>UBTU-22-251025</version><title>Ubuntu 22.04 LTS must configure the Uncomplicated Firewall (ufw) to rate-limit impacted network interfaces.</title><description><VulnDiscussion>Denial of service (DoS) is a condition when a resource is not available for legitimate users. When this occurs, the organization either cannot accomplish its mission or must operate at degraded capacity.
This requirement addresses the configuration of the operating system to mitigate the impact of DoS attacks that have occurred or are ongoing on system availability. For each system, known and potential DoS attacks must be identified and solutions for each type implemented. A variety of technologies exist to limit or, in some cases, eliminate the effects of DoS attacks (e.g., limiting processes or establishing memory partitions). Employing increased capacity and bandwidth, combined with service redundancy, may reduce the susceptibility to some DoS attacks.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002385</ident><fixtext fixref="F-64154r953363_fix">Configure the application firewall to protect against or limit the effects of DoS attacks by ensuring Ubuntu 22.04 LTS is implementing rate-limiting measures on impacted network interfaces.
For each service with a port listening to connections, run the following command, replacing "<service_name>" with the service that needs to be rate limited.
$ sudo ufw limit <service_name>
Rate-limiting can also be done on an interface. An example of adding a rate limit on the "ens160" interface follows:
$ sudo ufw limit in on ens160</fixtext><fix id="F-64154r953363_fix" /><check system="C-64246r953362_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify an application firewall is configured to rate limit any connection to the system.
Check all the services listening to the ports by using the following command:
$ ss -l46ut
Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
tcp LISTEN 0 511 *:http *:*
tcp LISTEN 0 128 [::]:ssh [::]:*
tcp LISTEN 0 128 [::]:ipp [::]:*
tcp LISTEN 0 128 [::]:smtp [::]:*
For each entry, verify that the ufw is configured to rate limit the service ports by using the following command:
$ sudo ufw status
Status: active
To Action From
-- ------ ----
80/tcp LIMIT Anywhere
25/tcp LIMIT Anywhere
Anywhere DENY 240.9.19.81
443 LIMIT Anywhere
22/tcp LIMIT Anywhere
80/tcp (v6) LIMIT Anywhere
25/tcp (v6) LIMIT Anywhere
22/tcp (v6) LIMIT Anywhere (v6)
25 DENY OUT Anywhere
25 (v6) DENY OUT Anywhere (v6)
If any port with a state of "LISTEN" that does not have an action of "DENY", is not marked with the "LIMIT" action, this is a finding.</check-content></check></Rule></Group><Group id="V-260518"><title>SRG-OS-000096-GPOS-00050</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260518r958480_rule" weight="10.0" severity="medium"><version>UBTU-22-251030</version><title>Ubuntu 22.04 LTS must be configured to prohibit or restrict the use of functions, ports, protocols, and/or services, as defined in the PPSM CAL and vulnerability assessments.</title><description><VulnDiscussion>To prevent unauthorized connection of devices, unauthorized transfer of information, or unauthorized tunneling (i.e., embedding of data types within data types), organizations must disable or restrict unused or unnecessary physical and logical ports/protocols on information systems.
Operating systems are capable of providing a wide variety of functions and services. Some of the functions and services provided by default may not be necessary to support essential organizational operations. Additionally, it is sometimes convenient to provide multiple services from a single component (e.g., VPN and IPS); however, doing so increases risk over limiting the services provided by any one component.
To support the requirements and principles of least functionality, the operating system must support the organizational requirements, providing only essential capabilities and limiting the use of ports, protocols, and/or services to only those required, authorized, and approved to conduct official business or to address authorized quality of life issues.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000382</ident><fixtext fixref="F-64155r953366_fix">Add all ports, protocols, or services allowed by the PPSM CLSA by using the following command:
$ sudo ufw allow <direction> <port/protocol/service>
Where the direction is "in" or "out" and the port is the one corresponding to the protocol or service allowed.
To deny access to ports, protocols, or services, use:
$ sudo ufw deny <direction> <port/protocol/service></fixtext><fix id="F-64155r953366_fix" /><check system="C-64247r953365_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Check the firewall configuration for any unnecessary or prohibited functions, ports, protocols, and/or services by using the following command:
$ sudo ufw show raw
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
Chain FORWARD (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 0 packets, 0 bytes)
pkts bytes target prot opt in out source destination
Ask the system administrator for the site or program PPSM CLSA. Verify the services allowed by the firewall match the PPSM CLSA.
If there are any additional ports, protocols, or services that are not included in the PPSM CLSA, this is a finding.
If there are any ports, protocols, or services that are prohibited by the PPSM CAL, this is a finding.</check-content></check></Rule></Group><Group id="V-260519"><title>SRG-OS-000355-GPOS-00143</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260519r1038944_rule" weight="10.0" severity="low"><version>UBTU-22-252010</version><title>Ubuntu 22.04 LTS must, for networked systems, compare internal information system clocks at least every 24 hours with a server synchronized to one of the redundant United States Naval Observatory (USNO) time servers, or a time server designated for the appropriate DOD network (NIPRNet/SIPRNet), and/or the Global Positioning System (GPS).</title><description><VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events. Sources outside the configured acceptable allowance (drift) may be inaccurate.
Synchronizing internal information system clocks provides uniformity of time stamps for information systems with multiple system clocks and systems connected over a network.
Organizations should consider endpoints that may not have regular access to the authoritative time server (e.g., mobile, teleworking, and tactical endpoints).
Note that USNO offers authenticated NTP service to DOD and U.S. Government agencies operating on the NIPR and SIPR networks. Visit https://www.usno.navy.mil/USNO/time/ntp/DOD-customers for more information.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004923</ident><ident system="http://cyber.mil/cci">CCI-001891</ident><fixtext fixref="F-64156r953369_fix">Configure Ubuntu 22.04 LTS to compare the system clock at least every 24 hours to the authoritative time source.
Add or modify the following line in the "/etc/chrony/chrony.conf" file:
server [source] iburst maxpoll = 16
Restart "chrony.service" for the changes to take effect by using the following command:
$ sudo systemctl restart chrony.service</fixtext><fix id="F-64156r953369_fix" /><check system="C-64248r953368_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to compare the system clock at least every 24 hours to the authoritative time source by using the following command:
Note: If the system is not networked, this requirement is not applicable.
$ sudo grep maxpoll -ir /etc/chrony*
server tick.usno.navy.mil iburst maxpoll 16
If the "maxpoll" option is set to a number greater than 16, the line is commented out, or is missing, this is a finding.
Verify that the "chrony.conf" file is configured to an authoritative DOD time source by using the following command:
$ sudo grep -ir server /etc/chrony*
server tick.usno.navy.mil iburst maxpoll 16
server tock.usno.navy.mil iburst maxpoll 16
server ntp2.usno.navy.mil iburst maxpoll 16
If "server" is not defined, is not set to an authoritative DOD time source, is commented out, or missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260520"><title>SRG-OS-000356-GPOS-00144</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260520r1044776_rule" weight="10.0" severity="low"><version>UBTU-22-252015</version><title>Ubuntu 22.04 LTS must synchronize internal information system clocks to the authoritative time source when the time difference is greater than one second.</title><description><VulnDiscussion>Inaccurate time stamps make it more difficult to correlate events and can lead to an inaccurate analysis. Determining the correct time a particular event occurred on a system is critical when conducting forensic analysis and investigating system events.
Synchronizing internal information system clocks provides uniformity of time stamps for information systems with multiple system clocks and systems connected over a network. Organizations should consider setting time periods for different types of systems (e.g., financial, legal, or mission-critical systems).
Organizations should also consider endpoints that may not have regular access to the authoritative time server (e.g., mobile, teleworking, and tactical endpoints). This requirement is related to the comparison done every 24 hours in SRG-OS-000355 because a comparison must be done to determine the time difference.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004926</ident><ident system="http://cyber.mil/cci">CCI-002046</ident><fixtext fixref="F-64157r1044775_fix">Configure chrony to synchronize the internal system clocks to the authoritative source when the time difference is greater than one second by doing the following:
Edit the "/etc/chrony/chrony.conf" file and add:
makestep 1 -1
Restart the chrony service:
$ sudo systemctl restart chrony.service</fixtext><fix id="F-64157r1044775_fix" /><check system="C-64249r1044774_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS synchronizes internal system clocks to the authoritative time source when the time difference is greater than one second.
Note: If the system is not networked, this requirement is not applicable.
Check the value of "makestep" by using the following command:
$ grep -ir makestep /etc/chrony*
makestep 1 -1
If "makestep" is not set to "1 -1", is commented out, or is missing, this is a finding.
Verify the NTP service is active and the system clock is synchronized with the authoritative time source:
$ timedatectl | grep -Ei '(synchronized|service)'
System clock synchronized: yes
NTP service: active
If the NTP service is not active, this is a finding.
If the system clock is not synchronized, this is a finding.</check-content></check></Rule></Group><Group id="V-260521"><title>SRG-OS-000359-GPOS-00146</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260521r958788_rule" weight="10.0" severity="low"><version>UBTU-22-252020</version><title>Ubuntu 22.04 LTS must record time stamps for audit records that can be mapped to Coordinated Universal Time (UTC).</title><description><VulnDiscussion>If time stamps are not consistently applied and there is no common time reference, it is difficult to perform forensic analysis.
Time stamps generated by the operating system include date and time. Time is commonly expressed in UTC or local time with an offset from UTC.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001890</ident><fixtext fixref="F-64158r953375_fix">To Configure Ubuntu 22.04 LTS time zone to use UTC, run the following command:
$ sudo timedatectl set-timezone Etc/UTC</fixtext><fix id="F-64158r953375_fix" /><check system="C-64250r953374_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the time zone is configured to use UTC by using the following command:
$ timedatectl status | grep -i "time zone"
Time zone: Etc/UTC (UTC, +0000)
If "Time zone" is not set to UTC, this is a finding.</check-content></check></Rule></Group><Group id="V-260522"><title>SRG-OS-000142-GPOS-00071</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260522r958528_rule" weight="10.0" severity="medium"><version>UBTU-22-253010</version><title>Ubuntu 22.04 LTS must be configured to use TCP syncookies.</title><description><VulnDiscussion>DoS is a condition when a resource is not available for legitimate users. When this occurs, the organization either cannot accomplish its mission or must operate at degraded capacity.
Managing excess capacity ensures that sufficient capacity is available to counter flooding attacks. Employing increased capacity and service redundancy may reduce the susceptibility to some DoS attacks. Managing excess capacity may include, for example, establishing selected usage priorities, quotas, or partitioning.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001095</ident><fixtext fixref="F-64159r953378_fix">Configure Ubuntu 22.04 LTS to use TCP syncookies by using the following command:
$ sudo sysctl -w net.ipv4.tcp_syncookies = 1
If "1" is not the system's default value, add or update the following line in "/etc/sysctl.conf":
net.ipv4.tcp_syncookies = 1</fixtext><fix id="F-64159r953378_fix" /><check system="C-64251r953377_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to use TCP syncookies by using the following command:
$ sysctl net.ipv4.tcp_syncookies
net.ipv4.tcp_syncookies = 1
If the value is not "1", this is a finding.
Check the saved value of TCP syncookies by using the following command:
$ sudo grep -ir net.ipv4.tcp_syncookies /etc/sysctl.d/*.conf /run/sysctl.d/*.conf /usr/local/lib/sysctl.d/*.conf /usr/lib/sysctl.d/*.conf /lib/sysctl.d/*.conf /etc/sysctl.conf 2> /dev/null
If the "net.ipv4.tcp_syncookies" option is not set to "1", is commented out, or is missing, this is a finding.
If conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260523"><title>SRG-OS-000423-GPOS-00187</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260523r958908_rule" weight="10.0" severity="high"><version>UBTU-22-255010</version><title>Ubuntu 22.04 LTS must have SSH installed.</title><description><VulnDiscussion>Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered.
This requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.
Protecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.
Satisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002418</ident><ident system="http://cyber.mil/cci">CCI-002420</ident><ident system="http://cyber.mil/cci">CCI-002422</ident><fixtext fixref="F-64160r953381_fix">Install the "ssh" meta-package by using the following command:
$ sudo apt install ssh</fixtext><fix id="F-64160r953381_fix" /><check system="C-64252r953380_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the SSH package is installed by using the following command:
$ sudo dpkg -l | grep openssh
ii openssh-client 1:8.9p1-3ubuntu0.4 amd64 secure shell (SSH) client, for secure access to remote machines
ii openssh-server 1:8.9p1-3ubuntu0.4 amd64 secure shell (SSH) server, for secure access from remote machines
ii openssh-sftp-server 1:8.9p1-3ubuntu0.4 amd64 secure shell (SSH) sftp server module, for SFTP access from remote machines
If the "openssh" server package is not installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260524"><title>SRG-OS-000423-GPOS-00187</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260524r958908_rule" weight="10.0" severity="high"><version>UBTU-22-255015</version><title>Ubuntu 22.04 LTS must use SSH to protect the confidentiality and integrity of transmitted information.</title><description><VulnDiscussion>Without protection of the transmitted information, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read or altered.
This requirement applies to both internal and external networks and all types of information system components from which information can be transmitted (e.g., servers, mobile devices, notebook computers, printers, copiers, scanners, and facsimile machines). Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.
Protecting the confidentiality and integrity of organizational information can be accomplished by physical means (e.g., employing physical distribution systems) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa.
Satisfies: SRG-OS-000423-GPOS-00187, SRG-OS-000425-GPOS-00189, SRG-OS-000426-GPOS-00190</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002418</ident><ident system="http://cyber.mil/cci">CCI-002420</ident><ident system="http://cyber.mil/cci">CCI-002422</ident><fixtext fixref="F-64161r953384_fix">Enable and start the "ssh.service" by using the following command:
$ sudo systemctl enable ssh.service --now</fixtext><fix id="F-64161r953384_fix" /><check system="C-64253r953383_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the "ssh.service" is enabled and active by using the following commands:
$ sudo systemctl is-enabled ssh
enabled
$ sudo systemctl is-active ssh
active
If "ssh.service" is not enabled and active, this is a finding.</check-content></check></Rule></Group><Group id="V-260525"><title>SRG-OS-000023-GPOS-00006</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260525r958390_rule" weight="10.0" severity="medium"><version>UBTU-22-255020</version><title>Ubuntu 22.04 LTS must display the Standard Mandatory DOD Notice and Consent Banner before granting any local or remote connection to the system.</title><description><VulnDiscussion>Display of a standardized and approved use notification before granting access to the publicly accessible operating system ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.
System use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.
The banner must be formatted in accordance with applicable DOD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:
"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.
By using this IS (which includes any device attached to this IS), you consent to the following conditions:
-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.
-At any time, the USG may inspect and seize data stored on this IS.
-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.
-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.
-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details."
Use the following verbiage for operating systems that have severe limitations on the number of characters that can be displayed in the banner:
"I've read (literal ampersand) consent to terms in IS user agreem't."
Satisfies: SRG-OS-000023-GPOS-00006, SRG-OS-000228-GPOS-00088</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000048</ident><ident system="http://cyber.mil/cci">CCI-001384</ident><ident system="http://cyber.mil/cci">CCI-001385</ident><ident system="http://cyber.mil/cci">CCI-001386</ident><ident system="http://cyber.mil/cci">CCI-001387</ident><ident system="http://cyber.mil/cci">CCI-001388</ident><fixtext fixref="F-64162r953387_fix">Set the parameter Banner in "/etc/ssh/sshd_config" to point to the "/etc/issue.net" file:
$ sudo sed -i '/^Banner/d' /etc/ssh/sshd_config
$ sudo sed -i '$aBanner /etc/issue.net' /etc/ssh/sshd_config
Replace the text in "/etc/issue.net" with the Standard Mandatory DOD Notice and Consent Banner:
You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only. By using this IS (which includes any device attached to this IS), you consent to the following conditions:
-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.
-At any time, the USG may inspect and seize data stored on this IS.
-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.
-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.
-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details.
Restart the SSH daemon for the changes to take effect and then signal the SSH server to reload the configuration file:
$ sudo systemctl -s SIGHUP kill sshd</fixtext><fix id="F-64162r953387_fix" /><check system="C-64254r953386_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS displays the Standard Mandatory DOD Notice and Consent Banner before granting access to Ubuntu 22.04 LTS via an SSH logon by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'banner'
/etc/ssh/sshd_config:Banner /etc/issue.net
The command will return the banner option along with the name of the file that contains the SSH banner. If the line is commented out, missing, or conflicting results are returned, this is a finding.
Verify the specified banner file matches the Standard Mandatory DOD Notice and Consent Banner exactly:
$ cat /etc/issue.net
You are accessing a U.S. Government (USG) Information System (IS) that is
provided for USG-authorized use only. By using this IS (which includes any
device attached to this IS), you consent to the following conditions:
-The USG routinely intercepts and monitors communications on this IS for
purposes including, but not limited to, penetration testing, COMSEC monitoring,
network operations and defense, personnel misconduct (PM), law enforcement
(LE), and counterintelligence (CI) investigations.
-At any time, the USG may inspect and seize data stored on this IS.
-Communications using, or data stored on, this IS are not private, are subject
to routine monitoring, interception, and search, and may be disclosed or used
for any USG-authorized purpose.
-This IS includes security measures (e.g., authentication and access controls)
to protect USG interests--not for your personal benefit or privacy.
-Notwithstanding the above, using this IS does not constitute consent to PM, LE
or CI investigative searching or monitoring of the content of privileged
communications, or work product, related to personal representation or services
by attorneys, psychotherapists, or clergy, and their assistants. Such
communications and work product are private and confidential. See User
Agreement for details.
If the banner text does not match the Standard Mandatory DOD Notice and Consent Banner exactly, this is a finding.</check-content></check></Rule></Group><Group id="V-260526"><title>SRG-OS-000480-GPOS-00229</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260526r991591_rule" weight="10.0" severity="high"><version>UBTU-22-255025</version><title>Ubuntu 22.04 LTS must not allow unattended or automatic login via SSH.</title><description><VulnDiscussion>Failure to restrict system access to authenticated users negatively impacts Ubuntu 22.04 LTS security.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64163r953390_fix">Configure the SSH server to not allow unattended or automatic login to the system.
Add or modify the following lines in the "/etc/ssh/sshd_config" file:
PermitEmptyPasswords no
PermitUserEnvironment no
Restart the SSH daemon for the changes to take effect:
$ sudo systemctl restart sshd.service</fixtext><fix id="F-64163r953390_fix" /><check system="C-64255r953389_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that unattended or automatic login via SSH is disabled by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iEH '(permit(.*?)(passwords|environment))'
/etc/ssh/sshd_config:PermitEmptyPasswords no
/etc/ssh/sshd_config:PermitUserEnvironment no
If "PermitEmptyPasswords" and "PermitUserEnvironment" are not set to "no", are commented out, are missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260527"><title>SRG-OS-000126-GPOS-00066</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260527r986275_rule" weight="10.0" severity="medium"><version>UBTU-22-255030</version><title>Ubuntu 22.04 LTS must be configured so that all network connections associated with SSH traffic terminate after becoming unresponsive.</title><description><VulnDiscussion>Terminating an unresponsive SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.
Terminating network connections associated with communications sessions includes, for example, deallocating associated TCP/IP address/port pairs at the operating system level and deallocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean the operating system terminates all sessions or network access; it only ends the unresponsive session and releases the resources associated with that session.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001133</ident><fixtext fixref="F-64164r953393_fix">Configure the SSH server to terminate a user session automatically after the SSH client has become unresponsive.
Note: This setting must be applied in conjunction with UBTU-22-255040 to function correctly.
Add or modify the following line in the "/etc/ssh/sshd_config" file:
ClientAliveCountMax 1
Restart the SSH daemon for the changes to take effect:
$ sudo systemctl restart sshd.service</fixtext><fix id="F-64164r953393_fix" /><check system="C-64256r953392_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the SSH server automatically terminates a user session after the SSH client has become unresponsive by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'clientalivecountmax'
/etc/ssh/sshd_config:ClientAliveCountMax 1
If "ClientAliveCountMax" is not to "1", if conflicting results are returned, is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260528"><title>SRG-OS-000163-GPOS-00072</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260528r970703_rule" weight="10.0" severity="medium"><version>UBTU-22-255035</version><title>Ubuntu 22.04 LTS must be configured so that all network connections associated with SSH traffic are terminated after 10 minutes of becoming unresponsive.</title><description><VulnDiscussion>Terminating an unresponsive SSH session within a short time period reduces the window of opportunity for unauthorized personnel to take control of a management session enabled on the console or console port that has been left unattended. In addition, quickly terminating an idle SSH session will also free up resources committed by the managed network element.
Terminating network connections associated with communications sessions includes, for example, deallocating associated TCP/IP address/port pairs at the operating system level and deallocating networking assignments at the application level if multiple application sessions are using a single operating system-level network connection. This does not mean that the operating system terminates all sessions or network access; it only ends the unresponsive session and releases the resources associated with that session.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001133</ident><fixtext fixref="F-64165r953396_fix">Configure the SSH server to terminate a user session automatically after the SSH client has been unresponsive for 10 minutes.
Note: This setting must be applied in conjunction with UBTU-22-255040 to function correctly.
Add or modify the following line in the "/etc/ssh/sshd_config" file:
ClientAliveInterval 600
Restart the SSH daemon for the changes to take effect:
$ sudo systemctl restart sshd.service</fixtext><fix id="F-64165r953396_fix" /><check system="C-64257r953395_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the SSH server automatically terminates a user session after the SSH client has been unresponsive for 10 minutes by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'clientaliveinterval'
/etc/ssh/sshd_config:ClientAliveInterval 600
If "ClientAliveInterval" does not exist, is not set to a value of "600" or less, if conflicting results are returned, is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260529"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260529r991589_rule" weight="10.0" severity="high"><version>UBTU-22-255040</version><title>Ubuntu 22.04 LTS must be configured so that remote X connections are disabled, unless to fulfill documented and validated mission requirements.</title><description><VulnDiscussion>The security risk of using X11 forwarding is that the client's X11 display server may be exposed to attack when the SSH client requests forwarding. A system administrator may have a stance in which they want to protect clients that may expose themselves to attack by unwittingly requesting X11 forwarding, which can warrant a ''no'' setting.
X11 forwarding should be enabled with caution. Users with the ability to bypass file permissions on the remote host (for the user's X11 authorization database) can access the local X11 display through the forwarded connection. An attacker may then be able to perform activities such as keystroke monitoring if the ForwardX11Trusted option is also enabled.
If X11 services are not required for the system's intended function, they should be disabled or restricted as appropriate to the system's needs.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64166r953399_fix">Configure the SSH server to disable X11 forwarding.
Add or modify the following line in the "/etc/ssh/sshd_config" file:
X11Forwarding no
Restart the SSH daemon for the changes to take effect:
$ sudo systemctl restart sshd.service</fixtext><fix id="F-64166r953399_fix" /><check system="C-64258r953398_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that X11 forwarding is disabled by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'x11forwarding'
/etc/ssh/sshd_config:X11Forwarding no
If "X11Forwarding" is set to "yes" and is not documented with the information system security officer (ISSO) as an operational requirement, is commented out, is missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260530"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260530r991589_rule" weight="10.0" severity="medium"><version>UBTU-22-255045</version><title>Ubuntu 22.04 LTS SSH daemon must prevent remote hosts from connecting to the proxy display.</title><description><VulnDiscussion>When X11 forwarding is enabled, there may be additional exposure to the server and client displays if the sshd proxy display is configured to listen on the wildcard address. By default, sshd binds the forwarding server to the loopback address and sets the hostname part of the DISPLAY environment variable to localhost. This prevents remote hosts from connecting to the proxy display.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64167r953402_fix">Configure the SSH server to prevent remote hosts from connecting to the proxy display.
Add or modify the following line in the "/etc/ssh/sshd_config" file:
X11UseLocalhost yes
Restart the SSH daemon for the changes to take effect:
$ sudo systemctl restart sshd.service</fixtext><fix id="F-64167r953402_fix" /><check system="C-64259r953401_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the SSH server prevents remote hosts from connecting to the proxy display by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'x11uselocalhost'
/etc/ssh/sshd_config:X11UseLocalhost yes
If "X11UseLocalhost" is set to "no", is commented out, is missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260531"><title>SRG-OS-000033-GPOS-00014</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260531r958408_rule" weight="10.0" severity="medium"><version>UBTU-22-255050</version><title>Ubuntu 22.04 LTS must configure the SSH daemon to use FIPSÂ 140-3-approved ciphers to prevent the unauthorized disclosure of information and/or detect changes to information during transmission.</title><description><VulnDiscussion>Without cryptographic integrity protections, information can be altered by unauthorized users without detection.
Remote access (e.g., RDP) is access to DOD nonpublic information systems by an authorized user (or an information system) communicating through an external, nonorganization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.
Nonlocal maintenance and diagnostic activities are those activities conducted by individuals communicating through a network, either an external network (e.g., the internet) or an internal network.
Local maintenance and diagnostic activities are those activities carried out by individuals physically present at the information system or information system component and not communicating across a network connection.
Encrypting information for transmission protects information from unauthorized disclosure and modification. Cryptographic mechanisms implemented to protect information integrity include, for example, cryptographic hash functions which have common application in digital signatures, checksums, and message authentication codes.
By specifying a cipher list with the order of ciphers being in a "strongest to weakest" orientation, the system will automatically attempt to use the strongest cipher for securing SSH connections.
Satisfies: SRG-OS-000033-GPOS-00014, SRG-OS-000394-GPOS-00174, SRG-OS-000424-GPOS-00188</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000068</ident><ident system="http://cyber.mil/cci">CCI-002421</ident><ident system="http://cyber.mil/cci">CCI-003123</ident><fixtext fixref="F-64168r953405_fix">Configure the SSH server to only implement FIPS-approved ciphers.
Add or modify the following line in the "/etc/ssh/sshd_config" file:
Ciphers aes256-ctr,aes256-gcm@openssh.com,aes192-ctr,aes128-ctr,aes128-gcm@openssh.com
Restart the SSH server for the changes to take effect:
$ sudo systemctl restart sshd.service</fixtext><fix id="F-64168r953405_fix" /><check system="C-64260r953404_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the SSH server is configured to only implement FIPS-approved ciphers with the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'ciphers'
/etc/ssh/sshd_config:Ciphers aes256-ctr,aes256-gcm@openssh.com,aes192-ctr,aes128-ctr,aes128-gcm@openssh.com
If "Ciphers" does not contain only the ciphers "aes256-ctr,aes256-gcm@openssh.com,aes192-ctr,aes128-ctr,aes128-gcm@openssh.com" in exact order, is commented out, is missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260532"><title>SRG-OS-000250-GPOS-00093</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260532r991554_rule" weight="10.0" severity="medium"><version>UBTU-22-255055</version><title>Ubuntu 22.04 LTS must configure the SSH daemon to use Message Authentication Codes (MACs) employing FIPS 140-3-approved cryptographic hashes to prevent the unauthorized disclosure of information and/or detect changes to information during transmission.</title><description><VulnDiscussion>Without cryptographic integrity protections, information can be altered by unauthorized users without detection.
Remote access (e.g., RDP) is access to DOD nonpublic information systems by an authorized user (or an information system) communicating through an external, non-organization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless. Nonlocal maintenance and diagnostic activities are those activities conducted by individuals communicating through a network, either an external network (e.g., the internet) or an internal network.
Local maintenance and diagnostic activities are those activities carried out by individuals physically present at the information system or information system component and not communicating across a network connection.
Encrypting information for transmission protects information from unauthorized disclosure and modification. Cryptographic mechanisms implemented to protect information integrity include, for example, cryptographic hash functions, which have common application in digital signatures, checksums, and message authentication codes.
Satisfies: SRG-OS-000250-GPOS-00093, SRG-OS-000393-GPOS-00173, SRG-OS-000424-GPOS-00188</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001453</ident><ident system="http://cyber.mil/cci">CCI-002421</ident><ident system="http://cyber.mil/cci">CCI-002890</ident><fixtext fixref="F-64169r953408_fix">Configure the SSH server to only use MACs that employ FIPS 140-3 approved hashes.
Add or modify the following line in the "/etc/ssh/sshd_config" file:
MACs hmac-sha2-512,hmac-sha2-512-etm@openssh.com,hmac-sha2-256,hmac-sha2-256-etm@openssh.com
Restart the SSH server for the changes to take effect:
$ sudo systemctl reload sshd.service</fixtext><fix id="F-64169r953408_fix" /><check system="C-64261r953407_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the SSH server is configured to only use MACs that employ FIPS 140-3 approved ciphers by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'macs'
/etc/ssh/sshd_config:MACs hmac-sha2-512,hmac-sha2-512-etm@openssh.com,hmac-sha2-256,hmac-sha2-256-etm@openssh.com
If "MACs" does not contain only the hashes "hmac-sha2-512,hmac-sha2-512-etm@openssh.com,hmac-sha2-256,hmac-sha2-256-etm@openssh.com" in exact order, is commented out, is missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260533"><title>SRG-OS-000033-GPOS-00014</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260533r958408_rule" weight="10.0" severity="medium"><version>UBTU-22-255060</version><title>Ubuntu 22.04 LTS SSH server must be configured to use only FIPS-validated key exchange algorithms.</title><description><VulnDiscussion>Without cryptographic integrity protections provided by FIPS-validated cryptographic algorithms, information can be viewed and altered by unauthorized users without detection.
The system will attempt to use the first algorithm presented by the client that matches the server list. Listing the values "strongest to weakest" is a method to ensure the use of the strongest algorithm available to secure the SSH connection.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000068</ident><fixtext fixref="F-64170r953411_fix">Configure the SSH server to use only FIPS-validated key exchange algorithms.
Add or modify the following line in the "/etc/ssh/sshd_config" file:
KexAlgorithms ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256
Restart the SSH server for changes to take effect:
$ sudo systemctl restart sshd.service</fixtext><fix id="F-64170r953411_fix" /><check system="C-64262r953410_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the SSH server is configured to use only FIPS-validated key exchange algorithms by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'kexalgorithms'
/etc/ssh/sshd_config:KexAlgorithms ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256
If "KexAlgorithms" does not contain only the algorithms "ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256" in exact order, is commented out, is missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260534"><title>SRG-OS-000125-GPOS-00065</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260534r958510_rule" weight="10.0" severity="medium"><version>UBTU-22-255065</version><title>Ubuntu 22.04 LTS must use strong authenticators in establishing nonlocal maintenance and diagnostic sessions.</title><description><VulnDiscussion>Nonlocal maintenance and diagnostic activities are those activities conducted by individuals communicating through a network, either an external network (e.g., the internet) or an internal network. Local maintenance and diagnostic activities are those activities carried out by individuals physically present at the information system or information system component and not communicating across a network connection. Typically, strong authentication requires authenticators that are resistant to replay attacks and employ multifactor authentication. Strong authenticators include, for example, PKI where certificates are stored on a token protected by a password, passphrase, or biometric.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000877</ident><fixtext fixref="F-64171r953414_fix">Configure Ubuntu 22.04 LTS to use strong authentication when establishing nonlocal maintenance and diagnostic sessions.
Add or modify the following line to /etc/ssh/sshd_config:
UsePAM yes
Restart the SSH server for changes to take effect:
$ sudo systemctl restart sshd.service</fixtext><fix id="F-64171r953414_fix" /><check system="C-64263r953413_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to use strong authenticators in the establishment of nonlocal maintenance and diagnostic maintenance by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'usepam'
/etc/ssh/sshd_config:UsePAM yes
If "UsePAM" is not set to "yes", is commented out, is missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260535"><title>SRG-OS-000023-GPOS-00006</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260535r958390_rule" weight="10.0" severity="medium"><version>UBTU-22-271010</version><title>Ubuntu 22.04 LTS must enable the graphical user logon banner to display the Standard Mandatory DOD Notice and Consent Banner before granting local access to the system via a graphical user logon.</title><description><VulnDiscussion>Display of a standardized and approved use notification before granting access to Ubuntu 22.04 LTS ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.
System use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.
The banner must be formatted in accordance with applicable DOD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:
"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.
By using this IS (which includes any device attached to this IS), you consent to the following conditions:
-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.
-At any time, the USG may inspect and seize data stored on this IS.
-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.
-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.
-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details."
Use the following verbiage for operating systems that have severe limitations on the number of characters that can be displayed in the banner:
"I've read (literal ampersand) consent to terms in IS user agreem't."</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000048</ident><fixtext fixref="F-64172r953417_fix">Configure Ubuntu 22.04 LTS to display the Standard Mandatory DOD Notice and Consent Banner before granting access to the operating system via a graphical user logon.
Add or modify the following line in the "/etc/gdm3/greeter.dconf-defaults" file:
[org/gnome/login-screen]
banner-message-enable=true
Update GDM with the new configuration by using the following commands:
$ sudo dconf update
$ sudo systemctl restart gdm3</fixtext><fix id="F-64172r953417_fix" /><check system="C-64264r953416_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to display the Standard Mandatory DOD Notice and Consent Banner before granting access to the operating system via a graphical user logon by using the following command:
Note: If no graphical user interface is installed, this requirement is not applicable.
$ grep -i banner-message-enable /etc/gdm3/greeter.dconf-defaults
banner-message-enable=true
If the value for "banner-message-enable" is set to "false", the line is commented out, or no value is returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260536"><title>SRG-OS-000023-GPOS-00006</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260536r958390_rule" weight="10.0" severity="medium"><version>UBTU-22-271015</version><title>Ubuntu 22.04 LTS must display the Standard Mandatory DOD Notice and Consent Banner before granting local access to the system via a graphical user logon.</title><description><VulnDiscussion>Display of a standardized and approved use notification before granting access to Ubuntu 22.04 LTS ensures privacy and security notification verbiage used is consistent with applicable federal laws, Executive Orders, directives, policies, regulations, standards, and guidance.
System use notifications are required only for access via logon interfaces with human users and are not required when such human interfaces do not exist.
The banner must be formatted in accordance with applicable DOD policy. Use the following verbiage for operating systems that can accommodate banners of 1300 characters:
"You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.
By using this IS (which includes any device attached to this IS), you consent to the following conditions:
-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.
-At any time, the USG may inspect and seize data stored on this IS.
-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.
-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.
-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details."
Use the following verbiage for operating systems that have severe limitations on the number of characters that can be displayed in the banner:
"I've read (literal ampersand) consent to terms in IS user agreem't."</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000048</ident><fixtext fixref="F-64173r953420_fix">Edit the "/etc/gdm3/greeter.dconf-defaults" file.
Set the "banner-message-text" line to contain the appropriate banner message text as shown below:
banner-message-text="You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\n\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\n\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\n\n-At any time, the USG may inspect and seize data stored on this IS.\n\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\n\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\n\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details."
Update GDM with the new configuration by using the following commands:
$ sudo dconf update
$ sudo systemctl restart gdm3</fixtext><fix id="F-64173r953420_fix" /><check system="C-64265r953419_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS displays the Standard Mandatory DOD Notice and Consent Banner before granting access to the operating system via a graphical user logon with the command:
Note: If no graphical user interface is installed, this requirement is not applicable.
$ grep -i banner-message-text /etc/gdm3/greeter.dconf-defaults
banner-message-text="You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only.\n\nBy using this IS (which includes any device attached to this IS), you consent to the following conditions:\n\n-The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.\n\n-At any time, the USG may inspect and seize data stored on this IS.\n\n-Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.\n\n-This IS includes security measures (e.g., authentication and access controls) to protect USG interests--not for your personal benefit or privacy.\n\n-Notwithstanding the above, using this IS does not constitute consent to PM, LE or CI investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work product are private and confidential. See User Agreement for details."
If the banner-message-text is missing, commented out, or does not match the Standard Mandatory DOD Notice and Consent Banner exactly, this is a finding.</check-content></check></Rule></Group><Group id="V-260537"><title>SRG-OS-000028-GPOS-00009</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260537r958400_rule" weight="10.0" severity="medium"><version>UBTU-22-271020</version><title>Ubuntu 22.04 LTS must retain a user's session lock until that user reestablishes access using established identification and authentication procedures.</title><description><VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.
The session lock is implemented at the point where session activity can be determined.
Regardless of where the session lock is determined and implemented, once invoked, a session lock of Ubuntu 22.04 LTS must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000056</ident><fixtext fixref="F-64174r953423_fix">Configure Ubuntu 22.04 LTS to allow a user to lock the current graphical user interface session.
Set the "lock-enabled" setting to allow graphical user interface session locks by using the following command:
$ gsettings set org.gnome.desktop.screensaver lock-enabled true</fixtext><fix id="F-64174r953423_fix" /><check system="C-64266r953422_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS has a graphical user interface session lock enabled by using the following command:
Note: If no graphical user interface is installed, this requirement is not applicable.
$ sudo gsettings get org.gnome.desktop.screensaver lock-enabled
true
If "lock-enabled" is not set to "true", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260538"><title>SRG-OS-000029-GPOS-00010</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260538r958402_rule" weight="10.0" severity="medium"><version>UBTU-22-271025</version><title>Ubuntu 22.04 LTS must initiate a graphical session lock after 15 minutes of inactivity.</title><description><VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.
The session lock is implemented at the point where session activity can be determined.
Regardless of where the session lock is determined and implemented, once invoked, a session lock of Ubuntu 22.04 LTS must remain in place until the user reauthenticates. No other activity aside from reauthentication must unlock the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000057</ident><fixtext fixref="F-64175r953426_fix">Configure Ubuntu 22.04 LTS to lock the current graphical user interface session after 15 minutes of inactivity.
Set the following settings to allow graphical user interface session lock to initiate after 15 minutes of inactivity:
$ gsettings set org.gnome.desktop.screensaver lock-enabled true
$ gsettings set org.gnome.desktop.screensaver lock-delay 0
$ gsettings set org.gnome.desktop.session idle-delay 900</fixtext><fix id="F-64175r953426_fix" /><check system="C-64267r953425_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS has a graphical user interface session lock configured to activate after 15 minutes of inactivity by using the following commands:
Note: If no graphical user interface is installed, this requirement is not applicable.
Get the following settings to verify the graphical user interface session is configured to lock the graphical user session after 15 minutes of inactivity:
$ gsettings get org.gnome.desktop.screensaver lock-enabled
true
$ gsettings get org.gnome.desktop.screensaver lock-delay
uint32 0
$ gsettings get org.gnome.desktop.session idle-delay
uint32 900
If "lock-enabled" is not set to "true", is commented out, or is missing, this is a finding.
If "lock-delay" is set to a value greater than "0", or if "idle-delay" is set to a value greater than "900", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260539"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260539r991589_rule" weight="10.0" severity="high"><version>UBTU-22-271030</version><title>Ubuntu 22.04 LTS must disable the x86 Ctrl-Alt-Delete key sequence if a graphical user interface is installed.</title><description><VulnDiscussion>A locally logged-on user who presses Ctrl-Alt-Delete, when at the console, can reboot the system. If accidentally pressed, as could happen in the case of a mixed OS environment, this can create the risk of short-term loss of availability of systems due to unintentional reboot. In the graphical environment, risk of unintentional reboot from the Ctrl-Alt-Delete sequence is reduced because the user will be prompted before any action is taken.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64176r953429_fix">Configure Ubuntu 22.04 LTS to disable the Ctrl-Alt-Delete sequence when using a graphical user interface.
$ gsettings set org.gnome.settings-daemon.plugins.media-keys logout []
Update the dconf settings:
# dconf update</fixtext><fix id="F-64176r953429_fix" /><check system="C-64268r953428_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is not configured to reboot the system when Ctrl-Alt-Delete is pressed when using a graphical user interface by using the following command:
Note: If no graphical user interface is installed, this requirement is not applicable.
$ gsettings get org.gnome.settings-daemon.plugins.media-keys logout
@as []
If the "logout" key is bound to an action, is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260540"><title>SRG-OS-000378-GPOS-00163</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260540r986276_rule" weight="10.0" severity="medium"><version>UBTU-22-291010</version><title>Ubuntu 22.04 LTS must disable automatic mounting of Universal Serial Bus (USB) mass storage driver.</title><description><VulnDiscussion>Without authenticating devices, unidentified or unknown devices may be introduced, thereby facilitating malicious activity.
Peripherals include, but are not limited to, such devices as flash drives, external storage, and printers.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001958</ident><ident system="http://cyber.mil/cci">CCI-003959</ident><fixtext fixref="F-64177r953432_fix">Configure Ubuntu 22.04 LTS to disable using the USB storage kernel module.
Create and/or append a custom file under "/etc/modprobe.d/" to contain the following:
$ sudo su -c "echo install usb-storage /bin/false >> /etc/modprobe.d/stig.conf"
Configure Ubuntu 22.04 LTS to disable the ability to use USB mass storage devices.
$ sudo su -c "echo blacklist usb-storage >> /etc/modprobe.d/stig.conf"</fixtext><fix id="F-64177r953432_fix" /><check system="C-64269r953431_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS disables ability to load the USB storage kernel module by using the following command:
$ grep usb-storage /etc/modprobe.d/* | grep "/bin/false"
/etc/modprobe.d/stig.conf:install usb-storage /bin/false
If the command does not return any output, or the line is commented out, this is a finding.
Verify Ubuntu 22.04 LTS disables the ability to use USB mass storage device.
$ grep usb-storage /etc/modprobe.d/* | grep -i "blacklist"
/etc/modprobe.d/stig.conf:blacklist usb-storage
If the command does not return any output, or the line is commented out, this is a finding.</check-content></check></Rule></Group><Group id="V-260541"><title>SRG-OS-000481-GPOS-00481</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260541r958358_rule" weight="10.0" severity="medium"><version>UBTU-22-291015</version><title>Ubuntu 22.04 LTS must disable all wireless network adapters.</title><description><VulnDiscussion>Without protection of communications with wireless peripherals, confidentiality and integrity may be compromised because unprotected communications can be intercepted and either read, altered, or used to compromise the operating system.
This requirement applies to wireless peripheral technologies (e.g., wireless mice, keyboards, displays, etc.) used with an operating system. Wireless peripherals (e.g., Wi-Fi/Bluetooth/IR Keyboards, Mice, and Pointing Devices and Near Field Communications [NFC]) present a unique challenge by creating an open, unsecured port on a computer. Wireless peripherals must meet DOD requirements for wireless data transmission and be approved for use by the AO. Even though some wireless peripherals, such as mice and pointing devices, do not ordinarily carry information that need to be protected, modification of communications with these wireless peripherals may be used to compromise the operating system. Communication paths outside the physical protection of a controlled boundary are exposed to the possibility of interception and modification.
Protecting the confidentiality and integrity of communications with wireless peripherals can be accomplished by physical means (e.g., employing physical barriers to wireless radio frequencies) or by logical means (e.g., employing cryptographic techniques). If physical means of protection are employed, then logical means (cryptography) do not have to be employed, and vice versa. If the wireless peripheral is only passing telemetry data, encryption of the data may not be required.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002418</ident><fixtext fixref="F-64178r953435_fix">Disable all wireless network interfaces by using the following command:
$ sudo ifdown <wireless_interface_name>
For each interface listed, find their respective module by using the following command:
$ basename $(readlink -f /sys/class/net/<wireless_interface_name>/device/driver)
where <wireless_interface_name> must be substituted by the actual interface name.
Create and/or append a custom file under "/etc/modprobe.d/" by using the following command:
$ sudo su -c "echo install <module_name> /bin/false >> /etc/modprobe.d/stig.conf"
where <module_name> must be substituted by the actual module name.
For each module from the system, execute the following command to remove it:
$ sudo modprobe -r <module_name></fixtext><fix id="F-64178r953435_fix" /><check system="C-64270r953434_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that there are no wireless interfaces configured on the system by using the following command:
Note: If the system does not have any physical wireless network radios, this requirement is not applicable.
$ cat /proc/net/wireless
If any wireless interface names are listed under "Interface" and have not been documented and approved by the information system security officer (ISSO), this is a finding.</check-content></check></Rule></Group><Group id="V-260542"><title>SRG-OS-000109-GPOS-00056</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260542r1015006_rule" weight="10.0" severity="medium"><version>UBTU-22-411010</version><title>Ubuntu 22.04 LTS must prevent direct login into the root account.</title><description><VulnDiscussion>To ensure individual accountability and prevent unauthorized access, organizational users must be individually identified and authenticated.
A group authenticator is a generic account used by multiple individuals. Use of a group authenticator alone does not uniquely identify individual users. Examples of the group authenticator is the Unix OS "root" user account, the Windows "Administrator" account, the "sa" account, or a "helpdesk" account.
For example, the Unix and Windows operating systems offer a "switch user" capability allowing users to authenticate with their individual credentials and, when needed, "switch" to the administrator role. This method provides for unique individual authentication prior to using a group authenticator.
Users (and any processes acting on behalf of users) must be uniquely identified and authenticated for all accesses other than those accesses explicitly identified and documented by the organization, which outlines specific user actions that can be performed on the operating system without identification or authentication.
Requiring individuals to be authenticated with an individual authenticator prior to using a group authenticator allows for traceability of actions, as well as adding an additional level of protection of the actions that can be taken with group account knowledge.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004045</ident><ident system="http://cyber.mil/cci">CCI-000770</ident><fixtext fixref="F-64179r953438_fix">Configure Ubuntu 22.04 LTS to prevent direct logins to the root account by using the following command:
$ sudo passwd -l root</fixtext><fix id="F-64179r953438_fix" /><check system="C-64271r953437_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS prevents direct logins to the root account by using the following command:
$ sudo passwd -S root
root L 08/09/2022 0 99999 7 -1
If the output does not contain "L" in the second field to indicate the account is locked, this is a finding.</check-content></check></Rule></Group><Group id="V-260543"><title>SRG-OS-000104-GPOS-00051</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260543r958482_rule" weight="10.0" severity="medium"><version>UBTU-22-411015</version><title>Ubuntu 22.04 LTS must uniquely identify interactive users.</title><description><VulnDiscussion>To ensure accountability and prevent unauthenticated access, organizational users must be identified and authenticated to prevent potential misuse and compromise of the system.
Organizational users include organizational employees or individuals the organization deems to have equivalent status of employees (e.g., contractors). Organizational users (and processes acting on behalf of users) must be uniquely identified and authenticated to all accesses, except for the following:
1. Accesses explicitly identified and documented by the organization. Organizations document specific user actions that can be performed on the information system without identification or authentication; and
2. Accesses that occur through authorized use of group authenticators without individual authentication. Organizations may require unique identification of individuals in group accounts (e.g., shared privilege accounts) or for detailed accountability of individual activity.
Satisfies: SRG-OS-000104-GPOS-00051, SRG-OS-000121-GPOS-00062</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000764</ident><ident system="http://cyber.mil/cci">CCI-000804</ident><fixtext fixref="F-64180r953441_fix">Edit the file "/etc/passwd" and provide each interactive user account that has a duplicate UID with a unique UID.</fixtext><fix id="F-64180r953441_fix" /><check system="C-64272r953440_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS contains no duplicate User IDs (UIDs) for interactive users by using the following command:
$ awk -F ":" 'list[$3]++{print $1, $3}' /etc/passwd
If output is produced and the accounts listed are interactive user accounts, this is a finding.</check-content></check></Rule></Group><Group id="V-260545"><title>SRG-OS-000075-GPOS-00043</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260545r1015007_rule" weight="10.0" severity="medium"><version>UBTU-22-411025</version><title>Ubuntu 22.04 LTS must enforce 24 hours/one day as the minimum password lifetime. Passwords for new users must have a 24 hours/one day minimum password lifetime restriction.</title><description><VulnDiscussion>Enforcing a minimum password lifetime helps to prevent repeated password changes to defeat the password reuse or history enforcement requirement. If users are allowed to immediately and continually change their password, then the password could be repeatedly changed in a short period of time to defeat the organization's policy regarding password reuse.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004066</ident><ident system="http://cyber.mil/cci">CCI-000198</ident><fixtext fixref="F-64182r986279_fix">Configure Ubuntu 22.04 LTS to enforce a 24 hours/one day minimum password lifetime.
Add or modify the following line in the "/etc/login.defs" file:
PASS_MIN_DAYS 1</fixtext><fix id="F-64182r986279_fix" /><check system="C-64274r986278_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS enforces a 24 hours/one day minimum password lifetime for new user accounts by using the following command:
$ grep -i pass_min_days /etc/login.defs
PASS_MIN_DAYS 1
If "PASS_MIN_DAYS" is less than "1", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260546"><title>SRG-OS-000076-GPOS-00044</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260546r1038967_rule" weight="10.0" severity="medium"><version>UBTU-22-411030</version><title>Ubuntu 22.04 LTS must enforce a 60-day maximum password lifetime restriction. Passwords for new users must have a 60-day maximum password lifetime restriction.</title><description><VulnDiscussion>Any password, no matter how complex, can eventually be cracked. Therefore, passwords need to be changed periodically. If the operating system does not limit the lifetime of passwords and force users to change their passwords, there is the risk that the operating system passwords could be compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004066</ident><ident system="http://cyber.mil/cci">CCI-000199</ident><fixtext fixref="F-64183r953450_fix">Configure Ubuntu 22.04 LTS to enforce a 60-day maximum password lifetime.
Add or modify the following line in the "/etc/login.defs" file:
PASS_MAX_DAYS 60</fixtext><fix id="F-64183r953450_fix" /><check system="C-64275r953449_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS enforces a 60-day maximum password lifetime for new user accounts by using the following command:
$ grep -i pass_max_days /etc/login.defs
PASS_MAX_DAYS 60
If "PASS_MAX_DAYS" is less than "60", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260547"><title>SRG-OS-000118-GPOS-00060</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260547r1015009_rule" weight="10.0" severity="medium"><version>UBTU-22-411035</version><title>Ubuntu 22.04 LTS must disable account identifiers (individuals, groups, roles, and devices) after 35 days of inactivity.</title><description><VulnDiscussion>Inactive identifiers pose a risk to systems and applications because attackers may exploit an inactive identifier and potentially obtain undetected access to the system. Owners of inactive accounts will not notice if unauthorized access to their user account has been obtained.
Operating systems need to track periods of inactivity and disable application identifiers after 35 days of inactivity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-003627</ident><ident system="http://cyber.mil/cci">CCI-003628</ident><ident system="http://cyber.mil/cci">CCI-000795</ident><fixtext fixref="F-64184r953453_fix">Configure Ubuntu 22.04 LTS to disable account identifiers after 35 days of inactivity after the password expiration.
Run the following command to change the configuration for adduser:
$ sudo useradd -D -f 35
Note: DOD recommendation is 35 days, but a lower value is acceptable. The value "0" will disable the account immediately after the password expires.</fixtext><fix id="F-64184r953453_fix" /><check system="C-64276r953452_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the account identifiers (individuals, groups, roles, and devices) are disabled after 35 days of inactivity by using the following command:
Check the account inactivity value by performing the following command:
$ grep INACTIVE /etc/default/useradd
INACTIVE=35
If "INACTIVE" is set to "-1" or is not set to "35", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260548"><title>SRG-OS-000002-GPOS-00002</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260548r958364_rule" weight="10.0" severity="medium"><version>UBTU-22-411040</version><title>Ubuntu 22.04 LTS must automatically expire temporary accounts within 72 hours.</title><description><VulnDiscussion>Temporary accounts are privileged or nonprivileged accounts established during pressing circumstances, such as new software or hardware configuration or an incident response, where the need for prompt account activation requires bypassing normal account authorization procedures. If any inactive temporary accounts are left enabled on the system and are not either manually removed or automatically expired within 72 hours, the security posture of the system will be degraded and exposed to exploitation by unauthorized users or insider threat actors.
Temporary accounts are different from emergency accounts. Emergency accounts, also known as "last resort" or "break glass" accounts, are local logon accounts enabled on the system for emergency use by authorized system administrators to manage a system when standard logon methods are failing or not available. Emergency accounts are not subject to manual removal or scheduled expiration requirements.
The automatic expiration of temporary accounts may be extended as needed by the circumstances, but it must not be extended indefinitely. A documented permanent account should be established for privileged users who need long-term maintenance accounts.
Satisfies: SRG-OS-000002-GPOS-00002, SRG-OS-000123-GPOS-00064</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000016</ident><ident system="http://cyber.mil/cci">CCI-001682</ident><fixtext fixref="F-64185r953456_fix">Configure Ubuntu 22.04 LTS to expire temporary accounts after 72 hours by using the following command:
$ sudo chage -E $(date -d +3days +%Y-%m-%d) <temporary_account_name></fixtext><fix id="F-64185r953456_fix" /><check system="C-64277r953455_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify temporary accounts have been provisioned with an expiration date of 72 hours by using the following command:
$ sudo chage -l <temporary_account_name> | grep -E '(Password|Account) expires'
Password expires : Apr 1, 2024
Account expires : Apr 1, 2024
Verify each of these accounts has an expiration date set within 72 hours.
If any temporary accounts have no expiration date set or do not expire within 72 hours, this is a finding.</check-content></check></Rule></Group><Group id="V-260549"><title>SRG-OS-000021-GPOS-00005</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260549r958388_rule" weight="10.0" severity="low"><version>UBTU-22-411045</version><title>Ubuntu 22.04 LTS must automatically lock an account until the locked account is released by an administrator when three unsuccessful logon attempts have been made.</title><description><VulnDiscussion>By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-forcing, is reduced. Limits are imposed by locking the account.
Satisfies: SRG-OS-000021-GPOS-00005, SRG-OS-000329-GPOS-00128</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000044</ident><ident system="http://cyber.mil/cci">CCI-002238</ident><fixtext fixref="F-64186r953459_fix">Configure Ubuntu 22.04 LTS to utilize the "pam_faillock" module.
Add or modify the following lines in the "/etc/pam.d/common-auth" file, below the "auth" definition for "pam_unix.so":
auth [default=die] pam_faillock.so authfail
auth sufficient pam_faillock.so authsucc
Configure the "pam_faillock" module to use the following options.
Add or modify the following lines in the "/etc/security/faillock.conf" file:
audit
silent
deny = 3
fail_interval = 900
unlock_time = 0</fixtext><fix id="F-64186r953459_fix" /><check system="C-64278r953458_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Ubuntu 22.04 LTS utilizes the "pam_faillock" module by using the following command:
$ grep faillock /etc/pam.d/common-auth
auth [default=die] pam_faillock.so authfail
auth sufficient pam_faillock.so authsucc
If the "pam_faillock.so" module is not present in the "/etc/pam.d/common-auth" file, this is a finding.
Verify the "pam_faillock" module is configured to use the following options:
$ sudo grep -Ew 'silent|audit|deny|fail_interval|unlock_time' /etc/security/faillock.conf
audit
silent
deny = 3
fail_interval = 900
unlock_time = 0
If "audit" is commented out, or is missing, this is a finding.
If "silent" is commented out, or is missing, this is a finding.
If "deny" is set to a value greater than "3", is commented out, or is missing, this is a finding.
If "fail_interval" is set to a value greater than "900", is commented out, or is missing, this is a finding.
If "unlock_time" is not set to "0", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260550"><title>SRG-OS-000480-GPOS-00226</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260550r991588_rule" weight="10.0" severity="low"><version>UBTU-22-412010</version><title>Ubuntu 22.04 LTS must enforce a delay of at least four seconds between logon prompts following a failed logon attempt.</title><description><VulnDiscussion>Limiting the number of logon attempts over a certain time interval reduces the chances that an unauthorized user may gain access to an account.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64187r953462_fix">Configure Ubuntu 22.04 LTS to enforce a delay of at least four seconds between logon prompts following a failed logon attempt.
Add or modify the following line in the "/etc/pam.d/common-auth" file:
auth required pam_faildelay.so delay=4000000</fixtext><fix id="F-64187r953462_fix" /><check system="C-64279r953461_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS enforces a delay of at least four seconds between logon prompts following a failed logon attempt by using the following command:
$ grep pam_faildelay /etc/pam.d/common-auth
auth required pam_faildelay.so delay=4000000
If "delay" is not set to "4000000" or greater, the line is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260552"><title>SRG-OS-000027-GPOS-00008</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260552r958398_rule" weight="10.0" severity="low"><version>UBTU-22-412020</version><title>Ubuntu 22.04 LTS must limit the number of concurrent sessions to ten for all accounts and/or account types.</title><description><VulnDiscussion>Ubuntu 22.04 LTS management includes the ability to control the number of users and user sessions that utilize an operating system. Limiting the number of allowed users and sessions per user is helpful in reducing the risks related to denial-of-service (DoS) attacks.
This requirement addresses concurrent sessions for information system accounts and does not address concurrent sessions by single users via multiple system accounts. The maximum number of concurrent sessions should be defined based upon mission needs and the operational environment for each system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000054</ident><fixtext fixref="F-64189r953468_fix">Configure Ubuntu 22.04 LTS to limit the number of concurrent sessions to 10 for all accounts and/or account types.
Add or modify the following line at the top of the "/etc/security/limits.conf" file:
* hard maxlogins 10</fixtext><fix id="F-64189r953468_fix" /><check system="C-64281r953467_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS limits the number of concurrent sessions to 10 for all accounts and/or account types by using the following command:
$ sudo grep -r -s '^[^#].*maxlogins' /etc/security/limits.conf /etc/security/limits.d/*.conf
/etc/security/limits.conf:* hard maxlogins 10
If "maxlogins" does not have a value of "10" or less, is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260553"><title>SRG-OS-000030-GPOS-00011</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260553r1015010_rule" weight="10.0" severity="medium"><version>UBTU-22-412025</version><title>Ubuntu 22.04 LTS must allow users to directly initiate a session lock for all connection types.</title><description><VulnDiscussion>A session lock is a temporary action taken when a user stops work and moves away from the immediate physical vicinity of the information system but does not want to log out because of the temporary nature of the absence.
The session lock is implemented at the point where session activity can be determined. Rather than be forced to wait for a period of time to expire before the user session can be locked, Ubuntu 22.04 LTS need to provide users with the ability to manually invoke a session lock so users may secure their session if they need to temporarily vacate the immediate physical vicinity.
Satisfies: SRG-OS-000030-GPOS-00011, SRG-OS-000031-GPOS-00012</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000057</ident><ident system="http://cyber.mil/cci">CCI-000060</ident><ident system="http://cyber.mil/cci">CCI-000058</ident><fixtext fixref="F-64190r953471_fix">Install the "vlock" package by using the following command:
$ sudo apt-get install vlock</fixtext><fix id="F-64190r953471_fix" /><check system="C-64282r953470_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS has the "vlock" package installed by using the following command:
$ dpkg -l | grep vlock
ii vlock 2.2.2-10 amd64 Virtual Console locking program
If "vlock" is not installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260554"><title>SRG-OS-000279-GPOS-00109</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260554r958636_rule" weight="10.0" severity="medium"><version>UBTU-22-412030</version><title>Ubuntu 22.04 LTS must automatically exit interactive command shell user sessions after 15 minutes of inactivity.</title><description><VulnDiscussion>Terminating an idle interactive command shell user session within a short time period reduces the window of opportunity for unauthorized personnel to take control of it when left unattended in a virtual terminal or physical console.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002361</ident><fixtext fixref="F-64191r953474_fix">Configure Ubuntu 22.04 LTS to exit interactive command shell user sessions after 15 minutes of inactivity.
Create and/or append a custom file under "/etc/profile.d/" by using the following command:
$ sudo su -c "echo TMOUT=900 >> /etc/profile.d/99-terminal_tmout.sh"
This will set a timeout value of 15 minutes for all future sessions.
To set the timeout for the current sessions, execute the following command over the terminal session:
$ export TMOUT=900</fixtext><fix id="F-64191r953474_fix" /><check system="C-64283r953473_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to automatically exit interactive command shell user sessions after 15 minutes of inactivity or less by using the following command:
$ sudo grep -E "\bTMOUT=[0-9]+" /etc/bash.bashrc /etc/profile.d/*
/etc/profile.d/99-terminal_tmout.sh:TMOUT=900
If "TMOUT" is not set to "900" or less, is set to "0", is commented out, or missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260555"><title>SRG-OS-000480-GPOS-00228</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260555r991590_rule" weight="10.0" severity="medium"><version>UBTU-22-412035</version><title>Ubuntu 22.04 LTS default filesystem permissions must be defined in such a way that all authenticated users can read and modify only their own files.</title><description><VulnDiscussion>Setting the most restrictive default permissions ensures newly created accounts do not have unnecessary access.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64192r953477_fix">Configure Ubuntu 22.04 LTS to define the default permissions for all authenticated users in such a way that the user can read and modify only their own files.
Add or modify the following line in the "/etc/login.defs" file:
UMASK 077</fixtext><fix id="F-64192r953477_fix" /><check system="C-64284r953476_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS defines default permissions for all authenticated users in such a way that the user can read and modify only their own files by using the following command:
$ grep -i '^\s*umask' /etc/login.defs
UMASK 077
If the "UMASK" variable is set to "000", this is a finding with the severity raised to a CAT I.
If "UMASK" is not set to "077", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260556"><title>SRG-OS-000312-GPOS-00124</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260556r958702_rule" weight="10.0" severity="medium"><version>UBTU-22-431010</version><title>Ubuntu 22.04 LTS must have the "apparmor" package installed.</title><description><VulnDiscussion>Control of program execution is a mechanism used to prevent execution of unauthorized programs. Some operating systems may provide a capability that runs counter to the mission or provides users with functionality that exceeds mission requirements. This includes functions and services installed at the operating system level.
Some of the programs, installed by default, may be harmful or may not be necessary to support essential organizational operations (e.g., key missions, functions). Removal of executable programs is not always possible; therefore, establishing a method of preventing program execution is critical to maintaining a secure system baseline.
Methods for complying with this requirement include restricting execution of programs in certain environments, while preventing execution in other environments; or limiting execution of certain program functionality based on organization-defined criteria (e.g., privileges, subnets, sandboxed environments, or roles).
Satisfies: SRG-OS-000312-GPOS-00124, SRG-OS-000368-GPOS-00154, SRG-OS-000370-GPOS-00155</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001764</ident><ident system="http://cyber.mil/cci">CCI-001774</ident><ident system="http://cyber.mil/cci">CCI-002165</ident><fixtext fixref="F-64193r953480_fix">Install the "appArmor" package by using the following command:
$ sudo apt-get install apparmor</fixtext><fix id="F-64193r953480_fix" /><check system="C-64285r953479_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS has the "apparmor" package installed by using the following command:
$ dpkg -l | grep apparmor
ii apparmor 3.0.4-2ubuntu2.3 amd64 user-space parser utility for AppArmor
If the "apparmor" package is not installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260557"><title>SRG-OS-000368-GPOS-00154</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260557r958804_rule" weight="10.0" severity="medium"><version>UBTU-22-431015</version><title>Ubuntu 22.04 LTS must be configured to use AppArmor.</title><description><VulnDiscussion>Control of program execution is a mechanism used to prevent execution of unauthorized programs. Some operating systems may provide a capability that runs counter to the mission or provides users with functionality that exceeds mission requirements. This includes functions and services installed at the operating system level.
Some of the programs, installed by default, may be harmful or may not be necessary to support essential organizational operations (e.g., key missions, functions). Removal of executable programs is not always possible; therefore, establishing a method of preventing program execution is critical to maintaining a secure system baseline.
Methods for complying with this requirement include restricting execution of programs in certain environments, while preventing execution in other environments; or limiting execution of certain program functionality based on organization-defined criteria (e.g., privileges, subnets, sandboxed environments, or roles).
Satisfies: SRG-OS-000368-GPOS-00154, SRG-OS-000370-GPOS-00155, SRG-OS-000324-GPOS-00125</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001764</ident><ident system="http://cyber.mil/cci">CCI-001774</ident><ident system="http://cyber.mil/cci">CCI-002235</ident><fixtext fixref="F-64194r953483_fix">Enable and start "apparmor.service" by using the following command:
$ sudo systemctl enable apparmor.service --now
Note: AppArmor must have properly configured profiles for applications and home directories. All configurations will be based on the actual system setup and organization and normally are on a per role basis. See the AppArmor documentation for more information on configuring profiles.</fixtext><fix id="F-64194r953483_fix" /><check system="C-64286r953482_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS AppArmor is active by using the following commands:
$ systemctl is-enabled apparmor.service
enabled
$ systemctl is-active apparmor.service
active
If "apparmor.service" is not enabled and active, this is a finding.
Check if AppArmor profiles are loaded and enforced by using the following command:
$ sudo apparmor_status | grep -i profile
32 profiles are loaded.
32 profiles are in enforce mode.
0 profiles are in complain mode.
0 profiles are in kill mode.
0 profiles are in unconfined mode.
2 processes have profiles defined.
0 processes are unconfined but have a profile defined.
If no profiles are loaded and enforced, this is a finding.</check-content></check></Rule></Group><Group id="V-260558"><title>SRG-OS-000373-GPOS-00156</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260558r1050789_rule" weight="10.0" severity="medium"><version>UBTU-22-432010</version><title>Ubuntu 22.04 LTS must require users to reauthenticate for privilege escalation or when changing roles.</title><description><VulnDiscussion>Without reauthentication, users may access resources or perform tasks for which they do not have authorization.
When operating systems provide the capability to escalate a functional capability, it is critical the user reauthenticate.
Satisfies: SRG-OS-000373-GPOS-00156, SRG-OS-000373-GPOS-00157</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004895</ident><ident system="http://cyber.mil/cci">CCI-002038</ident><fixtext fixref="F-64195r953486_fix">Remove any occurrence of "NOPASSWD" or "!authenticate" found in "/etc/sudoers" file or files in the "/etc/sudoers.d" directory.</fixtext><fix id="F-64195r953486_fix" /><check system="C-64287r953485_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the "/etc/sudoers" file has no occurrences of "NOPASSWD" or "!authenticate" by using the following command:
$ sudo grep -Ei '(nopasswd|!authenticate)' /etc/sudoers /etc/sudoers.d/*
If any occurrences of "NOPASSWD" or "!authenticate" return from the command, this is a finding.</check-content></check></Rule></Group><Group id="V-260559"><title>SRG-OS-000134-GPOS-00068</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260559r958518_rule" weight="10.0" severity="high"><version>UBTU-22-432015</version><title>Ubuntu 22.04 LTS must ensure only users who need access to security functions are part of sudo group.</title><description><VulnDiscussion>An isolation boundary provides access control and protects the integrity of the hardware, software, and firmware that perform security functions.
Security functions are the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Operating systems implement code separation (i.e., separation of security functions from nonsecurity functions) in a number of ways, including through the provision of security kernels via processor rings or processor modes. For nonkernel code, security function isolation is often achieved through file system protections that serve to protect the code on disk and address space protections that protect executing code.
Developers and implementers can increase the assurance in security functions by employing well-defined security policy models; structured, disciplined, and rigorous hardware and software development techniques; and sound system/security engineering principles. Implementation may include isolation of memory space and libraries.
Ubuntu 22.04 LTS restricts access to security functions through the use of access control mechanisms and by implementing least privilege capabilities.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001084</ident><fixtext fixref="F-64196r953489_fix">Configure the sudo group with only members requiring access to security functions.
To remove a user from the sudo group, run:
$ sudo gpasswd -d <username> sudo</fixtext><fix id="F-64196r953489_fix" /><check system="C-64288r953488_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the sudo group has only members who require access to security functions by using the following command:
$ grep sudo /etc/group
sudo:x:27:<username>
If the sudo group contains users not needing access to security functions, this is a finding.</check-content></check></Rule></Group><Group id="V-260560"><title>SRG-OS-000069-GPOS-00037</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260560r1015012_rule" weight="10.0" severity="medium"><version>UBTU-22-611010</version><title>Ubuntu 22.04 LTS must enforce password complexity by requiring at least one uppercase character be used.</title><description><VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.
Password complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004066</ident><ident system="http://cyber.mil/cci">CCI-000192</ident><fixtext fixref="F-64197r953492_fix">Configure Ubuntu 22.04 LTS to enforce password complexity by requiring that at least one uppercase character be used.
Add or modify the following line in the "/etc/security/pwquality.conf" file:
ucredit = -1</fixtext><fix id="F-64197r953492_fix" /><check system="C-64289r953491_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS enforces password complexity by requiring at least one uppercase character be used by using the following command:
$ grep -i ucredit /etc/security/pwquality.conf
ucredit = -1
If "ucredit" is greater than "-1", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260561"><title>SRG-OS-000070-GPOS-00038</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260561r1015013_rule" weight="10.0" severity="medium"><version>UBTU-22-611015</version><title>Ubuntu 22.04 LTS must enforce password complexity by requiring at least one lowercase character be used.</title><description><VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.
Password complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004066</ident><ident system="http://cyber.mil/cci">CCI-000193</ident><fixtext fixref="F-64198r953495_fix">Configure Ubuntu 22.04 LTS to enforce password complexity by requiring that at least one lowercase character be used.
Add or modify the following line in the "/etc/security/pwquality.conf" file:
lcredit = -1</fixtext><fix id="F-64198r953495_fix" /><check system="C-64290r953494_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS enforces password complexity by requiring that at least one lowercase character be used by using the following command:
$ grep -i lcredit /etc/security/pwquality.conf
lcredit = -1
If "lcredit" is greater than "-1", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260562"><title>SRG-OS-000071-GPOS-00039</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260562r1015014_rule" weight="10.0" severity="medium"><version>UBTU-22-611020</version><title>Ubuntu 22.04 LTS must enforce password complexity by requiring that at least one numeric character be used.</title><description><VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.
Password complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004066</ident><ident system="http://cyber.mil/cci">CCI-000194</ident><fixtext fixref="F-64199r953498_fix">Configure Ubuntu 22.04 LTS to enforce password complexity by requiring that at least one numeric character be used.
Add or modify the following line in the "/etc/security/pwquality.conf" file:
dcredit = -1</fixtext><fix id="F-64199r953498_fix" /><check system="C-64291r953497_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS enforces password complexity by requiring that at least one numeric character be used by using the following command:
$ grep -i dcredit /etc/security/pwquality.conf
dcredit = -1
If "dcredit" is greater than "-1", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260563"><title>SRG-OS-000266-GPOS-00101</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260563r1015015_rule" weight="10.0" severity="medium"><version>UBTU-22-611025</version><title>Ubuntu 22.04 LTS must enforce password complexity by requiring that at least one special character be used.</title><description><VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity or strength is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.
Password complexity is one factor in determining how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.
Special characters are those characters that are not alphanumeric. Examples include: ~ ! @ # $ % ^ *.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004066</ident><ident system="http://cyber.mil/cci">CCI-001619</ident><fixtext fixref="F-64200r953501_fix">Configure Ubuntu 22.04 LTS to enforce password complexity by requiring that at least one special character be used.
Add or modify the following line in the "/etc/security/pwquality.conf" file:
ocredit = -1</fixtext><fix id="F-64200r953501_fix" /><check system="C-64292r953500_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS enforces password complexity by requiring that at least one special character be used by using the following command:
$ grep -i ocredit /etc/security/pwquality.conf
ocredit = -1
If "ocredit" is greater than "-1", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260564"><title>SRG-OS-000480-GPOS-00225</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260564r991587_rule" weight="10.0" severity="medium"><version>UBTU-22-611030</version><title>Ubuntu 22.04 LTS must prevent the use of dictionary words for passwords.</title><description><VulnDiscussion>If Ubuntu 22.04 LTS allows the user to select passwords based on dictionary words, then this increases the chances of password compromise by increasing the opportunity for successful guesses and brute-force attacks.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64201r953504_fix">Configure Ubuntu 22.04 LTS to prevent the use of dictionary words for passwords.
Add or modify the following line in the "/etc/security/pwquality.conf" file:
dictcheck = 1</fixtext><fix id="F-64201r953504_fix" /><check system="C-64293r953503_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS prevents the use of dictionary words for passwords by using the following command:
$ grep -i dictcheck /etc/security/pwquality.conf
dictcheck = 1
If "dictcheck" is not set to "1", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260565"><title>SRG-OS-000078-GPOS-00046</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260565r1015016_rule" weight="10.0" severity="medium"><version>UBTU-22-611035</version><title>Ubuntu 22.04 LTS must enforce a minimum 15-character password length.</title><description><VulnDiscussion>The shorter the password, the lower the number of possible combinations that need to be tested before the password is compromised.
Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. Password length is one factor of several that helps to determine strength and how long it takes to crack a password. Use of more characters in a password helps to exponentially increase the time and/or resources required to compromise the password.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004066</ident><ident system="http://cyber.mil/cci">CCI-000205</ident><fixtext fixref="F-64202r953507_fix">Configure Ubuntu 22.04 LTS to enforce a minimum 15-character password length.
Add or modify the following line in the "/etc/security/pwquality.conf" file:
minlen = 15</fixtext><fix id="F-64202r953507_fix" /><check system="C-64294r953506_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the pwquality configuration file enforces a minimum 15-character password length by using the following command:
$ grep -i minlen /etc/security/pwquality.conf
minlen = 15
If "minlen" is not "15" or higher, is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260566"><title>SRG-OS-000072-GPOS-00040</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260566r1015017_rule" weight="10.0" severity="medium"><version>UBTU-22-611040</version><title>Ubuntu 22.04 LTS must require the change of at least eight characters when passwords are changed.</title><description><VulnDiscussion>If the operating system allows the user to consecutively reuse extensive portions of passwords, this increases the chances of password compromise by increasing the window of opportunity for attempts at guessing and brute-force attacks.
The number of changed characters refers to the number of changes required with respect to the total number of positions in the current password. In other words, characters may be the same within the two passwords; however, the positions of the like characters must be different.
If the password length is an odd number then number of changed characters must be rounded up. For example, a password length of 15 characters must require the change of at least eight characters.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004066</ident><ident system="http://cyber.mil/cci">CCI-000195</ident><fixtext fixref="F-64203r953510_fix">Configure Ubuntu 22.04 LTS to require the change of at least eight characters when passwords are changed.
Add or modify the following line in the "/etc/security/pwquality.conf" file:
difok = 8</fixtext><fix id="F-64203r953510_fix" /><check system="C-64295r953509_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS requires the change of at least eight characters when passwords are changed by using the following command:
$ grep -i difok /etc/security/pwquality.conf
difok = 8
If "difok" is less than "8", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260567"><title>SRG-OS-000480-GPOS-00225</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260567r991587_rule" weight="10.0" severity="medium"><version>UBTU-22-611045</version><title>Ubuntu 22.04 LTS must be configured so that when passwords are changed or new passwords are established, pwquality must be used.</title><description><VulnDiscussion>Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. "pwquality" enforces complex password construction configuration and has the ability to limit brute-force attacks on the system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64204r953513_fix">Configure Ubuntu 22.04 LTS to enforce password complexity rules.
Add or modify the following line in the "/etc/security/pwquality.conf" file:
enforcing = 1
Add or modify the following line in the "/etc/pam.d/common-password" file:
password requisite pam_pwquality.so retry=3
Note: The value of "retry" should be between "1" and "3".</fixtext><fix id="F-64204r953513_fix" /><check system="C-64296r953512_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS enforces password complexity rules by using the following command:
$ grep -i enforcing /etc/security/pwquality.conf
enforcing = 1
If "enforcing" is not "1", is commented out, or is missing, this is a finding.
Check for the use of "pwquality" by using the following command:
$ cat /etc/pam.d/common-password | grep requisite | grep pam_pwquality
password requisite pam_pwquality.so retry=3
If "retry" is set to "0" or is greater than "3", or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260569"><title>SRG-OS-000073-GPOS-00041</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260569r1044767_rule" weight="10.0" severity="medium"><version>UBTU-22-611055</version><title>Ubuntu 22.04 LTS must store only encrypted representations of passwords.</title><description><VulnDiscussion>Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks. If the information system or application allows the user to consecutively reuse their password when that password has exceeded its defined lifetime, the end result is a password that is not changed as per policy requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004062</ident><ident system="http://cyber.mil/cci">CCI-000196</ident><fixtext fixref="F-64206r1044766_fix">Configure Ubuntu 22.04 LTS to store encrypted representations of passwords.
Add or modify the following line in the "/etc/pam.d/common-password" file:
password [success=1 default=ignore] pam_unix.so obscure sha512 shadow remember=5 rounds=100000</fixtext><fix id="F-64206r1044766_fix" /><check system="C-64298r1044765_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the Ubuntu operating stores only encrypted representations of passwords with the following command:
$ grep pam_unix.so /etc/pam.d/common-password
password [success=1 default=ignore] pam_unix.so obscure sha512 shadow remember=5 rounds=100000
If "sha512" is missing from the "pam_unix.so" line, this is a finding.</check-content></check></Rule></Group><Group id="V-260570"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260570r991589_rule" weight="10.0" severity="high"><version>UBTU-22-611060</version><title>Ubuntu 22.04 LTS must not allow accounts configured with blank or null passwords.</title><description><VulnDiscussion>If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords must never be used in operational environments.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64207r953522_fix">Remove any instances of the "nullok" option in "/etc/pam.d/common-password" to prevent logons with empty passwords.</fixtext><fix id="F-64207r953522_fix" /><check system="C-64299r953521_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>To verify that null passwords cannot be used, run the following command:
$ grep nullok /etc/pam.d/common-password
If this produces any output, this is a finding.</check-content></check></Rule></Group><Group id="V-260571"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260571r991589_rule" weight="10.0" severity="high"><version>UBTU-22-611065</version><title>Ubuntu 22.04 LTS must not have accounts configured with blank or null passwords.</title><description><VulnDiscussion>If an account has an empty password, anyone could log on and run commands with the privileges of that account. Accounts with empty passwords must never be used in operational environments.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64208r953525_fix">Configure all accounts on the system to have a password or lock the account by using the following commands:
Set the account password:
$ sudo passwd <username>
Or lock the account:
$ sudo passwd -l <username></fixtext><fix id="F-64208r953525_fix" /><check system="C-64300r953524_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify all accounts on the system to have a password by using the following command:
$ sudo awk -F: '!$2 {print $1}' /etc/shadow
If the command returns any results, this is a finding.</check-content></check></Rule></Group><Group id="V-260572"><title>SRG-OS-000120-GPOS-00061</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260572r971535_rule" weight="10.0" severity="medium"><version>UBTU-22-611070</version><title>Ubuntu 22.04 LTS must encrypt all stored passwords with a FIPS 140-3-approved cryptographic hashing algorithm.</title><description><VulnDiscussion>Passwords need to be protected at all times, and encryption is the standard method for protecting passwords. If passwords are not encrypted, they can be plainly read (i.e., clear text) and easily compromised.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000803</ident><fixtext fixref="F-64209r953528_fix">Configure Ubuntu 22.04 LTS to encrypt all stored passwords.
Add or modify the following line in the "/etc/login.defs" file:
ENCRYPT_METHOD SHA512</fixtext><fix id="F-64209r953528_fix" /><check system="C-64301r953527_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the shadow password suite configuration is set to encrypt passwords with a FIPS 140-3 approved cryptographic hashing algorithm by using the following command:
$ grep -i '^\s*encrypt_method' /etc/login.defs
ENCRYPT_METHOD SHA512
If "ENCRYPT_METHOD" does not equal SHA512 or greater, is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260573"><title>SRG-OS-000375-GPOS-00160</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260573r1015019_rule" weight="10.0" severity="medium"><version>UBTU-22-612010</version><title>Ubuntu 22.04 LTS must implement multifactor authentication for remote access to privileged accounts in such a way that one of the factors is provided by a device separate from the system gaining access.</title><description><VulnDiscussion>Using an authentication device, such as a CAC or token separate from the information system, ensures that even if the information system is compromised, that compromise will not affect credentials stored on the authentication device.
Multifactor solutions that require devices separate from information systems gaining access include, for example, hardware tokens providing time-based or challenge-response authenticators and smart cards such as the U.S. Government personal identity verification card and the DOD common access card.
A privileged account is defined as an information system account with authorizations of a privileged user.
Remote access is access to DOD nonpublic information systems by an authorized user (or an information system) communicating through an external, nonorganization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.
This requirement only applies to components where this is specific to the function of the device or has the concept of an organizational user (e.g., VPN, proxy capability). This does not apply to authentication for the purpose of configuring the device itself (management).
Satisfies: SRG-OS-000375-GPOS-00160, SRG-OS-000105-GPOS-00052, SRG-OS-000106-GPOS-00053, SRG-OS-000107-GPOS-00054, SRG-OS-000108-GPOS-00055</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000765</ident><ident system="http://cyber.mil/cci">CCI-000766</ident><ident system="http://cyber.mil/cci">CCI-004046</ident><ident system="http://cyber.mil/cci">CCI-004047</ident><ident system="http://cyber.mil/cci">CCI-000767</ident><ident system="http://cyber.mil/cci">CCI-000768</ident><ident system="http://cyber.mil/cci">CCI-001948</ident><fixtext fixref="F-64210r953531_fix">Install the "libpam-pkcs11" package by using the following command:
$ sudo apt-get install libpam-pkcs11</fixtext><fix id="F-64210r953531_fix" /><check system="C-64302r953530_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS has the packages required for multifactor authentication installed by using the following command:
$ dpkg -l | grep libpam-pkcs11
ii libpam-pkcs11 0.6.11-4build2 amd64 Fully featured PAM module for using PKCS#11 smart cards
If the "libpam-pkcs11" package is not installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260574"><title>SRG-OS-000376-GPOS-00161</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260574r958816_rule" weight="10.0" severity="medium"><version>UBTU-22-612015</version><title>Ubuntu 22.04 LTS must accept personal identity verification (PIV) credentials.</title><description><VulnDiscussion>The use of PIV credentials facilitates standardization and reduces the risk of unauthorized access.
DOD has mandated the use of the common access card (CAC) to support identity management and personal authentication for systems covered under Homeland Security Presidential Directive (HSPD) 12, as well as making the CAC a primary component of layered protection for national security systems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001953</ident><fixtext fixref="F-64211r953534_fix">Install the "opensc-pkcs11" package by using the following command:
$ sudo apt-get install opensc-pkcs11</fixtext><fix id="F-64211r953534_fix" /><check system="C-64303r953533_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the "opensc-pcks11" package is installed on the system by using the following command:
$ dpkg -l | grep opensc-pkcs11
ii opensc-pkcs11:amd64 0.22.0-1Ubuntu2 amd64 Smart card utilities with support for PKCS#15 compatible cards
If the "opensc-pcks11" package is not installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260575"><title>SRG-OS-000105-GPOS-00052</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260575r1044770_rule" weight="10.0" severity="medium"><version>UBTU-22-612020</version><title>Ubuntu 22.04 LTS must implement smart card logins for multifactor authentication for local and network access to privileged and nonprivileged accounts.</title><description><VulnDiscussion>Without the use of multifactor authentication, the ease of access to privileged functions is greatly increased.
Multifactor authentication requires using two or more factors to achieve authentication.
Factors include:
1) Something a user knows (e.g., password/PIN);
2) Something a user has (e.g., cryptographic identification device, token); and
3) Something a user is (e.g., biometric).
A privileged account is defined as an information system account with authorizations of a privileged user.
Network access is defined as access to an information system by a user (or a process acting on behalf of a user) communicating through a network (e.g., local area network, wide area network, or the internet).
The DOD common access card (CAC) with DOD-approved PKI is an example of multifactor authentication.
Satisfies: SRG-OS-000105-GPOS-00052, SRG-OS-000106-GPOS-00053, SRG-OS-000107-GPOS-00054, SRG-OS-000108-GPOS-00055</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000765</ident><ident system="http://cyber.mil/cci">CCI-000766</ident><ident system="http://cyber.mil/cci">CCI-004047</ident><ident system="http://cyber.mil/cci">CCI-000767</ident><ident system="http://cyber.mil/cci">CCI-000768</ident><fixtext fixref="F-64212r1044769_fix">Configure Ubuntu 22.04 LTS to use multifactor authentication for access to accounts.
Add or modify the following line in the "/etc/pam.d/common-auth" file:
auth [success=3 default=ignore] pam_pkcs11.so
Add or modify the following line in the "/etc/ssh/sshd_config" file:
PubkeyAuthentication yes</fixtext><fix id="F-64212r1044769_fix" /><check system="C-64304r1044768_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the "pam_pkcs11.so" module is configured by using the following command:
$ grep -i pam_pkcs11.so /etc/pam.d/common-auth
auth [success=3 default=ignore] pam_pkcs11.so
If "pam_pkcs11.so" is commented out or is missing, this is a finding.
Verify the sshd daemon allows public key authentication by using the following command:
$ sudo /usr/sbin/sshd -dd 2>&1 | awk '/filename/ {print $4}' | tr -d '\r' | tr '\n' ' ' | xargs sudo grep -iH 'pubkeyauthentication'
/etc/ssh/sshd_config:PubkeyAuthentication yes
If "PubkeyAuthentication" is not set to "yes" or is commented out or missing, or if conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260576"><title>SRG-OS-000377-GPOS-00162</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260576r958818_rule" weight="10.0" severity="medium"><version>UBTU-22-612025</version><title>Ubuntu 22.04 LTS must electronically verify personal identity verification (PIV) credentials.</title><description><VulnDiscussion>The use of PIV credentials facilitates standardization and reduces the risk of unauthorized access.
DOD has mandated the use of the common access card (CAC) to support identity management and personal authentication for systems covered under Homeland Security Presidential Directive (HSPD) 12, as well as making the CAC a primary component of layered protection for national security systems.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001954</ident><fixtext fixref="F-64213r953540_fix">Configure Ubuntu 22.04 LTS to do certificate status checking for multifactor authentication.
Add or modify all "cert_policy" lines in the "/etc/pam_pkcs11/pam_pkcs11.conf" file with the following:
ocsp_on</fixtext><fix id="F-64213r953540_fix" /><check system="C-64305r953539_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS electronically verifies PIV credentials via certificate status checking by using the following command:
$ sudo grep use_pkcs11_module /etc/pam_pkcs11/pam_pkcs11.conf | awk '/pkcs11_module opensc {/,/}/' /etc/pam_pkcs11/pam_pkcs11.conf | grep cert_policy | grep ocsp_on
cert_policy = ca,signature,ocsp_on;
If every returned "cert_policy" line is not set to "ocsp_on", the line is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260577"><title>SRG-OS-000066-GPOS-00034</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260577r986294_rule" weight="10.0" severity="medium"><version>UBTU-22-612030</version><title>Ubuntu 22.04 LTS, for PKI-based authentication, must validate certificates by constructing a certification path (which includes status information) to an accepted trust anchor.</title><description><VulnDiscussion>Without path validation, an informed trust decision by the relying party cannot be made when presented with any certificate not already explicitly trusted.
A trust anchor is an authoritative entity represented via a public key and associated data. It is used in the context of public key infrastructures, X.509 digital certificates, and DNSSEC.
When there is a chain of trust, usually the top entity to be trusted becomes the trust anchor; it can be, for example, a certification authority (CA). A certification path starts with the subject certificate and proceeds through a number of intermediate certificates up to a trusted root certificate, typically issued by a trusted CA.
This requirement verifies that a certification path to an accepted trust anchor is used for certificate validation and that the path includes status information. Path validation is necessary for a relying party to make an informed trust decision when presented with any certificate not already explicitly trusted. Status information for certification paths includes certificate revocation lists or online certificate status protocol responses. Validation of the certificate status information is out of scope for this requirement.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000185</ident><ident system="http://cyber.mil/cci">CCI-004909</ident><fixtext fixref="F-64214r953543_fix">Configure Ubuntu 22.04 LTS, for PKI-based authentication, to validate certificates by constructing a certification path to an accepted trust anchor.
Add or modify all "cert_policy" lines in the "/etc/pam_pkcs11/pam_pkcs11.conf" file with the following:
cert_policy = ca,signature,ocsp_on;
Note: If the system is missing an "/etc/pam_pkcs11/" directory and an "/etc/pam_pkcs11/pam_pkcs11.conf", find an example to copy into place and modify accordingly at "/usr/share/doc/libpam-pkcs11/examples/pam_pkcs11.conf.example.gz".</fixtext><fix id="F-64214r953543_fix" /><check system="C-64306r953542_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS, for PKI-based authentication, has valid certificates by constructing a certification path to an accepted trust anchor.
Determine which pkcs11 module is being used via the "use_pkcs11_module" in "/etc/pam_pkcs11/pam_pkcs11.conf" and then ensure "ca" is enabled in "cert_policy" by using the following command:
$ sudo grep use_pkcs11_module /etc/pam_pkcs11/pam_pkcs11.conf | awk '/pkcs11_module opensc {/,/}/' /etc/pam_pkcs11/pam_pkcs11.conf | grep cert_policy | grep ca
cert_policy = ca,signature,ocsp_on;
If "cert_policy" is not set to "ca", the line is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260578"><title>SRG-OS-000384-GPOS-00167</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260578r1015021_rule" weight="10.0" severity="medium"><version>UBTU-22-612035</version><title>Ubuntu 22.04 LTS for PKI-based authentication, must implement a local cache of revocation data in case of the inability to access revocation information via the network.</title><description><VulnDiscussion>Without configuring a local cache of revocation data, there is the potential to allow access to users who are no longer authorized (users with revoked certificates).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-004068</ident><ident system="http://cyber.mil/cci">CCI-001991</ident><fixtext fixref="F-64215r953546_fix">Configure Ubuntu 22.04 LTS, for PKI-based authentication, to use local revocation data when unable to access the network to obtain it remotely.
Add or update the "cert_policy" option in "/etc/pam_pkcs11/pam_pkcs11.conf" to include "crl_auto" or "crl_offline".
cert_policy = ca,signature,ocsp_on, crl_auto;
If the system is missing an "/etc/pam_pkcs11/" directory and an "/etc/pam_pkcs11/pam_pkcs11.conf", find an example to copy into place and modify accordingly at "/usr/share/doc/libpam-pkcs11/examples/pam_pkcs11.conf.example.gz".</fixtext><fix id="F-64215r953546_fix" /><check system="C-64307r953545_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS, for PKI-based authentication, uses local revocation data when unable to access it from the network by using the following command:
Note: If smart card authentication is not being used on the system, this is not applicable.
$ grep cert_policy /etc/pam_pkcs11/pam_pkcs11.conf | grep -E -- 'crl_auto|crl_offline'
cert_policy = ca,signature,ocsp_on,crl_auto;
If "cert_policy" is not set to include "crl_auto" or "crl_offline", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260579"><title>SRG-OS-000068-GPOS-00036</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260579r958452_rule" weight="10.0" severity="high"><version>UBTU-22-612040</version><title>Ubuntu 22.04 LTS must map the authenticated identity to the user or group account for PKI-based authentication.</title><description><VulnDiscussion>Without mapping the certificate used to authenticate to the user account, the ability to determine the identity of the individual user or group will not be available for forensic analysis.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000187</ident><fixtext fixref="F-64216r953549_fix">Set "use_mappers=pwent" in "/etc/pam_pkcs11/pam_pkcs11.conf" or, if there is already a comma-separated list of mappers, add it to the list, separated by comma, and before the null mapper.
If the system is missing an "/etc/pam_pkcs11/" directory and an "/etc/pam_pkcs11/pam_pkcs11.conf", find an example to copy into place and modify accordingly at "/usr/share/doc/libpam-pkcs11/examples/pam_pkcs11.conf.example.gz".</fixtext><fix id="F-64216r953549_fix" /><check system="C-64308r953548_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that "use_mappers" is set to "pwent" in "/etc/pam_pkcs11/pam_pkcs11.conf" file by using the following command:
$ grep -i use_mappers /etc/pam_pkcs11/pam_pkcs11.conf
use_mappers = pwent
If "use_mappers" does not contain "pwent", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260580"><title>SRG-OS-000403-GPOS-00182</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260580r958868_rule" weight="10.0" severity="medium"><version>UBTU-22-631010</version><title>Ubuntu 22.04 LTS must use DOD PKI-established certificate authorities for verification of the establishment of protected sessions.</title><description><VulnDiscussion>Untrusted certificate authorities (CA) can issue certificates, but they may be issued by organizations or individuals that seek to compromise DOD systems or by organizations with insufficient security controls. If the CA used for verifying the certificate is not a DOD-approved CA, trust of this CA has not been established.
The DOD will only accept PKI-certificates obtained from a DOD-approved internal or external certificate authority. Reliance on CAs for the establishment of secure sessions includes, for example, the use of SSL/TLS certificates.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002470</ident><fixtext fixref="F-64217r953552_fix">Configure Ubuntu 22.04 LTS to use of DOD PKI-established certificate authorities for verification of the establishment of protected sessions.
Add at least one DOD certificate authority to the "/usr/share/ca-certificates" directory in the CRT format.
Update the "/etc/ssl/certs" directory by using the following command:
$ sudo dpkg-reconfigure ca-certificates</fixtext><fix id="F-64217r953552_fix" /><check system="C-64309r953551_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the directory containing the root certificates for Ubuntu 22.04 LTS contains certificate files for DOD PKI-established certificate authorities by iterating over all files in the "/etc/ssl/certs" directory and checking if, at least one, has the subject matching "DOD ROOT CA".
$ ls /etc/ssl/certs | grep -i DOD
DOD_PKE_CA_chain.pem
If no DOD root certificate is found, this is a finding.
Verify that all root certificates present on the system have been approved by the AO.
$ ls /etc/ssl/certs
If a certificate is present that is not approved by the AO, this is a finding.</check-content></check></Rule></Group><Group id="V-260581"><title>SRG-OS-000383-GPOS-00166</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260581r958828_rule" weight="10.0" severity="low"><version>UBTU-22-631015</version><title>Ubuntu 22.04 LTS must be configured such that Pluggable Authentication Module (PAM) prohibits the use of cached authentications after one day.</title><description><VulnDiscussion>If cached authentication information is out-of-date, the validity of the authentication information may be questionable.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002007</ident><fixtext fixref="F-64218r953555_fix">Configure PAM to prohibit the use of cached authentications after one day.
Add or modify the following line in the "/etc/sssd/sssd.conf" file, just below the line "[pam]":
offline_credentials_expiration = 1
Note: It is valid for this configuration to be in a file with a name that ends with ".conf" and does not begin with a "." in the "/etc/sssd/conf.d/" directory instead of the "/etc/sssd/sssd.conf" file.</fixtext><fix id="F-64218r953555_fix" /><check system="C-64310r953554_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that PAM prohibits the use of cached authentications after one day by using the following command:
Note: If smart card authentication is not being used on the system, this requirement is not applicable.
$ sudo grep -i '^\s*offline_credentials_expiration' /etc/sssd/sssd.conf /etc/sssd/conf.d/*.conf
/etc/sssd/sssd.conf:offline_credentials_expiration = 1
If "offline_credentials_expiration" is not set to "1", is commented out, is missing, or conflicting results are returned, this is a finding.</check-content></check></Rule></Group><Group id="V-260582"><title>SRG-OS-000445-GPOS-00199</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260582r958944_rule" weight="10.0" severity="medium"><version>UBTU-22-651010</version><title>Ubuntu 22.04 LTS must use a file integrity tool to verify correct operation of all security functions.</title><description><VulnDiscussion>Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.
This requirement applies to Ubuntu 22.04 LTS performing security function verification/testing and/or systems and environments that require this functionality.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002696</ident><fixtext fixref="F-64219r953558_fix">Install the "aide" package:
$ sudo apt install aide</fixtext><fix id="F-64219r953558_fix" /><check system="C-64311r953557_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Advanced Intrusion Detection Environment (AIDE) is installed by using the following command:
$ dpkg -l | grep aide
ii aide 0.17.4-1 amd64 Advanced Intrusion Detection Environment - dynamic binary
If AIDE is not installed, ask the system administrator how file integrity checks are performed on the system.
If there is no application installed to perform integrity checks, this is a finding.</check-content></check></Rule></Group><Group id="V-260583"><title>SRG-OS-000445-GPOS-00199</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260583r958944_rule" weight="10.0" severity="medium"><version>UBTU-22-651015</version><title>Ubuntu 22.04 LTS must configure AIDE to perform file integrity checking on the file system.</title><description><VulnDiscussion>Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.
This requirement applies to Ubuntu 22.04 LTS performing security function verification/testing and/or systems and environments that require this functionality.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002696</ident><fixtext fixref="F-64220r953561_fix">Initialize AIDE (this will take a few minutes):
$ sudo aideinit
Running aide --init...
Example output:
Start timestamp: 2024-04-01 04:20:00 +1300 (AIDE 0.17.4)
AIDE initialized database at /var/lib/aide/aide.db.new
Ignored e2fs attributes: EIh
Number of entries: 146185
---------------------------------------------------
The attributes of the (uncompressed) database(s):
---------------------------------------------------
/var/lib/aide/aide.db.new
SHA256 : UrYbC/KBOJcs8zKcSlKoifnnoPK66DEC
Aw6odu/BpgY=
SHA512 : ezENbbuh937SPWvtsdjRzy3i47XjLg7j
L3UGmr0EcgY6u8rczxgbn2RuwJfrIpef
0c1qMNobzrLXyDnnqEqAqw==
RMD160 : yBq2xio+g5ne4kvZzzMZ2v+EO9w=
TIGER : GkJ/xkzJGu/aSQqk9A5LN271IOAQC3d0
CRC32 : g/beXA==
HAVAL : zZm220YZiGna2edJ6Gi0rPv16AlpqeHB
y/XLB3hIPEY=
WHIRLPOOL : k6veoXavJ/BH9L125pCYAfTB8w5ZJkdC
DvVmYS0+cgmg7M0y/S2v42FNCEJ993mc
3kZMXJR/VVmwKg/7ntGixQ==
GOST : psjiyix6mJlNsE984D0NwbfgBmB0ETGl
/R4PNvm/wKg=
End timestamp: 2024-04-01 04:29:16 +1300 (run time: 9m 16s)</fixtext><fix id="F-64220r953561_fix" /><check system="C-64312r953560_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Advanced Intrusion Detection Environment (AIDE) is configured and operating correctly by using the following command (this will take a few minutes):
Note: If AIDE is not installed, this requirement is not applicable.
$ sudo aide -c /etc/aide/aide.conf --check
Example output:
Start timestamp: 2024-04-01 04:20:00 +1300 (AIDE 0.17.4)
AIDE found differences between database and filesystem!!
Ignored e2fs attributes: EIh
...
If AIDE is being used to perform file integrity checks but the command fails, this is a finding.</check-content></check></Rule></Group><Group id="V-260584"><title>SRG-OS-000363-GPOS-00150</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260584r958794_rule" weight="10.0" severity="medium"><version>UBTU-22-651020</version><title>Ubuntu 22.04 LTS must notify designated personnel if baseline configurations are changed in an unauthorized manner. The file integrity tool must notify the system administrator when changes to the baseline configuration or anomalies in the operation of any security functions are discovered.</title><description><VulnDiscussion>Unauthorized changes to the baseline configuration could make the system vulnerable to various attacks or allow unauthorized access to the operating system. Changes to operating system configurations can have unintended side effects, some of which may be relevant to security.
Detecting such changes and providing an automated response can help avoid unintended, negative consequences that could ultimately affect the security state of the operating system. The operating system's IMO/ISSO and SAs must be notified via email and/or monitoring system trap when there is an unauthorized modification of a configuration item.
Satisfies: SRG-OS-000363-GPOS-00150, SRG-OS-000447-GPOS-00201</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001744</ident><ident system="http://cyber.mil/cci">CCI-002702</ident><fixtext fixref="F-64221r953564_fix">Configure AIDE to notify designated personnel if baseline configurations are changed in an unauthorized manner.
Add or modify the following line in the "/etc/default/aide" file:
SILENTREPORTS=no</fixtext><fix id="F-64221r953564_fix" /><check system="C-64313r953563_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Advanced Intrusion Detection Environment (AIDE) notifies the system administrator when anomalies in the operation of any security functions are discovered by using the following command:
$ grep -i '^\s*silentreports' /etc/default/aide
SILENTREPORTS=no
If "SILENTREPORTS" is set to "yes", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260585"><title>SRG-OS-000446-GPOS-00200</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260585r958946_rule" weight="10.0" severity="medium"><version>UBTU-22-651025</version><title>Ubuntu 22.04 LTS must be configured so that the script that runs each 30 days or less to check file integrity is the default.</title><description><VulnDiscussion>Without verification of the security functions, security functions may not operate correctly and the failure may go unnoticed. Security function is defined as the hardware, software, and/or firmware of the information system responsible for enforcing the system security policy and supporting the isolation of code and data on which the protection is based. Security functionality includes, but is not limited to, establishing system accounts, configuring access authorizations (i.e., permissions, privileges), setting events to be audited, and setting intrusion detection parameters.
Notifications provided by information systems include, for example, electronic alerts to system administrators, messages to local computer consoles, and/or hardware indications, such as lights.
This requirement applies to Ubuntu 22.04 LTS performing security function verification/testing and/or systems and environments that require this functionality.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002699</ident><fixtext fixref="F-64222r953567_fix">The cron file for AIDE is fairly complex as it creates the report. This file is installed with the "aide-common" package, and the default can be restored by copying it from the package:
Extract the aide script from the "aide-common" package to its original place:
$ dpkg-deb --fsys-tarfile /tmp/aide-common_*.deb | sudo tar -x ./usr/share/aide/config/cron.daily/aide -C /
Copy it to the cron.daily directory:
$ sudo cp -f /usr/share/aide/config/cron.daily/aide /etc/cron.daily/aide</fixtext><fix id="F-64222r953567_fix" /><check system="C-64314r953566_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the Advanced Intrusion Detection Environment (AIDE) default script used to check file integrity each 30 days or less is unchanged.
Download the original aide-common package in the /tmp directory:
$ cd /tmp; apt download aide-common
Fetch the SHA1 of the original script file:
$ dpkg-deb --fsys-tarfile /tmp/aide-common_*.deb | tar -xO ./usr/share/aide/config/cron.daily/aide | sha1sum
b71bb2cafaedf15ec3ac2f566f209d3260a37af0 -
Compare with the SHA1 of the file in the daily or monthly cron directory:
$ sha1sum /etc/cron.{daily,monthly}/aide 2>/dev/null
b71bb2cafaedf15ec3ac2f566f209d3260a37af0 /etc/cron.daily/aide
If there is no AIDE script file in the cron directories, or the SHA1 value of at least one file in the daily or monthly cron directory does not match the SHA1 of the original, this is a finding.</check-content></check></Rule></Group><Group id="V-260586"><title>SRG-OS-000278-GPOS-00108</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260586r1044779_rule" weight="10.0" severity="medium"><version>UBTU-22-651030</version><title>Ubuntu 22.04 LTS must use cryptographic mechanisms to protect the integrity of audit tools.</title><description><VulnDiscussion>Protecting the integrity of the tools used for auditing purposes is a critical step toward ensuring the integrity of audit information. Audit information includes all information (e.g., audit records, audit settings, and audit reports) needed to successfully audit information system activity.
Audit tools include, but are not limited to, vendor-provided and open source audit tools needed to successfully view and manipulate audit information system activity and records. Audit tools include custom queries and report generators.
It is not uncommon for attackers to replace the audit tools or inject code into the existing tools with the purpose of providing the capability to hide or erase system activity from the audit logs.
To address this risk, audit tools must be cryptographically signed in order to provide the capability to identify when the audit tools have been modified, manipulated, or replaced. An example is a checksum hash of the file or files.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001496</ident><fixtext fixref="F-64223r1044778_fix">Configure AIDE to protect the integrity of audit tools:
Add or modify the following lines in the "/etc/aide/aide.conf" file:
# Audit Tools
/sbin/auditctl p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/auditd p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/ausearch p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/aureport p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/autrace p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/augenrules p+i+n+u+g+s+b+acl+xattrs+sha512</fixtext><fix id="F-64223r1044778_fix" /><check system="C-64315r1044777_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Advanced Intrusion Detection Environment (AIDE) is properly configured to use cryptographic mechanisms to protect the integrity of audit tools by using the following command:
$ grep -E '(\/sbin\/(audit|au))' /etc/aide/aide.conf
/sbin/auditctl p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/auditd p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/ausearch p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/aureport p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/autrace p+i+n+u+g+s+b+acl+xattrs+sha512
/sbin/augenrules p+i+n+u+g+s+b+acl+xattrs+sha512
If any of the seven lines do not appear as shown, are commented out, or are missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260587"><title>SRG-OS-000479-GPOS-00224</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260587r959008_rule" weight="10.0" severity="low"><version>UBTU-22-651035</version><title>Ubuntu 22.04 LTS must have a crontab script running weekly to offload audit events of standalone systems.</title><description><VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.
Offloading is a common process in information systems with limited audit storage capacity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001851</ident><fixtext fixref="F-64224r953573_fix">Create a script that offloads audit logs to external media and runs weekly.
The script must be located in the "/etc/cron.weekly" directory.</fixtext><fix id="F-64224r953573_fix" /><check system="C-64316r953572_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify there is a script that offloads audit data and that script runs weekly by using the following command:
Note: If the system is not connected to a network, this requirement is not applicable.
$ ls /etc/cron.weekly
<audit_offload_script_name>
Check if the script inside the file does offloading of audit logs to external media.
If the script file does not exist or does not offload audit logs, this is a finding.</check-content></check></Rule></Group><Group id="V-260588"><title>SRG-OS-000269-GPOS-00103</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260588r991562_rule" weight="10.0" severity="medium"><version>UBTU-22-652010</version><title>Ubuntu 22.04 LTS must be configured to preserve log records from failure events.</title><description><VulnDiscussion>Failure to a known state can address safety or security in accordance with the mission/business needs of the organization. Failure to a known secure state helps prevent a loss of confidentiality, integrity, or availability in the event of a failure of the information system or a component of the system.
Preserving operating system state information helps to facilitate operating system restart and return to the operational mode of the organization with least disruption to mission/business processes.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001665</ident><fixtext fixref="F-64225r953576_fix">Install the log service by using the following command:
$ sudo apt-get install rsyslog
Enable and activate the log service by using the following command:
$ sudo systemctl enable rsyslog.service --now</fixtext><fix id="F-64225r953576_fix" /><check system="C-64317r953575_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the log service is installed properly by using the following command:
$ dpkg -l | grep rsyslog
ii rsyslog 8.2112.0-2ubuntu2.2 amd64 reliable system and kernel logging daemon
If the "rsyslog" package is not installed, this is a finding.
Check that the log service is enabled and active by using the following commands:
$ systemctl is-enabled rsyslog.service
enabled
$ systemctl is-active rsyslog.service
active
If "rsyslog.service" is not enabled and active, this is a finding.</check-content></check></Rule></Group><Group id="V-260589"><title>SRG-OS-000032-GPOS-00013</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260589r958406_rule" weight="10.0" severity="medium"><version>UBTU-22-652015</version><title>Ubuntu 22.04 LTS must monitor remote access methods.</title><description><VulnDiscussion>Remote access services, such as those providing remote access to network devices and information systems, which lack automated monitoring capabilities, increase risk and make remote user access management difficult at best.
Remote access is access to DOD nonpublic information systems by an authorized user (or an information system) communicating through an external, nonorganization-controlled network. Remote access methods include, for example, dial-up, broadband, and wireless.
Automated monitoring of remote access sessions allows organizations to detect cyberattacks and also ensure ongoing compliance with remote access policies by auditing connection activities of remote access capabilities, such as Remote Desktop Protocol (RDP), on a variety of information system components (e.g., servers, workstations, notebook computers, smartphones, and tablets).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000067</ident><fixtext fixref="F-64226r953579_fix">Configure Ubuntu 22.04 LTS to monitor all remote access methods.
Add or modify the following line in the "/etc/rsyslog.d/50-default.conf" file:
auth.*,authpriv.* /var/log/secure
daemon.* /var/log/messages
Restart "rsyslog.service" for the changes to take effect by using the following command:
$ sudo systemctl restart rsyslog.service</fixtext><fix id="F-64226r953579_fix" /><check system="C-64318r953578_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that Ubuntu 22.04 LTS monitors all remote access methods by using the following command:
$ grep -Er '^(auth\.\*,authpriv\.\*|daemon\.\*)' /etc/rsyslog.*
/etc/rsyslog.d/50-default.conf:auth.*,authpriv.* /var/log/secure
/etc/rsyslog.d/50-default.conf:daemon.* /var/log/messages
If "auth.*", "authpriv.*", or "daemon.*" are not configured to be logged in at least one of the config files, this is a finding.</check-content></check></Rule></Group><Group id="V-260590"><title>SRG-OS-000037-GPOS-00015</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260590r1015022_rule" weight="10.0" severity="medium"><version>UBTU-22-653010</version><title>Ubuntu 22.04 LTS must have the "auditd" package installed.</title><description><VulnDiscussion>Without establishing the when, where, type, source, and outcome of events that occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.
Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.
Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.
Successful incident response and auditing relies on timely, accurate system information and analysis in order to allow the organization to identify and respond to potential incidents in a proficient manner. If the operating system does not provide the ability to centrally review the operating system logs, forensic analysis is negatively impacted.
Associating event types with detected events in Ubuntu 22.04 LTS audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.
Satisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00020, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000062-GPOS-00031, SRG-OS-000122-GPOS-00063, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000365-GPOS-00152, SRG-OS-000475-GPOS-00220</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000130</ident><ident system="http://cyber.mil/cci">CCI-000131</ident><ident system="http://cyber.mil/cci">CCI-000132</ident><ident system="http://cyber.mil/cci">CCI-000133</ident><ident system="http://cyber.mil/cci">CCI-000134</ident><ident system="http://cyber.mil/cci">CCI-000135</ident><ident system="http://cyber.mil/cci">CCI-000154</ident><ident system="http://cyber.mil/cci">CCI-000158</ident><ident system="http://cyber.mil/cci">CCI-000169</ident><ident system="http://cyber.mil/cci">CCI-000172</ident><ident system="http://cyber.mil/cci">CCI-003938</ident><ident system="http://cyber.mil/cci">CCI-001875</ident><ident system="http://cyber.mil/cci">CCI-001876</ident><ident system="http://cyber.mil/cci">CCI-001877</ident><ident system="http://cyber.mil/cci">CCI-001878</ident><ident system="http://cyber.mil/cci">CCI-001879</ident><ident system="http://cyber.mil/cci">CCI-001880</ident><ident system="http://cyber.mil/cci">CCI-001881</ident><ident system="http://cyber.mil/cci">CCI-001882</ident><ident system="http://cyber.mil/cci">CCI-001914</ident><ident system="http://cyber.mil/cci">CCI-001814</ident><fixtext fixref="F-64227r953582_fix">Install the "auditd" package by using the following command:
$ sudo apt-get install auditd</fixtext><fix id="F-64227r953582_fix" /><check system="C-64319r953581_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the "auditd" package is installed by using the following command:
$ dpkg -l | grep auditd
ii libauditd 1:3.0.7-1build1 amd64 User space tools for security auditing
If the "auditd" package is not installed, this is a finding.</check-content></check></Rule></Group><Group id="V-260591"><title>SRG-OS-000037-GPOS-00015</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260591r1015023_rule" weight="10.0" severity="medium"><version>UBTU-22-653015</version><title>Ubuntu 22.04 LTS must produce audit records and reports containing information to establish when, where, what type, the source, and the outcome for all DOD-defined auditable events and actions in near real time.</title><description><VulnDiscussion>Without establishing the when, where, type, source, and outcome of events that occurred, it would be difficult to establish, correlate, and investigate the events leading up to an outage or attack.
Without the capability to generate audit records, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit record content that may be necessary to satisfy this requirement includes, for example, time stamps, source and destination addresses, user/process identifiers, event descriptions, success/fail indications, filenames involved, and access control or flow control rules invoked.
Reconstruction of harmful events or forensic analysis is not possible if audit records do not contain enough information.
Successful incident response and auditing relies on timely, accurate system information and analysis to allow the organization to identify and respond to potential incidents in a proficient manner. If the operating system does not provide the ability to centrally review the operating system logs, forensic analysis is negatively impacted.
Associating event types with detected events in Ubuntu 22.04 LTS audit logs provides a means of investigating an attack; recognizing resource utilization or capacity thresholds; or identifying an improperly configured operating system.
Satisfies: SRG-OS-000037-GPOS-00015, SRG-OS-000038-GPOS-00016, SRG-OS-000039-GPOS-00017, SRG-OS-000040-GPOS-00018, SRG-OS-000041-GPOS-00019, SRG-OS-000042-GPOS-00020, SRG-OS-000042-GPOS-00021, SRG-OS-000051-GPOS-00024, SRG-OS-000054-GPOS-00025, SRG-OS-000062-GPOS-00031, SRG-OS-000122-GPOS-00063, SRG-OS-000337-GPOS-00129, SRG-OS-000348-GPOS-00136, SRG-OS-000349-GPOS-00137, SRG-OS-000350-GPOS-00138, SRG-OS-000351-GPOS-00139, SRG-OS-000352-GPOS-00140, SRG-OS-000353-GPOS-00141, SRG-OS-000354-GPOS-00142, SRG-OS-000365-GPOS-00152, SRG-OS-000475-GPOS-00220</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000130</ident><ident system="http://cyber.mil/cci">CCI-000131</ident><ident system="http://cyber.mil/cci">CCI-000132</ident><ident system="http://cyber.mil/cci">CCI-000133</ident><ident system="http://cyber.mil/cci">CCI-000134</ident><ident system="http://cyber.mil/cci">CCI-000135</ident><ident system="http://cyber.mil/cci">CCI-000154</ident><ident system="http://cyber.mil/cci">CCI-000158</ident><ident system="http://cyber.mil/cci">CCI-000169</ident><ident system="http://cyber.mil/cci">CCI-000172</ident><ident system="http://cyber.mil/cci">CCI-003938</ident><ident system="http://cyber.mil/cci">CCI-001875</ident><ident system="http://cyber.mil/cci">CCI-001876</ident><ident system="http://cyber.mil/cci">CCI-001877</ident><ident system="http://cyber.mil/cci">CCI-001878</ident><ident system="http://cyber.mil/cci">CCI-001879</ident><ident system="http://cyber.mil/cci">CCI-001880</ident><ident system="http://cyber.mil/cci">CCI-001881</ident><ident system="http://cyber.mil/cci">CCI-001882</ident><ident system="http://cyber.mil/cci">CCI-001914</ident><ident system="http://cyber.mil/cci">CCI-001814</ident><fixtext fixref="F-64228r953585_fix">Enable and start the "auditd.service" by using the following command:
$ sudo systemctl enable auditd.service --now</fixtext><fix id="F-64228r953585_fix" /><check system="C-64320r953584_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the "auditd.service" is enabled and active by using the following commands:
$ systemctl is-enabled auditd.service
enabled
$ systemctl is-active auditd.service
active
If the "auditd.service" is not enabled and active, this is a finding.</check-content></check></Rule></Group><Group id="V-260592"><title>SRG-OS-000342-GPOS-00133</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260592r958754_rule" weight="10.0" severity="low"><version>UBTU-22-653020</version><title>Ubuntu 22.04 LTS audit event multiplexor must be configured to offload audit logs onto a different system from the system being audited.</title><description><VulnDiscussion>Information stored in one location is vulnerable to accidental or incidental deletion or alteration.
Offloading is a common process in information systems with limited audit storage capacity.
The auditd service does not include the ability to send audit records to a centralized server for management directly. However, it can use a plug-in for audit event multiplexor to pass audit records to a remote server.
Satisfies: SRG-OS-000342-GPOS-00133, SRG-OS-000479-GPOS-00224</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001851</ident><fixtext fixref="F-64229r953588_fix">Configure the audit event multiplexor to offload audit records to a different system from the system being audited.
Install the "audisp-plugins" package by using the following command:
$ sudo apt-get install audispd-plugins
Set the audisp-remote plugin as active by editing the "/etc/audit/plugins.d/au-remote.conf" file:
$ sudo sed -i -E 's/active\s*=\s*no/active = yes/' /etc/audit/plugins.d/au-remote.conf
Set the IP address of the remote system by editing the "/etc/audit/audisp-remote.conf" file:
$ sudo sed -i -E 's/(remote_server\s*=).*/\1 <remote_server_ip_address>/' /etc/audit/audisp-remote.conf
Restart the "auditd.service" for the changes to take effect:
$ sudo systemctl restart auditd.service</fixtext><fix id="F-64229r953588_fix" /><check system="C-64321r953587_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the audit event multiplexor is configured to offload audit records to a different system from the system being audited.
Check if the "audispd-plugins" package is installed:
$ dpkg -l | grep audispd-plugins
ii audispd-plugins 1:3.0.7-1build1 amd64 Plugins for the audit event dispatcher
If the "audispd-plugins" package is not installed, this is a finding.
Check that the records are being offloaded to a remote server by using the following command:
$ sudo grep -i active /etc/audit/plugins.d/au-remote.conf
active = yes
If "active" is not set to "yes", or the line is commented out, or is missing, this is a finding.
Check that audisp-remote plugin is configured to send audit logs to a different system:
$ sudo grep -i remote_server /etc/audit/audisp-remote.conf
remote_server = 240.9.19.81
If the "remote_server" parameter is not set, is set with a local IP address, or is set with an invalid IP address, this is a finding.</check-content></check></Rule></Group><Group id="V-260593"><title>SRG-OS-000046-GPOS-00022</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260593r958424_rule" weight="10.0" severity="low"><version>UBTU-22-653025</version><title>Ubuntu 22.04 LTS must alert the information system security officer (ISSO) and system administrator (SA) in the event of an audit processing failure.</title><description><VulnDiscussion>It is critical for the appropriate personnel to be aware if a system is at risk of failing to process audit logs as required. Without this notification, the security personnel may be unaware of an impending failure of the audit capability, and system operation may be adversely affected.
Audit processing failures include software/hardware errors, failures in the audit capturing mechanisms, and audit storage capacity being reached or exceeded.
This requirement applies to each audit data storage repository (i.e., distinct information system component where audit records are stored), the centralized audit storage capacity of organizations (i.e., all audit data storage repositories combined), or both.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000139</ident><fixtext fixref="F-64230r953591_fix">Configure "auditd" service to notify the SA and ISSO in the event of an audit processing failure.
Add or modify the following line in the "/etc/audit/auditd.conf " file:
action_mail_acct = <administrator_email_account>
Note: Change "administrator_email_account" to the email address of the SA and/or ISSO.
Restart the "auditd" service for the changes take effect:
$ sudo systemctl restart auditd.service</fixtext><fix id="F-64230r953591_fix" /><check system="C-64322r953590_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the SA and ISSO are notified in the event of an audit processing failure by using the following command:
Note: An email package must be installed on the system for email notifications to be sent.
$ sudo grep -i action_mail_acct /etc/audit/auditd.conf
action_mail_acct = <administrator_email_account>
If "action_mail_acct" is not set to the email address of the SA and/or ISSO, is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260594"><title>SRG-OS-000047-GPOS-00023</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260594r1038966_rule" weight="10.0" severity="medium"><version>UBTU-22-653030</version><title>Ubuntu 22.04 LTS must shut down by default upon audit failure.</title><description><VulnDiscussion>It is critical that when the operating system is at risk of failing to process audit logs as required, it takes action to mitigate the failure. Audit processing failures include: software/hardware errors; failures in the audit capturing mechanisms; and audit storage capacity being reached or exceeded. Responses to audit failure depend upon the nature of the failure mode.
When availability is an overriding concern, other approved actions in response to an audit failure are as follows:
1. If the failure was caused by the lack of audit record storage capacity, the operating system must continue generating audit records if possible (automatically restarting the audit service if necessary), overwriting the oldest audit records in a first-in-first-out manner.
2. If audit records are sent to a centralized collection server and communication with this server is lost or the server fails, the operating system must queue audit records locally until communication is restored or until the audit records are retrieved manually. Upon restoration of the connection to the centralized collection server, action should be taken to synchronize the local audit data with the collection server.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000140</ident><fixtext fixref="F-64231r953594_fix">Configure Ubuntu 22.04 LTS to shut down by default upon audit failure.
Add or modify the following line in the "/etc/audit/auditd.conf " file:
disk_full_action = HALT
Restart the "auditd" service for the changes to take effect:
$ sudo systemctl restart auditd.service
Note: If system availability has been determined to be more important, and this decision is documented with the ISSO, configure Ubuntu 22.04 LTS to notify system administration staff and ISSO staff in the event of an audit processing failure by setting the "disk_full_action" to "SYSLOG" or "SINGLE".</fixtext><fix id="F-64231r953594_fix" /><check system="C-64323r953593_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS takes the appropriate action when the audit storage volume is full by using the following command:
$ sudo grep -i disk_full_action /etc/audit/auditd.conf
disk_full_action = HALT
If "disk_full_action" is not set to "HALT", "SYSLOG", or "SINGLE", is commented out, or is missing, this is a finding.</check-content></check></Rule></Group><Group id="V-260595"><title>SRG-OS-000341-GPOS-00132</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260595r958752_rule" weight="10.0" severity="low"><version>UBTU-22-653035</version><title>Ubuntu 22.04 LTS must allocate audit record storage capacity to store at least one weeks' worth of audit records, when audit records are not immediately sent to a central audit record storage facility.</title><description><VulnDiscussion>To ensure operating systems have a sufficient storage capacity in which to write the audit logs, operating systems must be able to allocate audit record storage capacity.
The task of allocating audit record storage capacity is usually performed during initial installation of the operating system.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001849</ident><fixtext fixref="F-64232r953597_fix">Allocate enough storage capacity for at least one week's worth of audit records when audit records are not immediately sent to a central audit record storage facility.
If audit records are stored on a partition made specifically for audit records, use the "parted" program to resize the partition with sufficient space to contain one week's worth of audit records.
If audit records are not stored on a partition made specifically for audit records, a new partition with sufficient amount of space will need be to be created.
Set the auditd server to point to the mount point where the audit records must be located:
$ sudo sed -i -E 's@^(log_file\s*=\s*).*@\1 <audit_partition_mountpoint>/audit.log@' /etc/audit/auditd.conf
where <audit_partition_mountpoint> is the aforementioned mount point.</fixtext><fix id="F-64232r953597_fix" /><check system="C-64324r953596_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS allocates audit record storage capacity to store at least one week's worth of audit records when audit records are not immediately sent to a central audit record storage facility.
Determine which partition the audit records are being written to by using the following command:
$ sudo grep -i log_file /etc/audit/auditd.conf
log_file = /var/log/audit/audit.log
Check the size of the partition that audit records are written to (with the example being "/var/log/audit/") by using the following command:
$ sudo df -h /var/log/audit/
/dev/sda2 24G 10.4G 13.6G 43% /var/log/audit
If the audit records are not written to a partition made specifically for audit records ("/var/log/audit" as a separate partition), determine the amount of space being used by other files in the partition by using the following command:
$ sudo du -sh <audit_partition>
1.8G /var/log/audit
Note: The partition size needed to capture a week's worth of audit records is based on the activity level of the system and the total storage capacity available.
If the audit record partition is not allocated for sufficient storage capacity, this is a finding.</check-content></check></Rule></Group><Group id="V-260596"><title>SRG-OS-000343-GPOS-00134</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260596r971542_rule" weight="10.0" severity="low"><version>UBTU-22-653040</version><title>Ubuntu 22.04 LTS must immediately notify the system administrator (SA) and information system security officer (ISSO) when the audit record storage volume reaches 25 percent remaining of the allocated capacity.</title><description><VulnDiscussion>If security personnel are not notified immediately when storage volume reaches 25 percent remaining of the allocated capacity, they are unable to plan for audit record storage capacity expansion.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-001855</ident><fixtext fixref="F-64233r953600_fix">Configure Ubuntu 22.04 LTS to notify the SA and ISSO when the audit record storage volume reaches 25 percent remaining of the allocated capacity.
Add or modify the following lines in the "/etc/audit/auditd.conf " file:
space_left = 25%
space_left_action = email
Restart the "auditd" service for the changes to take effect:
$ sudo systemctl restart auditd.service
Note: If the "space_left_action" parameter is set to "exec", ensure the command being executed notifies the SA and ISSO.</fixtext><fix id="F-64233r953600_fix" /><check system="C-64325r953599_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to notify the SA and ISSO when the audit record storage volume reaches 25 percent remaining of the allocated capacity by using the following command:
$ sudo grep -i space_left /etc/audit/auditd.conf
space_left = 25%
space_left_action = email
If "space_left" is set to a value less than "25%", is commented out, or is missing, this is a finding.
If "space_left_action" is not set to "email", is commented out, or is missing, this is a finding.
Note: If the "space_left_action" is set to "exec", the system executes a designated script. If this script informs the SA of the event, this is not a finding.</check-content></check></Rule></Group><Group id="V-260597"><title>SRG-OS-000057-GPOS-00027</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260597r958434_rule" weight="10.0" severity="medium"><version>UBTU-22-653045</version><title>Ubuntu 22.04 LTS must be configured so that audit log files are not read- or write-accessible by unauthorized users.</title><description><VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.
Audit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit operating system activity.
Satisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000162</ident><ident system="http://cyber.mil/cci">CCI-000163</ident><fixtext fixref="F-64234r953603_fix">Configure the audit log files to have a mode of "600" or less permissive.
Using the path of the directory containing the audit logs, configure the audit log files to have a mode of "600" or less permissive by using the following command:
$ sudo chmod 600 /var/log/audit/*</fixtext><fix id="F-64234r953603_fix" /><check system="C-64326r953602_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the audit log files have a mode of "600" or less permissive.
Determine where the audit logs are stored by using the following command:
$ sudo grep -iw log_file /etc/audit/auditd.conf
log_file = /var/log/audit/audit.log
Using the path of the directory containing the audit logs, determine if the audit log files have a mode of "600" or less by using the following command:
$ sudo stat -c "%n %a" /var/log/audit/*
/var/log/audit/audit.log 600
If the audit log files have a mode more permissive than "600", this is a finding.</check-content></check></Rule></Group><Group id="V-260598"><title>SRG-OS-000057-GPOS-00027</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260598r958434_rule" weight="10.0" severity="medium"><version>UBTU-22-653050</version><title>Ubuntu 22.04 LTS must be configured to permit only authorized users ownership of the audit log files.</title><description><VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.
Audit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit operating system activity.
Satisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000162</ident><ident system="http://cyber.mil/cci">CCI-000163</ident><ident system="http://cyber.mil/cci">CCI-000164</ident><fixtext fixref="F-64235r953606_fix">Configure the audit log directory and its underlying files to be owned by "root" user.
Using the path of the directory containing the audit logs, configure the audit log files to be owned by "root" user by using the following command:
$ sudo chown root /var/log/audit/*</fixtext><fix id="F-64235r953606_fix" /><check system="C-64327r953605_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the audit log files are owned by "root" account.
Determine where the audit logs are stored by using the following command:
$ sudo grep -iw log_file /etc/audit/auditd.conf
log_file = /var/log/audit/audit.log
Using the path of the directory containing the audit logs, determine if the audit log files are owned by the "root" user by using the following command:
$ sudo stat -c "%n %U" /var/log/audit/*
/var/log/audit/audit.log root
If the audit log files are owned by a user other than "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260599"><title>SRG-OS-000057-GPOS-00027</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260599r958434_rule" weight="10.0" severity="medium"><version>UBTU-22-653055</version><title>Ubuntu 22.04 LTS must permit only authorized groups ownership of the audit log files.</title><description><VulnDiscussion>Unauthorized disclosure of audit records can reveal system and configuration data to attackers, thus compromising its confidentiality.
Audit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit operating system activity.
Satisfies: SRG-OS-000057-GPOS-00027, SRG-OS-000058-GPOS-00028, SRG-OS-000059-GPOS-00029</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000162</ident><ident system="http://cyber.mil/cci">CCI-000163</ident><ident system="http://cyber.mil/cci">CCI-000164</ident><fixtext fixref="F-64236r953609_fix">Configure the group owner of newly created audit logs to be "root".
Add or modify the following lines in the "/etc/audit/auditd.conf " file:
log_group = root
Reload the configuration file of the audit service to update the group ownership of existing files:
$ sudo systemctl kill auditd -s SIGHUP</fixtext><fix id="F-64236r953609_fix" /><check system="C-64328r953608_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the group owner of newly created audit logs is "root" by using the following command:
$ sudo grep -iw log_group /etc/audit/auditd.conf
log_group = root
If "log_group" is not set to "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260600"><title>SRG-OS-000059-GPOS-00029</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260600r958438_rule" weight="10.0" severity="medium"><version>UBTU-22-653060</version><title>Ubuntu 22.04 LTS must be configured so that the audit log directory is not write-accessible by unauthorized users.</title><description><VulnDiscussion>If audit information were to become compromised, then forensic analysis and discovery of the true source of potentially malicious system activity is impossible to achieve.
To ensure the veracity of audit information, the operating system must protect audit information from unauthorized deletion. This requirement can be achieved through multiple methods, which will depend upon system architecture and design.
Audit information includes all information (e.g., audit records, audit settings, audit reports) needed to successfully audit information system activity.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000164</ident><fixtext fixref="F-64237r953612_fix">Configure the audit log directory to have a mode of "750" or less permissive.
Using the path of the directory containing the audit logs, configure the audit log directory to have a mode of "750" or less permissive by using the following command:
$ sudo chmod -R g-w,o-rwx /var/log/audit</fixtext><fix id="F-64237r953612_fix" /><check system="C-64329r953611_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that the audit log directory has a mode of "750" or less permissive.
Determine where the audit logs are stored by using the following command:
$ sudo grep -iw log_file /etc/audit/auditd.conf
log_file = /var/log/audit/audit.log
Using the path of the directory containing the audit logs, determine if the directory has a mode of "750" or less by using the following command:
$ sudo stat -c "%n %a" /var/log/audit
/var/log/audit 750
If the audit log directory has a mode more permissive than "750", this is a finding.</check-content></check></Rule></Group><Group id="V-260601"><title>SRG-OS-000063-GPOS-00032</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260601r958444_rule" weight="10.0" severity="medium"><version>UBTU-22-653065</version><title>Ubuntu 22.04 LTS must be configured so that audit configuration files are not write-accessible by unauthorized users.</title><description><VulnDiscussion>Without the capability to restrict which roles and individuals can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events.
Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000171</ident><fixtext fixref="F-64238r953615_fix">Configure /etc/audit/audit.rules", "/etc/audit/auditd.conf", and "/etc/audit/rules.d/*" files to have a mode of "640" by using the following command:
$ sudo chmod -R 640 /etc/audit/audit.rules /etc/audit/auditd.conf /etc/audit/rules.d/*</fixtext><fix id="F-64238r953615_fix" /><check system="C-64330r953614_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that "/etc/audit/audit.rules", "/etc/audit/auditd.conf", and "/etc/audit/rules.d/*" files have a mode of "640" or less permissive by using the following command:
$ sudo ls -al /etc/audit/audit.rules /etc/audit/auditd.conf /etc/audit/rules.d/* | awk '{print $1, $9}'
-rw-r----- /etc/audit/audit.rules
-rw-r----- /etc/audit/auditd.conf
-rw-r----- /etc/audit/rules.d/audit.rules
If "/etc/audit/audit.rules", "/etc/audit/auditd.conf", or "/etc/audit/rules.d/*" files have a mode more permissive than "640", this is a finding.</check-content></check></Rule></Group><Group id="V-260602"><title>SRG-OS-000063-GPOS-00032</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260602r958444_rule" weight="10.0" severity="medium"><version>UBTU-22-653070</version><title>Ubuntu 22.04 LTS must permit only authorized accounts to own the audit configuration files.</title><description><VulnDiscussion>Without the capability to restrict which roles and individuals can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events.
Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000171</ident><fixtext fixref="F-64239r953618_fix">Configure "/etc/audit/audit.rules", "/etc/audit/rules.d/*", and "/etc/audit/auditd.conf" files to be owned by root by using the following command:
$ sudo chown -R root /etc/audit/audit.rules /etc/audit/auditd.conf /etc/audit/rules.d/*</fixtext><fix id="F-64239r953618_fix" /><check system="C-64331r953617_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that "/etc/audit/audit.rules", "/etc/audit/auditd.conf", and "/etc/audit/rules.d/*" files are owned by root account by using the following command:
$ sudo ls -al /etc/audit/audit.rules /etc/audit/auditd.conf /etc/audit/rules.d/* | awk '{print $3, $9}'
root /etc/audit/audit.rules
root /etc/audit/auditd.conf
root /etc/audit/rules.d/audit.rules
If "/etc/audit/audit.rules", "/etc/audit/auditd.conf", or "/etc/audit/rules.d/*" files are owned by a user other than "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260603"><title>SRG-OS-000063-GPOS-00032</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260603r958444_rule" weight="10.0" severity="medium"><version>UBTU-22-653075</version><title>Ubuntu 22.04 LTS must permit only authorized groups to own the audit configuration files.</title><description><VulnDiscussion>Without the capability to restrict which roles and individuals can select which events are audited, unauthorized personnel may be able to prevent the auditing of critical events.
Misconfigured audits may degrade the system's performance by overwhelming the audit log. Misconfigured audits may also make it more difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000171</ident><fixtext fixref="F-64240r953621_fix">Configure "/etc/audit/audit.rules", "/etc/audit/rules.d/*", and "/etc/audit/auditd.conf" files to be owned by root group by using the following command:
$ sudo chown -R :root /etc/audit/audit.rules /etc/audit/auditd.conf /etc/audit/rules.d/*</fixtext><fix id="F-64240r953621_fix" /><check system="C-64332r953620_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that "/etc/audit/audit.rules", "/etc/audit/auditd.conf", and "/etc/audit/rules.d/*" files are owned by root group by using the following command:
$ sudo ls -al /etc/audit/audit.rules /etc/audit/auditd.conf /etc/audit/rules.d/* | awk '{print $4, $9}'
root /etc/audit/audit.rules
root /etc/audit/auditd.conf
root /etc/audit/rules.d/audit.rules
If "/etc/audit/audit.rules", "/etc/audit/auditd.conf", or "/etc/audit/rules.d/*" files are owned by a group other than "root", this is a finding.</check-content></check></Rule></Group><Group id="V-260604"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260604r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654010</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the apparmor_parser command.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64241r953624_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "apparmor_parser" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/sbin/apparmor_parser -F perm=x -F auid>=1000 -F auid!=unset -k perm_chng
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64241r953624_fix" /><check system="C-64333r953623_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "apparmor_parser" command by using the following command:
$ sudo auditctl -l | grep apparmor_parser
-a always,exit -S all -F path=/sbin/apparmor_parser -F perm=x -F auid>=1000 -F auid!=-1 -F key=perm_chng
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260605"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260605r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654015</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the chacl command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64242r953627_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "chacl" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/chacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_chng
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64242r953627_fix" /><check system="C-64334r953626_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "chacl" command by using the following command:
$ sudo auditctl -l | grep chacl
-a always,exit -S all -F path=/usr/bin/chacl -F perm=x -F auid>=1000 -F auid!=-1 -F key=perm_chng
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260606"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260606r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654020</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the chage command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64243r953630_fix">Configure the audit system to generate an audit event for any successful/unsuccessful uses of the "chage" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/chage -F perm=x -F auid>=1000 -F auid!=unset -k privileged-chage
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64243r953630_fix" /><check system="C-64335r953629_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that an audit event is generated for any successful/unsuccessful use of the "chage" command by using the following command:
$ sudo auditctl -l | grep -w chage
-a always,exit -S all -F path=/usr/bin/chage -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-chage
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260607"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260607r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654025</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the chcon command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64244r953633_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "chcon" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/chcon -F perm=x -F auid>=1000 -F auid!=unset -k perm_chng
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64244r953633_fix" /><check system="C-64336r953632_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "chcon" command by using the following command:
$ sudo auditctl -l | grep chcon
-a always,exit -S all -F path=/usr/bin/chcon -F perm=x -F auid>=1000 -F auid!=-1 -F key=perm_chng
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260608"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260608r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654030</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the chfn command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64245r953636_fix">Configure the audit system to generate an audit event for any successful/unsuccessful uses of the "chfn" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/chfn -F perm=x -F auid>=1000 -F auid!=unset -k privileged-chfn
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64245r953636_fix" /><check system="C-64337r953635_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records upon successful/unsuccessful attempts to use the "chfn" command by using the following command:
$ sudo auditctl -l | grep /usr/bin/chfn
-a always,exit -S all -F path=/usr/bin/chfn -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-chfn
If the command does not return lines that match the example or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260609"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260609r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654035</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the chsh command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64246r953639_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "chsh" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/chsh -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64246r953639_fix" /><check system="C-64338r953638_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "chsh" command by using the following command:
$ sudo auditctl -l | grep chsh
-a always,exit -S all -F path=/usr/bin/chsh -F perm=x -F auid>=1000 -F auid!=-1 -F key=priv_cmd
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Notes: The "-k" allows for specifying an arbitrary identifier, and the string after it does not need to match the example output above.</check-content></check></Rule></Group><Group id="V-260610"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260610r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654040</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the crontab command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64247r953642_fix">Configure the audit system to generate an audit event for any successful/unsuccessful uses of the "crontab" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/crontab -F perm=x -F auid>=1000 -F auid!=unset -k privileged-crontab
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64247r953642_fix" /><check system="C-64339r953641_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that an audit event is generated for any successful/unsuccessful use of the "crontab" command by using the following command:
$ sudo auditctl -l | grep -w crontab
-a always,exit -S all -F path=/usr/bin/crontab -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-crontab
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260611"><title>SRG-OS-000477-GPOS-00222</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260611r991586_rule" weight="10.0" severity="medium"><version>UBTU-22-654045</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful attempts to use the fdisk command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64248r953645_fix">Configure Ubuntu 22.04 LTS to audit the execution of the partition management program "fdisk".
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /usr/sbin/fdisk -p x -k fdisk
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64248r953645_fix" /><check system="C-64340r953644_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to audit the execution of the partition management program "fdisk" by using the following command:
$ sudo auditctl -l | grep fdisk
-w /usr/sbin/fdisk -p x -k fdisk
If the command does not return a line, or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260612"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260612r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654050</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the gpasswd command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64249r953648_fix">Configure the audit system to generate an audit event for any successful/unsuccessful uses of the "gpasswd" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/gpasswd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-gpasswd
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64249r953648_fix" /><check system="C-64341r953647_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that an audit event is generated for any successful/unsuccessful use of the "gpasswd" command by using the following command:
$ sudo auditctl -l | grep -w gpasswd
-a always,exit -S all -F path=/usr/bin/gpasswd -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-gpasswd
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260613"><title>SRG-OS-000477-GPOS-00222</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260613r991586_rule" weight="10.0" severity="medium"><version>UBTU-22-654055</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful attempts to use the kmod command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64250r953651_fix">Configure Ubuntu 22.04 LTS to audit the execution of the module management program "kmod".
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /bin/kmod -p x -k modules
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64250r953651_fix" /><check system="C-64342r953650_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS is configured to audit the execution of the module management program "kmod" by using the following command:
$ sudo auditctl -l | grep kmod
-w /bin/kmod -p x -k module
If the command does not return a line, or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260614"><title>SRG-OS-000477-GPOS-00222</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260614r991586_rule" weight="10.0" severity="medium"><version>UBTU-22-654060</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful attempts to use modprobe command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64251r953654_fix">Configure Ubuntu 22.04 LTS to audit the execution of the module management program "modprobe".
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /sbin/modprobe -p x -k modules
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64251r953654_fix" /><check system="C-64343r953653_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify if Ubuntu 22.04 LTS is configured to audit the execution of the module management program "modprobe" with the following command:
$ sudo auditctl -l | grep /sbin/modprobe
-w /sbin/modprobe -p x -k modules
If the command does not return a line, or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260615"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260615r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654065</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the mount command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64252r953657_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "mount" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/mount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-mount
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64252r953657_fix" /><check system="C-64344r953656_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records upon successful/unsuccessful attempts to use the "mount" command by using the following command:
$ sudo auditctl -l | grep /usr/bin/mount
-a always,exit -S all -F path=/usr/bin/mount -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-mount
If the command does not return lines that match the example or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260616"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260616r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654070</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the newgrp command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64253r953660_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "newgrp" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/newgrp -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64253r953660_fix" /><check system="C-64345r953659_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "newgrp" command by using the following command:
$ sudo auditctl -l | grep newgrp
-a always,exit -S all -F path=/usr/bin/newgrp -F perm=x -F auid>=1000 -F auid!=-1 -F key=priv_cmd
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260617"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260617r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654075</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the pam_timestamp_check command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64254r953663_fix">Configure the audit system to generate an audit event for any successful/unsuccessful uses of the "pam_timestamp_check" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/sbin/pam_timestamp_check -F perm=x -F auid>=1000 -F auid!=unset -k privileged-pam_timestamp_check
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64254r953663_fix" /><check system="C-64346r953662_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that an audit event is generated for any successful/unsuccessful use of the "pam_timestamp_check" command by using the following command:
$ sudo auditctl -l | grep -w pam_timestamp_check
-a always,exit -S all -F path=/usr/sbin/pam_timestamp_check -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-pam_timestamp_check
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260618"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260618r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654080</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the passwd command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64255r953666_fix">Configure the audit system to generate an audit event for any successful/unsuccessful uses of the "passwd" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/passwd -F perm=x -F auid>=1000 -F auid!=unset -k privileged-passwd
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64255r953666_fix" /><check system="C-64347r953665_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that an audit event is generated for any successful/unsuccessful use of the "passwd" command by using the following command:
$ sudo auditctl -l | grep -w passwd
-a always,exit -S all -F path=/usr/bin/passwd -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-passwd
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key" allows for specifying an arbitrary identifier, and the string after it does not need to match the example output above.</check-content></check></Rule></Group><Group id="V-260619"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260619r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654085</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the setfacl command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64256r953669_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "setfacl" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/setfacl -F perm=x -F auid>=1000 -F auid!=unset -k perm_chng
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64256r953669_fix" /><check system="C-64348r953668_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "setfacl" command by using the following command:
$ sudo auditctl -l | grep setfacl
-a always,exit -S all -F path=/usr/bin/setfacl -F perm=x -F auid>=1000 -F auid!=-1 -F key=perm_chng
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260620"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260620r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654090</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the ssh-agent command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64257r953672_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "ssh-agent" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/ssh-agent -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64257r953672_fix" /><check system="C-64349r953671_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "ssh-agent" command by using the following command:
$ sudo auditctl -l | grep /usr/bin/ssh-agent
-a always,exit -S all -F path=/usr/bin/ssh-agent -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-ssh
If the command does not return lines that match the example or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260621"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260621r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654095</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the ssh-keysign command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64258r953675_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "ssh-keysign" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/lib/openssh/ssh-keysign -F perm=x -F auid>=1000 -F auid!=unset -k privileged-ssh
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64258r953675_fix" /><check system="C-64350r953674_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "ssh-keysign" command by using the following command:
$ sudo auditctl -l | grep ssh-keysign
-a always,exit -S all -F path=/usr/lib/openssh/ssh-keysign -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-ssh
If the command does not return lines that match the example or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260622"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260622r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654100</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the su command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64259r953678_fix">Configure Ubuntu 22.04 LTS to generate audit records when successful/unsuccessful attempts to use the "su" command occur.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/bin/su -F perm=x -F auid>=1000 -F auid!=unset -k privileged-priv_change
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64259r953678_fix" /><check system="C-64351r953677_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records upon successful/unsuccessful attempts to use the "su" command by using the following command:
$ sudo auditctl -l | grep /bin/su
-a always,exit -S all -F path=/bin/su -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-priv_change
If the command does not return lines that match the example or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260623"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260623r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654105</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the sudo command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64260r953681_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "sudo" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/sudo -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64260r953681_fix" /><check system="C-64352r953680_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that an audit event is generated for any successful/unsuccessful use of the "sudo" command by using the following command:
$ sudo auditctl -l | grep /usr/bin/sudo
-a always,exit -S all -F path=/usr/bin/sudo -F perm=x -F auid>=1000 -F auid!=-1 -F key=priv_cmd
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260624"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260624r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654110</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the sudoedit command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64261r953684_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "sudoedit" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules":
-a always,exit -F path=/usr/bin/sudoedit -F perm=x -F auid>=1000 -F auid!=unset -k priv_cmd
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64261r953684_fix" /><check system="C-64353r953683_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "sudoedit" command by using the following command:
$ sudo auditctl -l | grep /usr/bin/sudoedit
-a always,exit -S all -F path=/usr/bin/sudoedit -F perm=x -F auid>=1000 -F auid!=-1 -F key=priv_cmd
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260625"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260625r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654115</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the umount command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64262r953687_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "umount" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/bin/umount -F perm=x -F auid>=1000 -F auid!=unset -k privileged-umount
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64262r953687_fix" /><check system="C-64354r953686_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify if Ubuntu 22.04 LTS generates audit records upon successful/unsuccessful attempts to use the "umount" command by using the following command:
$ sudo auditctl -l | grep /usr/bin/umount
-a always,exit -S all -F path=/usr/bin/umount -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-umount
If the command does not return lines that match the example or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260626"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260626r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654120</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the unix_update command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64263r953690_fix">Configure the audit system to generate an audit event for any successful/unsuccessful uses of the "unix_update" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/sbin/unix_update -F perm=x -F auid>=1000 -F auid!=unset -k privileged-unix-update
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64263r953690_fix" /><check system="C-64355r953689_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that an audit event is generated for any successful/unsuccessful use of the "unix_update" command by using the following command:
$ sudo auditctl -l | grep -w unix_update
-a always,exit -S all -F path=/sbin/unix_update -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-unix-update
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260627"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260627r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654125</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the usermod command.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64264r953693_fix">Configure the audit system to generate an audit event for any successful/unsuccessful uses of the "usermod" command.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F path=/usr/sbin/usermod -F perm=x -F auid>=1000 -F auid!=unset -k privileged-usermod
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64264r953693_fix" /><check system="C-64356r953692_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify that an audit event is generated for any successful/unsuccessful use of the "usermod" command by using the following command:
$ sudo auditctl -l | grep -w usermod
-a always,exit -S all -F path=/usr/sbin/usermod -F perm=x -F auid>=1000 -F auid!=-1 -F key=privileged-usermod
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260628"><title>SRG-OS-000004-GPOS-00004</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260628r958368_rule" weight="10.0" severity="medium"><version>UBTU-22-654130</version><title>Ubuntu 22.04 LTS must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/group.</title><description><VulnDiscussion>Once an attacker establishes access to a system, the attacker often attempts to create a persistent method of reestablishing access. One way to accomplish this is for the attacker to create an account. Auditing account creation actions provides logging that can be used for forensic purposes.
To address access requirements, many operating systems may be integrated with enterprise level authentication/access/auditing mechanisms that meet or exceed access control policy requirements.
Satisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000458-GPOS-00203, SRG-OS-000463-GPOS-00207, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000018</ident><ident system="http://cyber.mil/cci">CCI-000172</ident><ident system="http://cyber.mil/cci">CCI-001403</ident><ident system="http://cyber.mil/cci">CCI-001404</ident><ident system="http://cyber.mil/cci">CCI-001405</ident><ident system="http://cyber.mil/cci">CCI-002130</ident><fixtext fixref="F-64265r953696_fix">Configure Ubuntu 22.04 LTS to generate audit records for all account creations, modifications, disabling, and termination events that affect "/etc/group".
Add or modify the following line to "/etc/audit/rules.d/stig.rules":
-w /etc/group -p wa -k usergroup_modification
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64265r953696_fix" /><check system="C-64357r953695_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for all account creations, modifications, disabling, and termination events that affect "/etc/group" by using the following command:
$ sudo auditctl -l | grep group
-w /etc/group -p wa -k usergroup_modification
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260629"><title>SRG-OS-000004-GPOS-00004</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260629r958368_rule" weight="10.0" severity="medium"><version>UBTU-22-654135</version><title>Ubuntu 22.04 LTS must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/gshadow.</title><description><VulnDiscussion>Once an attacker establishes access to a system, the attacker often attempts to create a persistent method of reestablishing access. One way to accomplish this is for the attacker to create an account. Auditing account creation actions provides logging that can be used for forensic purposes.
To address access requirements, many operating systems may be integrated with enterprise level authentication/access/auditing mechanisms that meet or exceed access control policy requirements.
Satisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000458-GPOS-00203, SRG-OS-000463-GPOS-00207, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000018</ident><ident system="http://cyber.mil/cci">CCI-000172</ident><ident system="http://cyber.mil/cci">CCI-001403</ident><ident system="http://cyber.mil/cci">CCI-001404</ident><ident system="http://cyber.mil/cci">CCI-001405</ident><ident system="http://cyber.mil/cci">CCI-002130</ident><fixtext fixref="F-64266r953699_fix">Configure Ubuntu 22.04 LTS to generate audit records for all account creations, modifications, disabling, and termination events that affect "/etc/gshadow".
Add or modify the following line to "/etc/audit/rules.d/stig.rules":
-w /etc/gshadow -p wa -k usergroup_modification
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64266r953699_fix" /><check system="C-64358r953698_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for all account creations, modifications, disabling, and termination events that affect "/etc/gshadow" by using the following command:
$ sudo auditctl -l | grep gshadow
-w /etc/gshadow -p wa -k usergroup_modification
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260630"><title>SRG-OS-000004-GPOS-00004</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260630r958368_rule" weight="10.0" severity="medium"><version>UBTU-22-654140</version><title>Ubuntu 22.04 LTS must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/opasswd.</title><description><VulnDiscussion>Once an attacker establishes access to a system, the attacker often attempts to create a persistent method of reestablishing access. One way to accomplish this is for the attacker to create an account. Auditing account creation actions provides logging that can be used for forensic purposes.
To address access requirements, many operating systems may be integrated with enterprise level authentication/access/auditing mechanisms that meet or exceed access control policy requirements.
Satisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000458-GPOS-00203, SRG-OS-000463-GPOS-00207, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000018</ident><ident system="http://cyber.mil/cci">CCI-000172</ident><ident system="http://cyber.mil/cci">CCI-001403</ident><ident system="http://cyber.mil/cci">CCI-001404</ident><ident system="http://cyber.mil/cci">CCI-001405</ident><ident system="http://cyber.mil/cci">CCI-002130</ident><fixtext fixref="F-64267r953702_fix">Configure Ubuntu 22.04 LTS to generate audit records for all account creations, modifications, disabling, and termination events that affect "/etc/security/opasswd".
Add or modify the following line to "/etc/audit/rules.d/stig.rules":
-w /etc/security/opasswd -p wa -k usergroup_modification
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64267r953702_fix" /><check system="C-64359r953701_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for all account creations, modifications, disabling, and termination events that affect "/etc/security/opasswd" by using the following command:
$ sudo auditctl -l | grep opasswd
-w /etc/security/opasswd -p wa -k usergroup_modification
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260631"><title>SRG-OS-000004-GPOS-00004</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260631r958368_rule" weight="10.0" severity="medium"><version>UBTU-22-654145</version><title>Ubuntu 22.04 LTS must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/passwd.</title><description><VulnDiscussion>Once an attacker establishes access to a system, the attacker often attempts to create a persistent method of reestablishing access. One way to accomplish this is for the attacker to create an account. Auditing account creation actions provides logging that can be used for forensic purposes.
To address access requirements, many operating systems may be integrated with enterprise level authentication/access/auditing mechanisms that meet or exceed access control policy requirements.
Satisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000458-GPOS-00203, SRG-OS-000463-GPOS-00207, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000018</ident><ident system="http://cyber.mil/cci">CCI-000172</ident><ident system="http://cyber.mil/cci">CCI-001403</ident><ident system="http://cyber.mil/cci">CCI-001404</ident><ident system="http://cyber.mil/cci">CCI-001405</ident><ident system="http://cyber.mil/cci">CCI-002130</ident><fixtext fixref="F-64268r953705_fix">Configure Ubuntu 22.04 LTS to generate audit records for all account creations, modifications, disabling, and termination events that affect "/etc/passwd".
Add or modify the following line to "/etc/audit/rules.d/stig.rules":
-w /etc/passwd -p wa -k usergroup_modification
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64268r953705_fix" /><check system="C-64360r953704_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for all account creations, modifications, disabling, and termination events that affect "/etc/passwd" by using the following command:
$ sudo auditctl -l | grep passwd
-w /etc/passwd -p wa -k usergroup_modification
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260632"><title>SRG-OS-000004-GPOS-00004</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260632r958368_rule" weight="10.0" severity="medium"><version>UBTU-22-654150</version><title>Ubuntu 22.04 LTS must generate audit records for all account creations, modifications, disabling, and termination events that affect /etc/shadow.</title><description><VulnDiscussion>Once an attacker establishes access to a system, the attacker often attempts to create a persistent method of reestablishing access. One way to accomplish this is for the attacker to create an account. Auditing account creation actions provides logging that can be used for forensic purposes.
To address access requirements, many operating systems may be integrated with enterprise level authentication/access/auditing mechanisms that meet or exceed access control policy requirements.
Satisfies: SRG-OS-000004-GPOS-00004, SRG-OS-000239-GPOS-00089, SRG-OS-000240-GPOS-00090, SRG-OS-000241-GPOS-00091, SRG-OS-000303-GPOS-00120, SRG-OS-000458-GPOS-00203, SRG-OS-000463-GPOS-00207, SRG-OS-000476-GPOS-00221</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000018</ident><ident system="http://cyber.mil/cci">CCI-000172</ident><ident system="http://cyber.mil/cci">CCI-001403</ident><ident system="http://cyber.mil/cci">CCI-001404</ident><ident system="http://cyber.mil/cci">CCI-001405</ident><ident system="http://cyber.mil/cci">CCI-002130</ident><fixtext fixref="F-64269r953708_fix">Configure Ubuntu 22.04 LTS to generate audit records for all account creations, modifications, disabling, and termination events that affect "/etc/shadow".
Add or modify the following line to "/etc/audit/rules.d/stig.rules":
-w /etc/shadow -p wa -k usergroup_modification
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64269r953708_fix" /><check system="C-64361r953707_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for all account creations, modifications, disabling, and termination events that affect "/etc/shadow" by using the following command:
$ sudo auditctl -l | grep shadow
-w /etc/shadow -p wa -k usergroup_modification
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260633"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260633r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654155</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the chmod, fchmod, and fchmodat system calls.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
The system call rules are loaded into a matching engine that intercepts each syscall that all programs on the system makes. Therefore, it is very important to only use syscall rules when absolutely necessary since these affect performance. The more rules, the bigger the performance hit. The performance is helped, though, by combining syscalls into one rule whenever possible.
Satisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000462-GPOS-00206</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64270r953711_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "chmod", "fchmod", and "fchmodat" system calls.
Add or modify the following lines in the "/etc/audit/rules.d/stig.rules":
-a always,exit -F arch=b32 -S chmod,fchmod,fchmodat -F auid>=1000 -F auid!=unset -k perm_chng
-a always,exit -F arch=b64 -S chmod,fchmod,fchmodat -F auid>=1000 -F auid!=unset -k perm_chng
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64270r953711_fix" /><check system="C-64362r953710_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "chmod", "fchmod", and "fchmodat" system calls by using the following command:
$ sudo auditctl -l | grep chmod
-a always,exit -F arch=b32 -S chmod,fchmod,fchmodat -F auid>=1000 -F auid!=-1 -F key=perm_chng
-a always,exit -F arch=b64 -S chmod,fchmod,fchmodat -F auid>=1000 -F auid!=-1 -F key=perm_chng
If the command does not return audit rules for the "chmod", "fchmod" and "fchmodat" syscalls or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260634"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260634r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654160</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the chown, fchown, fchownat, and lchown system calls.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
The system call rules are loaded into a matching engine that intercepts each syscall that all programs on the system makes. Therefore, it is very important to only use syscall rules when absolutely necessary since these affect performance. The more rules, the bigger the performance hit. The performance is helped, though, by combining syscalls into one rule whenever possible.
Satisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000462-GPOS-00206</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64271r953714_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "chown", "fchown", "fchownat", and "lchown" system calls.
Add or modify the following lines in the "/etc/audit/rules.d/stig.rules":
-a always,exit -F arch=b32 -S chown,fchown,fchownat,lchown -F auid>=1000 -F auid!=unset -k perm_chng
-a always,exit -F arch=b64 -S chown,fchown,fchownat,lchown -F auid>=1000 -F auid!=unset -k perm_chng
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64271r953714_fix" /><check system="C-64363r953713_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "chown", "fchown", "fchownat", and "lchown" system calls by using the following command:
$ sudo auditctl -l | grep chown
-a always,exit -F arch=b32 -S chown,fchown,fchownat,lchown -F auid>=1000 -F auid!=-1 -F key=perm_chng
-a always,exit -F arch=b64 -S chown,fchown,fchownat,lchown -F auid>=1000 -F auid!=-1 -F key=perm_chng
If the command does not return audit rules for the "chown", "fchown", "fchownat", and "lchown" syscalls or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260635"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260635r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654165</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the creat, open, openat, open_by_handle_at, truncate, and ftruncate system calls.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
The system call rules are loaded into a matching engine that intercepts each syscall that all programs on the system makes. Therefore, it is very important to only use syscall rules when absolutely necessary since these affect performance. The more rules, the bigger the performance hit. The performance is helped, though, by combining syscalls into one rule whenever possible.
Satisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000474-GPOS-00219</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64272r953717_fix">Configure the audit system to generate an audit event for any unsuccessful use of the "creat", "open", "openat", "open_by_handle_at", "truncate", and "ftruncate" system calls.
Add or modify the following lines in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F arch=b32 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access
-a always,exit -F arch=b32 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access
-a always,exit -F arch=b64 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=unset -k perm_access
-a always,exit -F arch=b64 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=unset -k perm_access
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64272r953717_fix" /><check system="C-64364r953716_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon unsuccessful attempts to use the "creat", "open", "openat", "open_by_handle_at", "truncate", and "ftruncate" system calls by using the following command:
$ sudo auditctl -l | grep 'open\|truncate\|creat'
-a always,exit -F arch=b32 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=-1 -F key=perm_access
-a always,exit -F arch=b32 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=-1 -F key=perm_access
-a always,exit -F arch=b64 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=-1 -F key=perm_access
-a always,exit -F arch=b64 -S creat,open,openat,open_by_handle_at,truncate,ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=-1 -F key=perm_access
If the command does not return audit rules for the "creat", "open", "openat", "open_by_handle_at", "truncate", and "ftruncate" syscalls or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260636"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260636r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654170</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the delete_module system call.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
Satisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000477-GPOS-00222</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64273r953720_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "delete_module" syscall.
Add or modify the following lines in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F arch=b32 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng
-a always,exit -F arch=b64 -S delete_module -F auid>=1000 -F auid!=unset -k module_chng
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64273r953720_fix" /><check system="C-64365r953719_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record for any successful/unsuccessful attempts to use the "delete_module" syscall by using the following command:
$ sudo auditctl -l | grep -w delete_module
-a always,exit -F arch=b32 -S delete_module -F auid>=1000 -F auid!=-1 -F key=module_chng
-a always,exit -F arch=b64 -S delete_module -F auid>=1000 -F auid!=-1 -F key=module_chng
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260637"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260637r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654175</version><title>Ubuntu 22.04 LTS must generate audit records for successful/unsuccessful uses of the init_module and finit_module system calls.</title><description><VulnDiscussion>Without generating audit records that are specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
The system call rules are loaded into a matching engine that intercepts each syscall that all programs on the system makes. Therefore, it is very important to only use syscall rules when absolutely necessary since these affect performance. The more rules, the bigger the performance hit. The performance is helped, though, by combining syscalls into one rule whenever possible.
Satisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000471-GPOS-00216</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64274r953723_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "init_module" and "finit_module" syscalls.
Add or modify the following lines in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F arch=b32 -S init_module,finit_module -F auid>=1000 -F auid!=unset -k module_chng
-a always,exit -F arch=b64 -S init_module,finit_module -F auid>=1000 -F auid!=unset -k module_chng
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64274r953723_fix" /><check system="C-64366r953722_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record for any successful/unsuccessful attempts to use the "init_module" and "finit_module" syscalls by using the following command:
$ sudo auditctl -l | grep init_module
-a always,exit -F arch=b32 -S init_module,finit_module -F auid>=1000 -F auid!=-1 -F key=module_chng
-a always,exit -F arch=b64 -S init_module,finit_module -F auid>=1000 -F auid!=-1 -F key=module_chng
If the command does not return audit rules for the "init_module" and "finit_module" syscalls or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260638"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260638r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654180</version><title>Ubuntu 22.04 LTS must generate audit records for any use of the setxattr, fsetxattr, lsetxattr, removexattr, fremovexattr, and lremovexattr system calls.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
The system call rules are loaded into a matching engine that intercepts each syscall that all programs on the system makes. Therefore, it is very important to only use syscall rules when absolutely necessary since these affect performance. The more rules, the bigger the performance hit. The performance is helped, though, by combining syscalls into one rule whenever possible.
Satisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000462-GPOS-00206</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64275r953726_fix">Configure the audit system to generate an audit event for any successful/unsuccessful use of the "setxattr", "fsetxattr", "lsetxattr", "removexattr", "fremovexattr", and "lremovexattr" system calls.
Add or modify the following lines in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F arch=b32 -S setxattr,fsetxattr,lsetxattr,removexattr,fremovexattr,lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod
-a always,exit -F arch=b32 -S setxattr,fsetxattr,lsetxattr,removexattr,fremovexattr,lremovexattr -F auid=0 -k perm_mod
-a always,exit -F arch=b64 -S setxattr,fsetxattr,lsetxattr,removexattr,fremovexattr,lremovexattr -F auid>=1000 -F auid!=unset -k perm_mod
-a always,exit -F arch=b64 -S setxattr,fsetxattr,lsetxattr,removexattr,fremovexattr,lremovexattr -F auid=0 -k perm_mod
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64275r953726_fix" /><check system="C-64367r953725_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful attempts to use the "setxattr", "fsetxattr", "lsetxattr", "removexattr", "fremovexattr", and "lremovexattr" system calls by using the following command:
$ sudo auditctl -l | grep xattr
-a always,exit -F arch=b32 -S setxattr,fsetxattr,lsetxattr,removexattr,fremovexattr,lremovexattr -F auid>=1000 -F auid!=-1 -F key=perm_mod
-a always,exit -F arch=b32 -S setxattr,fsetxattr,lsetxattr,removexattr,fremovexattr,lremovexattr -F auid=0 -k perm_mod
-a always,exit -F arch=b64 -S setxattr,fsetxattr,lsetxattr,removexattr,fremovexattr,lremovexattr -F auid>=1000 -F auid!=-1 -F key=perm_mod
-a always,exit -F arch=b64 -S setxattr,fsetxattr,lsetxattr,removexattr,fremovexattr,lremovexattr -F auid=0 -k perm_mod
If the command does not return audit rules for the "setxattr", "fsetxattr", "lsetxattr", "removexattr", "fremovexattr" and "lremovexattr" syscalls or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260639"><title>SRG-OS-000468-GPOS-00212</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260639r991577_rule" weight="10.0" severity="medium"><version>UBTU-22-654185</version><title>Ubuntu 22.04 LTS must generate audit records for any successful/unsuccessful use of unlink, unlinkat, rename, renameat, and rmdir system calls.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
The system call rules are loaded into a matching engine that intercepts each syscall that all programs on the system makes. Therefore, it is very important to only use syscall rules when absolutely necessary since these affect performance. The more rules, the bigger the performance hit. The performance is helped, though, by combining syscalls into one rule whenever possible.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64276r953729_fix">Configure the audit system to generate audit events for any successful/unsuccessful use of "unlink", "unlinkat", "rename", "renameat", and "rmdir" system calls.
Add or modify the following lines in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F arch=b64 -S unlink,unlinkat,rename,renameat,rmdir -F auid>=1000 -F auid!=unset -k delete
-a always,exit -F arch=b32 -S unlink,unlinkat,rename,renameat,rmdir -F auid>=1000 -F auid!=unset -k delete
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64276r953729_fix" /><check system="C-64368r953728_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for any successful/unsuccessful use of "unlink", "unlinkat", "rename", "renameat", and "rmdir" system calls by using the following command:
$ sudo auditctl -l | grep 'unlink\|rename\|rmdir'
-a always,exit -F arch=b64 -S unlink,unlinkat,rename,renameat,rmdir -F auid>=1000 -F auid!=-1 -F key=delete
-a always,exit -F arch=b32 -S unlink,unlinkat,rename,renameat,rmdir -F auid>=1000 -F auid!=-1 -F key=delete
If the command does not return audit rules for the "unlink", "unlinkat", "rename", "renameat", and "rmdir" syscalls or the lines are commented out, this is a finding.
Note: The "key" allows for specifying an arbitrary identifier, and the string after it does not need to match the example output above.</check-content></check></Rule></Group><Group id="V-260640"><title>SRG-OS-000480-GPOS-00227</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260640r991589_rule" weight="10.0" severity="medium"><version>UBTU-22-654190</version><title>Ubuntu 22.04 LTS must generate audit records for all events that affect the systemd journal files.</title><description><VulnDiscussion>Once an attacker establishes access to a system, the attacker often attempts to create a persistent method of reestablishing access. One way to accomplish this is for the attacker to modify system level binaries and their operation. Auditing the systemd journal files provides logging that can be used for forensic purposes.
To address access requirements, many operating systems may be integrated with enterprise level authentication/access/auditing mechanisms that meet or exceed access control policy requirements.</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000366</ident><fixtext fixref="F-64277r953732_fix">Configure Ubuntu 22.04 LTS to generate audit records for events that affect "/var/log/journal".
Add or modify the following line to "/etc/audit/rules.d/stig.rules":
-w /var/log/journal -p wa -k systemd_journal
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64277r953732_fix" /><check system="C-64369r953731_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for all events that affect "/var/log/journal" by using the following command:
$ sudo auditctl -l | grep journal
-w /var/log/journal -p wa -k systemd_journal
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260641"><title>SRG-OS-000472-GPOS-00217</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260641r991581_rule" weight="10.0" severity="medium"><version>UBTU-22-654195</version><title>Ubuntu 22.04 LTS must generate audit records for the /var/log/btmp file.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64278r953735_fix">Configure the audit system to generate audit events showing start and stop times for user access via the "/var/log/btmp file".
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /var/log/btmp -p wa -k logins
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64278r953735_fix" /><check system="C-64370r953734_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records showing start and stop times for user access to the system via the "/var/log/btmp" file by using the following command:
$ sudo auditctl -l | grep '/var/log/btmp'
-w /var/log/btmp -p wa -k logins
If the command does not return a line matching the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260642"><title>SRG-OS-000472-GPOS-00217</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260642r991581_rule" weight="10.0" severity="medium"><version>UBTU-22-654200</version><title>Ubuntu 22.04 LTS must generate audit records for the /var/log/wtmp file.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64279r953738_fix">Configure the audit system to generate audit events showing start and stop times for user access via the "/var/log/wtmp" file.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /var/log/wtmp -p wa -k logins
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64279r953738_fix" /><check system="C-64371r953737_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records showing start and stop times for user access to the system via the "/var/log/wtmp" file by using the following command:
$ sudo auditctl -l | grep '/var/log/wtmp'
-w /var/log/wtmp -p wa -k logins
If the command does not return a line matching the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260643"><title>SRG-OS-000472-GPOS-00217</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260643r991581_rule" weight="10.0" severity="medium"><version>UBTU-22-654205</version><title>Ubuntu 22.04 LTS must generate audit records for the /var/run/utmp file.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64280r953741_fix">Configure the audit system to generate audit events showing start and stop times for user access via the "/var/run/utmp" file.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /var/run/utmp -p wa -k logins
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64280r953741_fix" /><check system="C-64372r953740_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records showing start and stop times for user access to the system via the "/var/run/utmp" file by using the following command:
$ sudo auditctl -l | grep '/var/run/utmp'
-w /var/run/utmp -p wa -k logins
If the command does not return a line matching the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260644"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260644r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654210</version><title>Ubuntu 22.04 LTS must generate audit records for the use and modification of faillog file.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
Satisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64281r953744_fix">Configure the audit system to generate an audit event for any successful/unsuccessful modifications to the "faillog" file.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /var/log/faillog -p wa -k logins
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64281r953744_fix" /><check system="C-64373r953743_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record upon successful/unsuccessful modifications to the "faillog" file by using the following command:
$ sudo auditctl -l | grep faillog
-w /var/log/faillog -p wa -k logins
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260645"><title>SRG-OS-000064-GPOS-00033</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260645r958446_rule" weight="10.0" severity="medium"><version>UBTU-22-654215</version><title>Ubuntu 22.04 LTS must generate audit records for the use and modification of the lastlog file.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).
Satisfies: SRG-OS-000064-GPOS-00033, SRG-OS-000470-GPOS-00214, SRG-OS-000473-GPOS-00218</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64282r953747_fix">Configure the audit system to generate an audit event for any successful/unsuccessful modifications to the "lastlog" file.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /var/log/lastlog -p wa -k logins
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64282r953747_fix" /><check system="C-64374r953746_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates an audit record when successful/unsuccessful modifications to the "lastlog" file occur by using the following command:
$ sudo auditctl -l | grep lastlog
-w /var/log/lastlog -p wa -k logins
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260646"><title>SRG-OS-000466-GPOS-00210</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260646r991575_rule" weight="10.0" severity="medium"><version>UBTU-22-654220</version><title>Ubuntu 22.04 LTS must generate audit records when successful/unsuccessful attempts to modify the /etc/sudoers file occur.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64283r953750_fix">Configure Ubuntu 22.04 LTS to generate audit records for all modifications that affect "/etc/sudoers".
Add or modify the following line to "/etc/audit/rules.d/stig.rules":
-w /etc/sudoers -p wa -k privilege_modification
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64283r953750_fix" /><check system="C-64375r953749_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for all modifications that affect "/etc/sudoers" by using the following command:
$ sudo auditctl -l | grep sudoers
-w /etc/sudoers -p wa -k privilege_modification
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260647"><title>SRG-OS-000466-GPOS-00210</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260647r991575_rule" weight="10.0" severity="medium"><version>UBTU-22-654225</version><title>Ubuntu 22.04 LTS must generate audit records when successful/unsuccessful attempts to modify the /etc/sudoers.d directory occur.</title><description><VulnDiscussion>Without generating audit records specific to the security and mission needs of the organization, it would be difficult to establish, correlate, and investigate the events relating to an incident or identify those responsible for one.
Audit records can be generated from various components within the information system (e.g., module or policy filter).</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><fixtext fixref="F-64284r953753_fix">Configure Ubuntu 22.04 LTS to generate audit records for all modifications that affect "/etc/sudoers.d" directory.
Add or modify the following line to "/etc/audit/rules.d/stig.rules":
-w /etc/sudoers.d -p wa -k privilege_modification
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. he <keyname> does not need to match the example above.</fixtext><fix id="F-64284r953753_fix" /><check system="C-64376r953752_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS generates audit records for all modifications that affect "/etc/sudoers.d" directory by using the following command:
$ sudo auditctl -l | grep sudoers.d
-w /etc/sudoers.d -p wa -k privilege_modification
If the command does not return a line that matches the example or the line is commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260648"><title>SRG-OS-000326-GPOS-00126</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260648r958730_rule" weight="10.0" severity="medium"><version>UBTU-22-654230</version><title>Ubuntu 22.04 LTS must prevent all software from executing at higher privilege levels than users executing the software and the audit system must be configured to audit the execution of privileged functions.</title><description><VulnDiscussion>In certain situations, software applications/programs need to execute with elevated privileges to perform required functions. However, if the privileges required for execution are at a higher level than the privileges assigned to organizational users invoking such applications/programs, those users are indirectly provided with greater privileges than assigned by the organizations.
Some programs and processes are required to operate at a higher privilege level and therefore should be excluded from the organization-defined software list after review.
Satisfies: SRG-OS-000326-GPOS-00126, SRG-OS-000327-GPOS-00127</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002233</ident><ident system="http://cyber.mil/cci">CCI-002234</ident><fixtext fixref="F-64285r953756_fix">Configure Ubuntu 22.04 LTS to audit the execution of all privileged functions.
Add or modify the following lines in the "/etc/audit/rules.d/stig.rules" file:
-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -k execpriv
-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -k execpriv
-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -k execpriv
-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -k execpriv
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64285r953756_fix" /><check system="C-64377r953755_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS audits the execution of privilege functions by auditing the "execve" system call by using the following command:
$ sudo auditctl -l | grep execve
-a always,exit -F arch=b64 -S execve -C uid!=euid -F euid=0 -F key=execpriv
-a always,exit -F arch=b64 -S execve -C gid!=egid -F egid=0 -F key=execpriv
-a always,exit -F arch=b32 -S execve -C uid!=euid -F euid=0 -F key=execpriv
-a always,exit -F arch=b32 -S execve -C gid!=egid -F egid=0 -F key=execpriv
If the command does not return lines that match the example or the lines are commented out, this is a finding.
Note: The "key=" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260649"><title>SRG-OS-000392-GPOS-00172</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260649r986298_rule" weight="10.0" severity="medium"><version>UBTU-22-654235</version><title>Ubuntu 22.04 LTS must generate audit records for privileged activities, nonlocal maintenance, diagnostic sessions and other system-level access.</title><description><VulnDiscussion>If events associated with nonlocal administrative access or diagnostic sessions are not logged, a major tool for assessing and investigating attacks would not be available.
This requirement addresses auditing-related issues associated with maintenance tools used specifically for diagnostic and repair actions on organizational information systems.
Nonlocal maintenance and diagnostic activities are those activities conducted by individuals communicating through a network, either an external network (e.g., the internet) or an internal network. Local maintenance and diagnostic activities are those activities carried out by individuals physically present at the information system or information system component and not communicating across a network connection.
This requirement applies to hardware/software diagnostic test equipment or tools. This requirement does not cover hardware/software components that may support information system maintenance, yet are a part of the system, for example, the software implementing "ping," "ls," "ipconfig," or the hardware and software implementing the monitoring port of an Ethernet switch.
Satisfies: SRG-OS-000392-GPOS-00172, SRG-OS-000471-GPOS-00215</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-000172</ident><ident system="http://cyber.mil/cci">CCI-002884</ident><ident system="http://cyber.mil/cci">CCI-004188</ident><fixtext fixref="F-64286r953759_fix">Configure Ubuntu 22.04 LTS to audit activities performed during nonlocal maintenance and diagnostic sessions.
Add or modify the following line in the "/etc/audit/rules.d/stig.rules" file:
-w /var/log/sudo.log -p wa -k maintenance
To reload the rules file, issue the following command:
$ sudo augenrules --load
Note: The "-k <keyname>" at the end of the line gives the rule a unique meaning to help during an audit investigation. The <keyname> does not need to match the example above.</fixtext><fix id="F-64286r953759_fix" /><check system="C-64378r953758_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify Ubuntu 22.04 LTS audits activities performed during nonlocal maintenance and diagnostic sessions by using the following command:
$ sudo auditctl -l | grep sudo.log
-w /var/log/sudo.log -p wa -k maintenance
If the command does not return lines that match the example or the lines are commented out, this is a finding.
Note: The "-k" value is arbitrary and can be different from the example output above.</check-content></check></Rule></Group><Group id="V-260650"><title>SRG-OS-000396-GPOS-00176</title><description><GroupDescription></GroupDescription></description><Rule id="SV-260650r987791_rule" weight="10.0" severity="high"><version>UBTU-22-671010</version><title>Ubuntu 22.04 LTS must implement NIST FIPS-validated cryptography to protect classified information and for the following: To provision digital signatures, to generate cryptographic hashes, and to protect unclassified information requiring confidentiality and cryptographic protection in accordance with applicable federal laws, Executive Orders, directives, policies, regulations, and standards.</title><description><VulnDiscussion>Use of weak or untested encryption algorithms undermines the purposes of utilizing encryption to protect data. The operating system must implement cryptographic modules adhering to the higher standards approved by the federal government since this provides assurance they have been tested and validated.
Satisfies: SRG-OS-000396-GPOS-00176, SRG-OS-000478-GPOS-00223</VulnDiscussion><FalsePositives></FalsePositives><FalseNegatives></FalseNegatives><Documentable>false</Documentable><Mitigations></Mitigations><SeverityOverrideGuidance></SeverityOverrideGuidance><PotentialImpacts></PotentialImpacts><ThirdPartyTools></ThirdPartyTools><MitigationControl></MitigationControl><Responsibility></Responsibility><IAControls></IAControls></description><reference><dc:title>DPMS Target Canonical Ubuntu 22.04 LTS</dc:title><dc:publisher>DISA</dc:publisher><dc:type>DPMS Target</dc:type><dc:subject>Canonical Ubuntu 22.04 LTS</dc:subject><dc:identifier>5594</dc:identifier></reference><ident system="http://cyber.mil/cci">CCI-002450</ident><fixtext fixref="F-64287r953762_fix">Configure Ubuntu 22.04 LTS to run in FIPS mode. Add "fips=1" to the kernel parameter during Ubuntu 22.04 LTS install.
Enabling a FIPS mode on a pre-existing system involves a number of modifications to Ubuntu 22.04 LTS. Refer to the Ubuntu Pro security certification documentation for instructions.
A subscription to the "Ubuntu Pro" plan is required to obtain the FIPS Kernel cryptographic modules and enable FIPS.
Note: Ubuntu Pro security certification instructions can be found at: https://ubuntu.com/security/certifications/docs/fips-enablement</fixtext><fix id="F-64287r953762_fix" /><check system="C-64379r953761_chk"><check-content-ref href="Canonical_Ubuntu_22.04_LTS_STIG.xml" name="M" /><check-content>Verify the system is configured to run in FIPS mode by using the following command:
$ grep -i 1 /proc/sys/crypto/fips_enabled
1
If a value of "1" is not returned, this is a finding.</check-content></check></Rule></Group></Benchmark>
|