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
|
################################################################################
# #
# Copyright (C) 2008-2014 LABBE Corentin <clabbe.montjoie@gmail.com>
#
# YASAT is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# YASAT is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with YASAT. If not, see <http://www.gnu.org/licenses/>.
# #
################################################################################
#
# The display function is originated from lynis Copyright 2007-2009, Michael Boelen (michael@rootkit.nl), The Netherlands
# Web site: http://www.rootkit.nl
#
#################################################################################
#
# Common functions for YASAT
#
#################################################################################
#
NORMAL="[0;39m"
WARNING="[1;31m"
YELLOW="[1;33m"
BLUE="[0;36m"
WHITE="[1;37m"
GREEN="[0;32m"
RED="[1;31m"
ORANGE="[0;33m"
NOIRGRAS="[1;39m"
#All results in orange/yellow is a optional warning
#All results in red must be corrected
################################################################################
################################################################################
print_color_chart()
{
echo "Color chart"
echo "$GREEN GREEN $NORMAL is for good configuration or information"
echo "$RED RED $NORMAL is for configuration that must be corrected"
echo "$ORANGE ORANGE $NORMAL is for optional configuration that can be done"
#ugly color, do not use:)
# echo "$YELLOW YELLOW $NORMAL is for optional configuration that can be done"
echo "$BLUE BLUE $NORMAL is for information"
}
################################################################################
################################################################################
Debug()
{
if [ $DEBUG -eq 1 ] ; then
ECHOCMD="echo -e"
if [ "`echo -e plop`" = '-e plop' ] ;then
#with /bin/sh or zsh no -e
ECHOCMD='echo'
fi
$ECHOCMD "$1"
fi
}
################################################################################
################################################################################
Display_error() {
echo "$1" >&2
}
################################################################################
################################################################################
Display()
{
Debug "DEBUG: Display begin"
if [ -z "$1" ];then
Display_error "ERROR: Display need at least one argument"
return 1;
fi
INDENT=0; TEXT=''; RESULT=''; COLOR=''; ADVICE=''
ECHOCMD="echo -e"
if [ "`echo -e plop`" = '-e plop' ] ;then
#with /bin/sh or zsh no -e
ECHOCMD='echo'
fi
while [ $# -ge 1 ]; do
case $1 in
--color)
shift
case $1 in
GREEN)
COLOR=$GREEN;HTMLCOLOR='GREEN'
if [ $PRINT_LEVEL -ge 2 ] ;then
return 1;
fi
YASAT_STAT_GREEN=$(($YASAT_STAT_GREEN+1))
;;
RED)
COLOR=$RED;HTMLCOLOR='RED'
YASAT_STAT_RED=$(($YASAT_STAT_RED+1))
;;
WHITE)
COLOR=$WHITE
;;
YELLOW)
COLOR=$YELLOW;HTMLCOLOR='YELLOW'
if [ $PRINT_LEVEL -ge 3 ];then
return 1;
fi
;;
ORANGE)
COLOR=$ORANGE;HTMLCOLOR='ORANGE'
if [ $PRINT_LEVEL -ge 3 ] ;then
return 1;
fi
YASAT_STAT_ORANGE=$(($YASAT_STAT_ORANGE+1))
;;
BLUE)
COLOR=$BLUE;HTMLCOLOR='BLUE'
if [ $PRINT_LEVEL -ge 1 ];then
return 1;
fi
;;
*)
Display_error "ERROR: unknown color $1 for Display()"
return 1;
;;
esac
;;
--indent)
shift
INDENT=$1
;;
--no-break | --nobreak | -nb)
ECHOCMD="echo -en"
;;
--result)
shift
if [ -z "$1" ];then
Display_error "ERROR : missing parameters to --result"
return 1;
fi
RESULT=$1
;;
--advice)
shift
if [ -z "$1" ];then
Display_error "ERROR : missing parameters to --advice"
return 1;
fi
ADVICE=$1
;;
--text)
shift
#clean possible double slash
TEXT="`echo $1 | sed 's,//,/,g'`"
if [ $HIDESR -ge 1 ];then
#I use | because it is the only separator that I will be sure to be not present
TEXT=`echo $1 | sed "s|$SCAN_ROOT||"`
fi
;;
--comp)
shift
if [ -z "$1" -o -z "$2" ];then
Display_error "ERROR : missing parameters to --comp"
return 1;
fi
Compliance --result "$1" --plugin "$2" --color "$HTMLCOLOR" --yasatresult "$RESULT"
shift
;;
*)
Display_error "INVALID OPTION (Display): $1, it is usually a bug of yasat (shame on me)"
exit 1
;;
esac
# Go to next parameter
shift
done
if [ -z "${ADVICE}" -o "${ADVICE}" = 'NONE' ] ;then
ADVICEVALUE=''
else
ADVICEVALUE="`grep ${ADVICE}= ${YASAT_ROOT}/yasat.advices | cut -d\= -f2-`"
if [ -z "$ADVICEVALUE" ] ;then
Display --indent 2 --text "BUG ADVICEVALUE is empty for ${ADVICE}" --result WARNING --color RED --advice YASAT_BUG
fi
# if [ -z "`echo ${RESULT} | grep -vEi 'warning$|found$'`" ] ;then
# echo "= ${TEXT}" >> $REPORT_OUTPUT
# else
echo "= ${TEXT} Result=${RESULT}" >> $REPORT_OUTPUT
# fi
echo " $ADVICEVALUE" >> $REPORT_OUTPUT
report_add "${ADVICE}" TEXT $REPORT_OUTPUT
fi
if [ ! -z "$HTML_OUTPUT" ] ;then
echo "<tr><td><b>${TEXT}</b></td><td> <FONT color=$HTMLCOLOR >${RESULT}</font></td><td>$ADVICEVALUE</td></tr>" >> "$HTML_OUTPUT"
if [ ! -z "$ADVICE" ] ;then
report_add "${ADVICE}" HTML "$HTML_OUTPUT"
fi
fi
if [ -z "${RESULT}" ];then
Display_error 'ERROR: No --result'
return 1;
fi
RESULTPART=" [ ${COLOR}${RESULT}${NORMAL} ]"
#size of result is 5 ( [ ]) + 8 (NOTFOUND/WARNING is the greatest result)
MAXLINESIZE=67
if [ ! -z "${TEXT}" ] ;then
# Display
LINESIZE=`echo "${TEXT}" | wc -c | tr -d ' '`
#SPACES=`expr ${MAXLINESIZE} - ${INDENT} - ${LINESIZE}`
SPACES=$((${MAXLINESIZE}-${INDENT}-${LINESIZE}))
if [ "$SPACES" -le 0 ] ;then
TEXT1=`echo ${TEXT} | cut -b -50`
LINESIZE=`echo "${TEXT1}" | wc -c | tr -d ' '`
#SPACES=`expr ${MAXLINESIZE} - ${INDENT} - ${LINESIZE}`
SPACES=$((${MAXLINESIZE}-${INDENT}-${LINESIZE}))
${ECHOCMD} "\033[${INDENT}C${TEXT1}\033[${SPACES}C${RESULTPART}\t${ADVICEVALUE}"
TEXT2=`echo ${TEXT} | cut -b 51-`
${ECHOCMD} "!!\033[${INDENT}C${TEXT2}"
else
#SPACES=`expr ${MAXLINESIZE} - ${INDENT} - ${LINESIZE}`
SPACES=$((${MAXLINESIZE}-${INDENT}-${LINESIZE}))
ADVICE_LINE_SIZE=0
if [ -z "${ADVICEVALUE}" ] ;then
FULLLINESIZE=$LINESIZE
else
ADVICE_LINE_SIZE=`echo "${ADVICEVALUE}" | wc -c | tr -d ' '`
#FULLLINESIZE=`expr ${ADVICE_LINE_SIZE} + 80`
FULLLINESIZE=$((${ADVICE_LINE_SIZE}+80))
fi
Debug "FULL $FULLLINESIZE $LINESIZE $SPACES adv=$ADVICE_LINE_SIZE COL_WIDTH=$COL_WIDTH"
if [ $FULLLINESIZE -gt $COL_WIDTH ]
then
${ECHOCMD} "\033[${INDENT}C${TEXT}\033[${SPACES}C${RESULTPART}"
${ECHOCMD} "\033[${INDENT}C\t-> ${ADVICEVALUE}"
else
${ECHOCMD} "\033[${INDENT}C${TEXT}\033[${SPACES}C${RESULTPART}\t${ADVICEVALUE}"
fi
fi
else
echo "ERROR: Display: Missing parameter --text"
return 1
fi
}
################################################################################
################################################################################
report_add()
{
if [ -z "$1" ]
then
Display --indent 2 --text "Missing argument #1 for report_add" --result WARNING --color RED --advice YASAT_BUG
return -1;
fi
if [ -z "$2" ]
then
Display --indent 2 --text "Missing argument #2 (type of output) for report_add" --result WARNING --color RED --advice YASAT_BUG
return -1;
fi
if [ -z "$3" ]
then
Display --indent 2 --text "Missing argument #3 (name of the output file) for report_add" --result WARNING --color RED --advice YASAT_BUG
return -1;
fi
Debug "report_add() called with $1 $2 $3"
# if [ $2 = "TEXT" ]
# then
# echo "" >> $3
# echo "== `cat yasat.advices |grep $ADVICE | cut -d\= -f2-` ==" >> $3
# echo "" >> $3
# fi
if [ $2 = "HTML" ]
then
echo "<tr><td>" >> "$3"
fi
ADVICEFOUND=0
LISTE_ADVICE="`ls ${PLUGINS_REP}/*.advice`"
cat $LISTE_ADVICE |
while read line
do
if [ "$line" = "ADVICEEND" ]
then
ADVICEFOUND=0
fi
#temporary
if [ ! -z "`echo $line |grep ^${ADVICELANG},`" ]
then
ADVICEFOUND=0
fi
if [ $ADVICEFOUND -eq 1 ]
then
if [ $2 = "TEXT" ]
then
echo " $line" | sed 's/<[^>]*>//g'>> "$3"
fi
if [ $2 = "HTML" ]
then
echo " $line" >> "$3"
echo "<br>" >> "$3"
fi
fi
if [ ! -z "`echo $line |grep ${ADVICELANG},$1`" ]
then
ADVICEFOUND=1
fi
done
if [ $2 = "HTML" ]
then
echo "<br></td><td></td><td></td></tr>" >> "$3"
fi
}
################################################################################
################################################################################
# Find where the apache config is
# No argument
Find_apache_conf_location()
{
for LOCATION in ${POSSIBLE_APACHE_CONFIG_LOCATION}
do
if [ -e "$SCAN_ROOT/${LOCATION}/apache.conf" -o -e "$SCAN_ROOT/${LOCATION}/httpd.conf" ] ;then
export APACHE_CONF_REP="`echo $SCAN_ROOT/${LOCATION} | sed 's,//*,/,g'`"
return 0;
fi
done
export APACHE_CONF_REP='NOTFOUND'
return 1;
}
################################################################################
################################################################################
#arg 1 is the path to file created by prepare_apache_conf()
#arg2 is the value found by FindValueOf
Check_apache_user()
{
export RESULTAT=''
export FINDERROR=''
if [ -z "$1" ] ; then
Display --indent 2 --text "Missing argument #1 for Check_apache_user" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
if [ -z "$2" ] ; then
Display --indent 2 --text "Missing argument #2 for Check_apache_user" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
if [ "`echo $2 | cut -b1`" = '$' ] ;then
Display --indent 2 --text "Apache user is a variable" --result INFO --color BLUE
#we ll find the value of this variable (only debian do that, and values can be found in /etc/apache2/envvars)
if [ -e /etc/apache2/envvars ] ; then
export RESULTAT="`grep APACHE_RUN_USER /etc/apache2/envvars | cut -d\= -f2`"
if [ -z "$RESULTAT" ] ; then
Display --indent 4 --text "Fallback to www-data" --result INFO --color BLUE
export RESULTAT='www-data'
fi
else
#TODO fallback to a common value
Display --indent 4 --text "Fallback to www-data" --result INFO --color BLUE
export RESULTAT='www-data'
fi
return 0;
Display --indent 2 --text "Apache user is " --result "$RESULTAT" --color BLUE
fi
export RESULTAT="$2"
}
################################################################################
################################################################################
#arg 1 is the path to file created by prepare_apache_conf()
#arg2 is the value found by FindValueOf
Check_apache_group()
{
export RESULTAT=''
export FINDERROR=''
if [ -z "$1" ] ; then
Display --indent 2 --text "Missing argument #1 for Check_apache_group" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
if [ -z "$2" ] ; then
Display --indent 2 --text "Missing argument #2 for Check_apache_group" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
if [ "`echo $2 | cut -b1`" = '$' ] ; then
Display --indent 2 --text "Apache group is a variable" --result INFO --color BLUE
#we ll find the value of this variable (only debian do that, and values can be found in /etc/apache2/envvars)
if [ -e /etc/apache2/envvars ] ; then
export RESULTAT="`grep APACHE_RUN_GROUP /etc/apache2/envvars | cut -d\= -f2`"
if [ -z "$RESULTAT" ] ; then
Display --indent 4 --text "Fallback to www-data" --result INFO --color BLUE
export RESULTAT='www-data'
fi
else
#TODO fallback to a common value
Display --indent 4 --text "Fallback to www-data" --result INFO --color BLUE
export RESULTAT='www-data'
fi
return 0;
Display --indent 2 --text "Apache group is " --result "$RESULTAT" --color BLUE
fi
export RESULTAT="$2"
}
################################################################################
################################################################################
#Find value of a directive separated by space "$2 value"
# #1 is the file to scan
# #2 is the directive to seek
# #3 is a sort of error reporting, possible values JUSTTEST(what a bad name choice) and MULTIPLE(allow multiple value)
# #4 is case sensitivity flag (nothing = sensitive, INSENSITIVE otherwise)
FindValueOf()
{
export RESULTAT=''
export FINDERROR=''
if [ -z "$1" ] ; then
Display --indent 2 --text "Missing argument FindValueOf() #1 (conf file to scan)" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
if [ -z "$2" ] ; then
Display --indent 2 --text "Missing argument FindValueOf #2 (directive to seek)" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
TEMP=""
Debug "Seek value of $2 in $1"
if [ ! -e "$1" ] ;then
echo "Error $1 do not exist"
return 1;
fi
#End of checks of parameters
DO_INSENSITIVE=0
if [ $# -ge 4 ] ; then
if [ "$4" = 'INSENSITIVE' ] ; then
DO_INSENSITIVE=1
fi
fi
if [ $DO_INSENSITIVE -ge 1 ] ; then
TEMP=`grep -rih "^[[:space:]]*$2[[:space:]]" $1 |grep -v '^[[:space:]]*#' |tr '[:upper:]' '[:lower:]' |sed "s/^[[:space:]]*$2[[:space:]]*//g" |sed 's/#.*//g'`
else
TEMP=`grep -rih "^[[:space:]]*$2[[:space:]]" $1 |grep -v '^[[:space:]]*#' |sed "s/^[[:space:]]*$2[[:space:]]*//g" |sed 's/#.*//g'`
fi
if [ -z "$TEMP" ] ;then
if [ $# -le 2 ] ; then
Display --indent 2 --text "No declaration of $2" --result WARNING --color RED
else
if [ -z "$3" ] ;then
Display --indent 2 --text "No declaration of $2" --result WARNING --color RED
return 1;
fi
fi
fi
if [ `echo "$TEMP" | wc -l` -ge 2 ];then
if [ "$3" = 'MULTIPLE' ] ; then
# export RESULTAT="`echo $TEMP | sed "s/[[:space:]]*$2[[:space:]]*//g"`"
export RESULTAT="$TEMP"
return 0;
fi
Display --indent 2 --text "Error multiple declarations of $2" --result WARNING --color RED --advice GLOBAL_MULTIPLE_DECLARATIONS
grep -ri "^[[:space:]]*$2[[:space:]]" $1 |grep -v '^[[:space:]]*#' |
while read line
do
echo " ==> $line"
done
FINDERROR='MULTIPLE'
RESULTAT=`echo "$TEMP" | sort | uniq | head -n 1 |sed "s/^[[:space:]]*$2[[:space:]]*//g" | sed 's/#.*//g'`
return 3;
fi
if [ `echo "$TEMP" | wc -l` -eq 0 ] ; then
if [ -z "$3" ] ;then
Display --indent 2 --text "No declaration of $2" --result WARNING --color RED
return 1;
fi
fi
if [ `echo "$TEMP" | wc -l` -eq 1 ] ;then
# export RESULTAT=`echo "${TEMP}" | sed "s/^[[:space:]]*[a-zA-Z0-9][a-zA-Z0-9]*[[:space:]]*//g" | sed 's/#.*//g'`
# export RESULTAT=`echo "${TEMP}" | sed "s/^[[:space:]]*$2[[:space:]]*//g" | sed 's/#.*//g'`
export RESULTAT="${TEMP}"
fi
return 0;
}
#========================================================================================
#========================================================================================
#Find value type "$2 = value"
FindValueOfEqual()
{
RESULTAT=''
if [ "$1x" = "x" ]
then
Display --indent 2 --text "Missing argument #1 (conf file to scan) of FindValueOfEqual" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
if [ "$2x" = "x" ]
then
Display --indent 2 --text "Missing argument #2 (directive to scan) of FindValueOfEqual" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
TEMP=""
Debug "cherche la valeur de $2 dans $1"
TEMP=`grep -rih "^[[:space:]]*$2[[:space:]]*=" $1`
if [ -z "$TEMP" ]
then
if [ "$3x" = "x" ]
then
Display --indent 2 --text "No declarations of $2 " --result WARNING --color RED
return 1;
fi
fi
if [ `echo "$TEMP" | wc -l` -ge 2 ]
then
Display --indent 2 --text "Error multiple declarations of $2 " --result WARNING --color RED --advice GLOBAL_MULTIPLE_DECLARATIONS
return 3;
fi
if [ `echo "$TEMP" | wc -l` -eq 0 ]
then
if [ "$3x" = "x" ]
then
Display --indent 2 --text "No declarations of $2 " --result WARNING --color RED
return 1;
fi
fi
if [ `echo "$TEMP" | wc -l` -eq 1 ]
then
export RESULTAT=`echo $TEMP | sed "s/^[[:space:]]*$2[[:space:]]*=[[:space:]]*//g" | sed 's/[#;].*//g'`
fi
return 0;
}
#========================================================================================
#========================================================================================
#Find value type "$2 : value"
FindValueOfDDot()
{
RESULTAT=''
if [ "$1x" = "x" ]
then
Display --indent 2 --text "Missing argument #1" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
if [ "$2x" = "x" ]
then
Display --indent 2 --text "Missing argument #2" --result WARNING --color RED --advice YASAT_BUG
return 2;
fi
TEMP=""
Debug "cherche la valeur de $2 dans $1"
TEMP=`grep -rih "^[[:space:]]*$2[[:space:]]*:" $1`
if [ -z "$TEMP" ]
then
if [ "$3x" = "x" ]
then
Display --indent 2 --text "No declarations of $2 " --result WARNING --color RED
return 1;
fi
fi
if [ `echo "$TEMP" | wc -l` -ge 2 ]
then
Display --indent 2 --text "Error multiple declarations of $2 " --result WARNING --color RED --advice GLOBAL_MULTIPLE_DECLARATIONS
return 3;
fi
if [ `echo "$TEMP" | wc -l` -eq 0 ]
then
if [ "$3x" = "x" ]
then
Display --indent 2 --text "No declarations of $2 " --result WARNING --color RED
return 1;
fi
fi
if [ `echo "$TEMP" | wc -l` -eq 1 ]
then
export RESULTAT=`echo $TEMP | sed "s/^[[:space:]]*$2[[:space:]]*:[[:space:]]*//g" | sed 's/#.*//g'`
fi
return 0;
}
################################################################################
################################################################################
CheckPresenceOf()
{
if [ "$1x" = "x" ]
then
Display --indent 2 --text "Missing argument #1" --result WARNING --color RED --advice YASAT_BUG
fi
if [ "$2x" = "x" ]
then
Display --indent 2 --text "Missing argument #1" --result WARNING --color RED --advice YASAT_BUG
fi
TEMP=""
Debug "cherche si $2 est dans $1"
TEMP=`grep -rih "^ *$2" $1`
if [ -z "$TEMP" ]
then
if [ "$3x" = "x" ]
then
Display --indent 2 --text "No declarations of $2 " --result WARNING --color RED
fi
fi
if [ `echo "$TEMP" | wc -l` -ge 2 ]
then
Display --indent 2 --text "Error multiple declarations of $2 " --result WARNING --color RED --advice GLOBAL_MULTIPLE_DECLARATIONS
fi
if [ `echo "$TEMP" | wc -l` -eq 0 ]
then
if [ "$3x" = "x" ]
then
Display --indent 2 --text "No declarations of $2 " --result WARNING --color RED
fi
fi
if [ `echo "$TEMP" | wc -l` -eq 1 ]
then
export RESULTAT=`echo $TEMP | sed "s/^.*$2\ //g" | cut -d\ -f1`
## echo "=>$RESULTAT<="
fi
}
################################################################################
################################################################################
Title()
{
if [ -z "$1" ]
then
echo "Error missing parameter for Title()"
return 1;
fi
echo "=== $1 ==="
if [ ! -z "$HTML_OUTPUT" ]
then
echo "</table><h1>$1</h1><br><table border='1'>" >> "$HTML_OUTPUT"
fi
if [ ! -z "$REPORT_OUTPUT" ]
then
echo '' >> $REPORT_OUTPUT
echo "=== $1 ===" >> $REPORT_OUTPUT
fi
}
################################################################################
################################################################################
#affiche_rouge()
#{
# echo -e "\033[31m $1 \033[0m "
#}
################################################################################
################################################################################
#affiche_vert()
#{
# echo -e "\033[0;32m $1 \033[0m "
#}
################################################################################
################################################################################
#affiche_orange()
#{
# echo -e "\033[0;33m $1 \033[0m "
#}
################################################################################
################################################################################
print_help()
{
echo "====================================="
echo "== YASAT =="
echo "== Yet Another Stupid Audit Tool =="
echo "== =="
echo "== Copyright (C) 2008-2014 =="
echo "== LABBE Corentin =="
echo "============================================================"
echo "|Available options |"
echo "| |"
echo "| --standard (-s) Do standard test ====="
echo "| --list (-l) List plugins available |"
echo "| --debug (-d) print debug informations |"
echo "| --help (-h) show this help ====="
echo "| --html (-H) export YASAT 's results in html |"
echo "| default to ~/yasat/yasat.html |"
echo "| --html-output PATH PATH is the name of html file to write |"
echo "| --advice-lang LANG LANG is the 2letter digit of the lang |"
echo "| (default is EN ) |"
echo "| --full-scan (-f) Do extra (long) tests (lots of find) |"
echo "| --plugins-dir PATH (-P) Set the path to the plugins to use |"
echo "| (default is ./plugins ) |"
echo "| --nopause (-a) Do not make a pause after plugin's end |"
echo "| --plugin PATH (-1) Just use the plugin pointed by PATH |"
echo "| --Plugin NAME (-p) Just use the plugin named NAME |"
echo "| --scanroot PATH (-r) Scan PATH instead of / (WorkInProgress)|"
echo "| --compliance type Check for a specific compliance. |"
echo "| type could be cce, nsa or all |"
echo "| --print-level X Just print infos equal or above the |"
echo "| level X (All = 0 (default), infos = 1 |"
echo "| warnings(orange) = 2, errors(red) = 3 |"
echo "| --skip Test(s) to skip, without the .test |"
echo "| (ex: --skip nfs,ntp) comma separated |"
echo "| --check-update Check if an update of YASAT exists |"
echo "| --send-support Same as --check-support but you will |"
echo "| send also your OS version as parameter |"
echo "| |"
echo "| Thanks for using YASAT. |"
echo "| |"
echo "===================================================================="
}
################################################################################
################################################################################
#compare 2 right
#example compare_right 666 640 YES said bad
#example compare_right 666 640 YES said bad
#example compare_right 400 640 NO said bad
#example compare_right 400 640 YES said good
#if arg #3 is NO, we want that $1 and $2 is strictly equal
compare_right()
{
# RESULTAT='ERROR'
if [ -z "$1" ] ; then
echo "ERROR compare_right() missing arg #1 (right to test)"
return 1;
fi
if [ -z "$2" ] ; then
echo "ERROR compare_right() missing arg #2 (right wanted)"
return 1;
fi
if [ -z "$3" ] ; then
echo "ERROR compare_right() missing arg #3 (accept or not more restricted right)"
return 1;
fi
WANT_U="`echo $2 | cut -c1`"
TEST_U="`echo $1 | cut -c1`"
WANT_G="`echo $2 | cut -c2`"
TEST_G="`echo $1 | cut -c2`"
WANT_O="`echo $2 | cut -c3`"
TEST_O="`echo $1 | cut -c3`"
# echo "$WANT_U vs $TEST_U"
if [ $TEST_U -gt $WANT_U ] ; then
return 2
else
if [ "$3" = 'NO' -a $TEST_U -lt $WANT_U ]; then
return 3
fi
fi
# echo "$WANT_G vs $TEST_G"
if [ $TEST_G -gt $WANT_G ] ; then
return 2
else
if [ "$3" = 'NO' -a $TEST_G -lt $WANT_G ]; then
return 3
fi
fi
# echo "$WANT_O vs $TEST_O"
if [ $TEST_O -gt $WANT_O ] ; then
return 2
else
if [ "$3" = 'NO' -a $TEST_O -lt $WANT_O ]; then
return 3
fi
fi
# RESULTAT='GOOD'
return 0
}
################################################################################
################################################################################
check_whiteliste_cert()
{
if [ ! -e "$1" ] ; then
echo "ERROR check_certificate() $1 do not exist"
return 1;
fi
FINGERPRINT="` openssl x509 -in \"$1\" -fingerprint -noout | cut -d\= -f2`"
if [ -z "`grep $FINGERPRINT certdata.txt`" ];then
echo "$FINGERPRINT $1 $line" >> xp-cert.out
else
echo "$FINGERPRINT $1 $line" >> xp-cert.in
fi
return 0;
TMPF=`mktemp`
openssl x509 -in "$1" -text > $TMPF
CERT_CN="`grep 'Subject:.*CN=' $TMPF | sed 's,.*CN=,,' |sed 's/,.*//' |sed 's,/emailAddress=.*,,'`"
if [ ! -z "$CERT_CN" ];then
echo "$CERT_CN" >> xp-cert.log
echo "Found xxx${CERT_CN}xxx"
if [ -z "`grep \"CN=${CERT_CN},\" certdata.txt`" ];then
echo "$line" >> xp-cert.out
else
echo "$line" >> xp-cert.in
fi
else
CERT_OU="`grep 'Subject:.*OU=' $TMPF | sed 's,.*\,[[:space:]]*OU=,,' | sed 's,/emailAddress=.*,,'`"
echo "$CERT_OU" >> xp-cert.log
echo "Found xxx${CERT_OU}xxx"
if [ -z "`grep \"OU=${CERT_OU},\" certdata.txt`" ];then
echo "$line" >> xp-cert.out
else
echo "$line" >> xp-cert.in
fi
fi
rm $TMPF
}
################################################################################
################################################################################
#864000s = 1DAY
#2592000 = 30DAYS
check_certificate()
{
RESULTAT='GOOD'
if [ ! -e "$1" ] ; then
echo "ERROR check_certificate() $1 do not exist"
return 1;
fi
if [ -z "$2" ] ; then
echo "ERROR check_certificate() missing #2 indent"
return 1;
fi
INDENT="$2"
CHECK_CERT_NAME="$1"
if [ ! -z "$3" ] ; then
CHECK_CERT_NAME="$3"
fi
#check_whiteliste_cert "$1"
#command not found return error code 127
openssl version> /dev/null 2>> $ERROR_OUTPUT_FILE
if [ $? -eq 127 ] ; then
Display --indent $INDENT --text "No openssl binary" --result WARNING --color RED
return 1;
fi
Display --indent $INDENT --text "Check $CHECK_CERT_NAME" --result INFO --color BLUE
INDENT=$(($INDENT+2))
$ECHOCMD -n "\033[${INDENT}C" && openssl x509 -in $1 -noout -enddate
BADTIME=1000000
for check_time in 0 604800 2592000
do
PERIOD_NAME='now'
if [ $check_time -eq 604800 ] ; then
PERIOD_NAME='week'
fi
if [ $check_time -eq 2592000 ] ; then
PERIOD_NAME='month'
fi
openssl x509 -in $1 -noout -checkend $check_time
if [ $? -eq 1 ] ; then
if [ $BADTIME -eq 1000000 ] ; then
if [ $check_time -eq 0 ] ; then
Display --indent $INDENT --text "Cert is outdated " --result WARNING --color RED --advice CERTIFICATE_OUTDATED
else
Display --indent $INDENT --text "Cert < 1 $PERIOD_NAME " --result WARNING --color RED --advice CERTIFICATE_OUTDATED
fi
RESULTAT='BAD'
BADTIME=$check_time
fi
fi
done
if [ $BADTIME -eq 1000000 ] ; then
Display --indent $INDENT --text "Cert expiration date > 1 month " --result OK --color GREEN
fi
#Get signature algorithm, we do not want MD5 hash http://www.win.tue.nl/hashclash/rogue-ca/
#md2WithRSAEncryption is bad
#md5WithRSAEncryption is bad
#sha1WithRSAEncryption is good
#sha256WithRSAEncryption is good
#ecdsa-with-SHA384 is ?
#dsaWithSHA1 ?
CERT_TMP_RESULT="${TEMPYASATDIR}/cert.out"
openssl x509 -in $1 -text > $CERT_TMP_RESULT
MINIMUM_KEY_SIZE=2048
SIGN_ALGO="`grep 'Signature Algorithm:' $CERT_TMP_RESULT | cut -d\: -f2 | sort | uniq`"
if [ ! -z "$SIGN_ALGO" ] ; then
for signalgo in $SIGN_ALGO
do
if [ ! -z "`echo $signalgo |grep -iE 'md5WithRSAEncryption|md2WithRSAEncryption'`" ] ; then
Display --indent $INDENT --text "Signature Algorithm: $signalgo" --result BAD --color RED --advice GLOBAL_UNSECURE_SIGN_ALGO
RESULTAT='BAD'
else
Display --indent $INDENT --text "Signature Algorithm: $signalgo" --result GOOD --color GREEN
fi
if [ "$signalgo" = 'ecdsa-with-SHA384' ] ; then
MINIMUM_KEY_SIZE=384
fi
done
fi
#get Public-Key: size
PUBKEYSIZE="`grep 'Public.Key:' $CERT_TMP_RESULT | cut -d\( -f2 | cut -d\ -f1`"
if [ -z "$PUBKEYSIZE" -a "$SIGN_ALGO" = 'ecdsa-with-SHA384' ] ; then
PUBKEYSIZE=384
fi
if [ -z "$PUBKEYSIZE" ] ; then
Display --indent $INDENT --text "Cannot get Key size" --result BUG --color RED
echo "Cannot read keysize in $1" >> $ERROR_OUTPUT_FILE
else
if [ "$PUBKEYSIZE" -lt $MINIMUM_KEY_SIZE ] ; then
Display --indent $INDENT --text "Key size: $PUBKEYSIZE" --result BAD --color RED --advice GLOBAL_RSA_KEY_SIZE
RESULTAT='BAD'
else
Display --indent $INDENT --text "Key size: $PUBKEYSIZE" --result GOOD --color GREEN
fi
fi
}
################################################################################
################################################################################
#check that a private key is well owned (generally root:root 600)
#check also if it is password protected
# arg1 is the file to be tested
# arg2 is the indent for display
# arg3 is the application type (optional)
# arg4 is the owner (optional)
# arg5 is the group (optional)
check_private_key()
{
if [ ! -e "$1" ] ; then
Display_error "ERROR: check_private_key() $1 do not exist"
return 1;
fi
if [ -z "$2" ] ; then
Display_error "ERROR: check_private_key() missing #2 (indent)"
return 1;
fi
#TODO 600 is perhaps a bit too much, some OS have a sslcert/sslpriv group (and also ldap, mail)
if [ $# -ge 3 ] ; then
if [ "$3" = 'ssh' ] ; then
check_a_file "$1" "$2" "$4" "$5" 600
else
if [ "$3" = 'sshd' ];then
SSH_KEYS_GROUP="$ROOTGROUP"
if [ "$LINUX_VERSION" = 'Fedora' ];then
SSH_KEYS_GROUP='ssh_keys'
fi
if [ -z "`grep ^${SSH_KEYS_GROUP}: $SCAN_ROOT/etc/group`" ];then
SSH_KEYS_GROUP="$ROOTGROUP"
fi
check_a_file "$1" "$2" root "$SSH_KEYS_GROUP" 600
else
check_a_file "$1" "$2" root "$ROOTGROUP" 600
fi
fi
fi
if [ ! -z "`grep 'SSH PRIVATE KEY FILE FORMAT 1.1' $1`" ];then
# I do not found a way to easily found informations stored in this format
Display --indent $2 --text "SSH PRIVATE KEY FILE FORMAT 1.1" --result INFO --color BLUE
return 0;
fi
Check_tool_presence openssl LOCAL
if [ $? -ne 0 ] ; then
Display --indent $2 --text "No openssl binary" --result INFO --color BLUE
return 1;
fi
#for the moment, I just test for this Proc-Type: 4,ENCRYPTED to know if a private key is password protected
if [ -z "`grep 'Proc-Type: 4,ENCRYPTED' $1`" ] ; then
PASSWORD_PROTECTED='no'
else
PASSWORD_PROTECTED='yes'
#check for encryption type
ENCRYPT_METHOD="`grep '^DEK-Info:' $1 |cut -d\ -f2 | cut -d\, -f1`"
if [ "$ENCRYPT_METHOD" = 'DES-CBC' ];then
Display --indent $2 --text "$1 encryption method" --result $ENCRYPT_METHOD --color RED
else
Display --indent $2 --text "$1 encryption method" --result $ENCRYPT_METHOD --color GREEN
fi
fi
#sshd could not use password protected key
if [ "$3" != 'sshd' -a "$3" != 'ssh' ] ; then
if [ "$PASSWORD_PROTECTED" = 'no' ];then
Display --indent $2 --text "$1 is not password protected" --result BAD --color ORANGE --advice GLOBAL_PRIVATE_KEY_NOT_PASSWORD_PROTECTED
else
Display --indent $2 --text "$1 is password protected" --result OK --color GREEN
fi
fi
TMP_RESULT="${TEMPYASATDIR}/ssl.out"
KEYTYPE="`grep 'BEGIN.*PRIVATE KEY-----' $1 | cut -d\ -f2`"
if [ "$KEYTYPE" = 'PRIVATE' ] ; then
#ok, we have a file with no information, try with that
openssl x509 -in $1 -text > "$TMP_RESULT" 2>> $ERROR_OUTPUT_FILE
if [ $? -ne 0 ] ; then
openssl rsa -in $1 -text > "$TMP_RESULT" 2>> $ERROR_OUTPUT_FILE
fi
if [ ! -z "`grep -i rsa $TMP_RESULT`" ] ; then
KEYTYPE='RSA'
fi
rm "${TMP_RESULT}"
fi
if [ "$KEYTYPE" = 'RSA' ] ; then
if [ "$PASSWORD_PROTECTED" = 'no' ] ; then
openssl rsa -in $1 -text 2>> $ERROR_OUTPUT_FILE > $TMP_RESULT
if [ $? -eq 0 ] ; then
KEYSIZE="`grep 'Private-Key' $TMP_RESULT |cut -d\ -f2 | cut -d\( -f2`"
if [ $KEYSIZE -lt 2048 ] ; then
Display --indent $2 --text "$1 keysize" --result $KEYSIZE --color RED --advice GLOBAL_RSA_KEY_SIZE
else
Display --indent $2 --text "$1 keysize" --result $KEYSIZE --color GREEN
fi
else
Display --indent $2 --text "openssl error on $1" --result 'ERROR' --color RED --advice YASAT_BUG
fi
else
Display --indent $2 --text "Cannot check size" --result 'SKIP' --color BLUE
fi
# else
#it is a DSA or EC key
#DSA key is 1024bits, so useless to test its size
fi
return $?
}
################################################################################
################################################################################
check_user_cron()
{
if [ -z "$1" ]
then
echo 'Erreur manque argument de check_user_cron()'
fi
if [ -e "/var/spool/cron/$1" ]; then
RESULTAT="YES"
else
RESULTAT="NO"
fi
}
################################################################################
################################################################################
check_user_crontab()
{
if [ -z "$1" ]
then
echo 'Erreur manque argument de check_user_cron()'
fi
RESULTAT=`crontab -l |grep -v 'no crontab for'`
}
################################################################################
################################################################################
#not finished
check_system_cron()
{
grep -v '^#' /etc/crontab |
while read line
do
# echo "$line"
RESULTAT=`echo $line | awk '{print $7 }'`
if [ ! -z "$RESULTAT" ]
then
TMP_CRONUSER=`echo $line | awk '{print $6 }'`
echo "$line"
echo "$TMP_CRONUSER"
fi
done
}
################################################################################
################################################################################
#Check file for
#
# $1 is the path to the file
# $2 is the indent
# $3 is the owner (or NULL)
# $4 is the group (or NULL)
# $5 is right
check_a_file()
{
GOT_ERROR=0
if [ -z "$1" ] ; then
echo "ERROR check_a_file() missing parameter #1 (path to the file)"
return 1;
fi
if [ ! -e "$1" ] ; then
echo "ERROR check_a_file() $1 do not exists"
return 1;
fi
if [ -z "$2" ] ; then
echo "ERROR check_a_file() missing parameter #2"
return 1;
fi
if [ -z "$3" ] ; then
echo "ERROR check_a_file() missing parameter #3 (owner)"
return 1;
fi
if [ -z "$4" ] ; then
echo "ERROR check_a_file() missing parameter #4"
return 1;
fi
if [ -z "$5" ] ; then
echo "ERROR check_a_file() missing parameter #5"
return 1;
fi
if [ "$3" != 'NULL' ] ; then
USER="`stat $STAT_USER $1`"
if [ "$USER" != "$3" ] ; then
Display --indent $2 --text "$1 is not $3 owned" --result WARNING --color RED
GOT_ERROR=1
fi
fi
if [ "$4" != 'NULL' ] ; then
GROUP="`stat $STAT_GROUP $1`"
if [ "$GROUP" != "$4" ] ; then
Display --indent $2 --text "$1 is not $4 grouped" --result WARNING --color RED
GOT_ERROR=1
fi
fi
if [ "$5" != 'NULL' ] ; then
RIGHT="`stat $STAT_RIGHT $1`"
compare_right $RIGHT $5 YES
if [ $? -ne 0 ] ; then
# if [ "$RIGHT" != "$5" ] ; then
Display --indent $2 --text "$1 is not $5 but $RIGHT" --result WARNING --color RED
add_correction "chmod $5 $1"
GOT_ERROR=1
fi
fi
if [ $GOT_ERROR -eq 0 ] ; then
Display --indent $2 --text "$1 is $3:$4 $RIGHT" --result GOOD --color GREEN
fi
return $GOT_ERROR
}
################################################################################
################################################################################
#Check file for
# - Not writable by others
# - Info when suid or other things
# - Not root:root owned
#
# $1 is the path to the file
# $2 is the indent
# $3 is the type (NORMAL PRIVKEY BINARY CERT etc..)
#
check_file()
{
if [ "$1x" = "x" ] ; then
echo "ERROR check_file() missing parameter #1"
return 1;
fi
BINARY_TO_CHECK="$1"
if [ "$2x" = "x" ] ; then
echo "ERROR check_file() missing parameter #2"
return 1;
fi
if [ "$3x" = "x" ] ; then
echo "ERROR check_file() missing parameter #3"
return 1;
fi
if [ ! -e "$1" ] ; then
echo "ERROR check_file() $1 do not exist"
return 1;
fi
if [ -L $1 ] ; then
TARGET="`readlink $1`"
# if [ "$TARGET" = "`basename $TARGET`" ] ; then
if [ ! -z "`echo $TARGET |grep '\./' `" ] ; then
BINARY_TO_CHECK="`dirname $1`/`readlink $1`"
else
BINARY_TO_CHECK="$TARGET"
fi
echo "Warning $1 is a link using $BINARY_TO_CHECK"
fi
GOOD=1
USER="`stat $STAT_USER $BINARY_TO_CHECK`"
GROUP="`stat $STAT_GROUP $BINARY_TO_CHECK`"
RIGHT="`stat $STAT_RIGHT $BINARY_TO_CHECK`"
RIGHT_L="`echo $RIGHT | wc -c`"
if [ "$USER" != 'root' ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK is not root owned" --result WARNING --color RED --advice GLOBAL_FILE_MUST_BE_OWNED_BY_ROOT
GOOD=0
add_correction "chown root $BINARY_TO_CHECK"
fi
if [ "$GROUP" != "$ROOTGROUP" -a "$GROUP" != "ssl-cert" -a "$GROUP" != "keymastaa" ] ;then
Display --indent $2 --text "$BINARY_TO_CHECK is not $ROOTGROUP (group) owned" --result WARNING --color RED --advice GLOBAL_FILE_MUST_BE_GROUPED_BY_ROOT
GOOD=0
fi
if [ "$3" = "CERT" ] ; then
check_certificate $BINARY_TO_CHECK $2
fi
if [ "$3" = "PRIVKEY" ] ; then
check_private_key $BINARY_TO_CHECK $2
if [ $? -ne 0 ] ; then
GOOD=0
fi
fi
if [ $RIGHT_L -ge 5 ] ; then
#not common right
RIGHT_O="`echo $RIGHT | cut -b 4`"
Display --indent $2 --text "$BINARY_TO_CHECK is a spetial binary (suid etc)" --result WARNING --color RED
#TODO check what is spetial
else
#common right
RIGHT_O="`echo $RIGHT | cut -b 3`"
case $3 in
PRIVKEY)
if [ $RIGHT_O -ge 1 ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK is other accessible" --result WARNING --color RED --advice GLOBAL_FILE_OTHER_READABLE
GOOD=0
fi
;;
NORMAL)
if [ $RIGHT_O -eq 7 -o $RIGHT_O -eq 6 ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK is other writable" --result WARNING --color RED --advice GLOBAL_FILE_OTHER_WRITABLE
GOOD=0
fi
;;
CERT)
if [ $RIGHT_O -eq 7 -o $RIGHT_O -eq 6 ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK is other writable" --result WARNING --color RED --advice GLOBAL_FILE_OTHER_WRITABLE
GOOD=0
fi
;;
BINARY)
if [ $RIGHT_O -eq 7 -o $RIGHT_O -eq 6 ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK is other writable" --result WARNING --color RED --advice GLOBAL_FILE_OTHER_WRITABLE
fi
#how about non-linux ?
Check_tool_presence readelf
if [ "$RESULTAT" = 'notfound' ];then
Display --indent $2 --text "readelf tool" --result NOTFOUND --color BLUE
else
if [ -z "`readelf -h $BINARY_TO_CHECK 2>/dev/null| grep 'Type:'`" ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK isnt a binary according to readelf" --result BAD --color ORANGE
else
#check for SSP and PIE
readelf -s $BINARY_TO_CHECK | grep -q '__stack_chk_fail'
if [ $? -eq 0 ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK have SSP" --result GOOD --color GREEN
else
Display --indent $2 --text "$BINARY_TO_CHECK havent SSP" --result BAD --color ORANGE --advice GLOBAL_BINARY_SSP
fi
readelf -h $BINARY_TO_CHECK | grep -q 'Type:[[:space:]]*DYN'
if [ $? -eq 0 ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK is PIE" --result GOOD --color GREEN
else
Display --indent $2 --text "$BINARY_TO_CHECK isnt PIE" --result BAD --color ORANGE --advice GLOBAL_BINARY_PIE
fi
fi
fi
GOOD=0
;;
*)
echo "ERROR unrecognized type"
;;
esac
fi
if [ $GOOD -eq 1 ] ; then
Display --indent $2 --text "$BINARY_TO_CHECK $USER $GROUP $RIGHT" --result OK --color GREEN
fi
}
################################################################################
################################################################################
#Check dir owner
# Param #1 is the PATH to be checked
# Param #2 is the user that must own the directory
# Param #3 is the file that get output of this function
# Param #4 is the indent value for print info
check_directory_owner()
{
Debug "DEBUG: check_directory_owner begin"
if [ -z "$1" ]
then
echo 'Error missing parameter #1 (PATH) for check_directory_owner()'
return 1;
fi
if [ ! -e $1 ]
then
echo "check_directory_owner() Error $1 do not exist"
return 1;
fi
if [ -z "$2" ]
then
echo 'Error missing parameter #2 (owner id) for check_directory_owner()'
return 1;
fi
if [ -z "$3" ]
then
echo 'Error missing parameter #3 (path to the output) for check_directory_owner()'
return 1;
fi
if [ -z "$4" ]
then
echo 'Error missing parameter #4 (indent) for check_directory_owner()'
return 1;
fi
find "$1" ! -user $2 > $3
RESULTAT=`cat $3 | wc -l`
if [ $RESULTAT -eq 0 ]
then
Display --indent $4 --text "Owner of $1" --result OK --color GREEN
else
Display --indent $4 --text "$RESULTAT files have invalid owning != $2 in $1" --result WARNING --color RED --advice $5
fi
}
################################################################################
################################################################################
#Check that a directory is group-ed by a group
# Param #1 is the PATH to be checked
# Param #2 is the group that must own the directory
# Param #3 is the file that get output of this function
# Param #4 is the indent value for print info
check_directory_group()
{
if [ -z "$1" ] ;then
echo 'Error missing parameter #1 (PATH) for check_directory_group()'
return 1;
fi
if [ ! -e "$1" ] ;then
echo "check_directory_group() Error $1 do not exist"
return 1;
fi
if [ -z "$2" ] ;then
echo 'Error missing parameter #2 (group) for check_directory_group()'
return 1;
fi
if [ -z "$3" ] ;then
echo 'Error missing parameter #3 (path to the output) for check_directory_group()'
return 1;
fi
if [ -z "$4" ] ;then
echo 'Error missing parameter #4 (indent) for check_directory_group()'
return 1;
fi
ADVICE="--advice $5"
if [ -z "$5" ] ; then
ADVICE=''
fi
find "$1" ! -group "$2" > "$3"
RESULTAT=`cat "$3" | wc -l`
if [ $RESULTAT -eq 0 ] ;then
Display --indent $4 --text "Group of $1" --result OK --color GREEN
else
Display --indent $4 --text "$RESULTAT files have invalid group owning != $2 in $1" --result WARNING --color RED $ADVICE
fi
}
################################################################################
################################################################################
#Check that a directory do not have right for the world
# Param #1 is the PATH to be checked
# Param #2 is the file that get output of this function
# Param #3 is the indent value for print info
# Param #4 is the advice
check_directory_others()
{
Debug "DEBUG: check_directory_others begin"
if [ -z "$1" ] ;then
echo 'Error missing parameter #1 (PATH) for check_directory_others()'
return 1;
fi
if [ ! -e $1 ] ;then
echo "check_directory_others() Error $1 do not exist"
return 1;
fi
if [ -z "$2" ] ;then
echo 'Error missing parameter #2 (path to the output) for check_directory_others()'
return 1;
fi
if [ -z "$3" ] ;then
echo 'Error missing parameter #3 (indent) for check_directory_others()'
return 1;
fi
if [ -z "$4" ] ;then
echo 'Error missing parameter #4 (advice) for check_directory_others()'
return 1;
fi
NSAGID=0
CCEID=0
if [ ! -z "$5" ] ; then
NSAGID="$5"
fi
if [ ! -z "$6" ] ; then
CCEID="$6"
fi
find "$1" ! -type l -perm $ORWX > $2
RESULTAT=`cat $2 | wc -l`
if [ $RESULTAT -eq 0 ] ;then
Display --indent $3 --text "Rights of $1" --result OK --color GREEN
Compliance --result 'OK' --plugin notknown --nsag $NSAGID --cce $CCEID
else
Display --indent $3 --text "$RESULTAT files have invalid others rights in $1" --result WARNING --color RED --advice $4
add_correction "chmod -R $CORRECT_ORWX $1"
Compliance --result 'NOK' --plugin notknown --nsag $NSAGID --cce $CCEID
fi
}
################################################################################
################################################################################
#Check dir
check_directory_writable_by_group()
{
if [ -z "$1" ]
then
echo 'Error missing parameter #1 (PATH) for check_directory_writable_by_group()'
return 1;
fi
if [ ! -e $1 ]
then
echo "check_directory_writable_by_group() Error $1 do not exist"
return 1;
fi
if [ -z "$2" ]
then
echo 'Error missing parameter #2 (group) for check_directory_writable_by_group()'
return 1;
fi
if [ -z "$3" ]
then
echo 'Error missing parameter #3 (path to the output) for check_directory_writable_by_group()'
return 1;
fi
if [ -z "$4" ]
then
echo 'Error missing parameter #4 (indent) for check_directory_writable_by_group()'
return 1;
fi
find "$1" ! -type l -perm $PERM_GW > $3
RESULTAT=`cat $3 | wc -l`
if [ $RESULTAT -eq 0 ]
then
Display --indent $4 --text "$2 cannot write $1" --result OK --color GREEN
else
Display --indent $4 --text "$2 can write $RESULTAT files in $1" --result WARNING --color RED --advice $5
fi
}
################################################################################
################################################################################
prepare_kernel_config()
{
if [ -e "${TEMPYASATDIR}/kernel_config" ] ;then
rm "${TEMPYASATDIR}/kernel_config"
fi
#config can be found at /boot/config-`uname -r`
if [ -e "/boot/config-`uname -r`" ] ;then
Display --indent 2 --text "/boot/config-`uname -r`" --result FOUND --color GREEN
cat "/boot/config-`uname -r`" > "${TEMPYASATDIR}/kernel_config"
fi
# if user give me the path to a .config, I wont read /proc/config.gz
if [ -z ${YASAT_PATH_TO_KERNEL_CONFIG:-""} ] ;then
YASAT_PATH_TO_KERNEL_CONFIG='/usr/src/linux/.config'
if [ -e /proc/config.gz ] ;then
Display --indent 2 --text "/proc/config.gz" --result FOUND --color GREEN
zcat /proc/config.gz > ${TEMPYASATDIR}/kernel_config
else
if [ -e "${TEMPYASATDIR}/kernel_config" ] ;then
#we have already found .config elsewhere
Display --indent 2 --text "/proc/config.gz" --result NOTFOUND --color BLUE
else
Display --indent 2 --text "/proc/config.gz" --result NOTFOUND --color ORANGE --advice KERNEL_NO_CONFIG
fi
fi
fi
if [ ! -e "${TEMPYASATDIR}/kernel_config" ] ;then
if [ -e "$YASAT_PATH_TO_KERNEL_CONFIG" ] ;then
Display --indent 2 --text "$YASAT_PATH_TO_KERNEL_CONFIG" --result FOUND --color GREEN
cat "$YASAT_PATH_TO_KERNEL_CONFIG" > ${TEMPYASATDIR}/kernel_config
else
Display --indent 2 --text "$YASAT_PATH_TO_KERNEL_CONFIG" --result NOTFOUND --color ORANGE --advice KERNEL_NO_CONFIG
fi
fi
}
################################################################################
################################################################################
# agregate all httpd conf in one file
prepare_apache_conf()
{
if [ -z "$1" ];then
Display_error 'Error: missing parameter #1 (apache directory) for prepare_apache_conf()'
return 1;
fi
if [ ! -d "$1" ];then
Display_error "prepare_apache_conf() Error: $1 is not a directory"
return 1;
fi
if [ -e "$TEMPYASATDIR/apache.conf" ] ; then
rm "$TEMPYASATDIR/apache.conf"
fi
if [ -e "$TEMPYASATDIR/apache.conf.found" ] ; then
rm "$TEMPYASATDIR/apache.conf.found"
fi
if [ -e "$1/apache2.conf" ] ; then
grep -v '^[[:space:]]*#' $1/apache2.conf > "$TEMPYASATDIR/apache.conf"
echo "$1/apache2.conf" >> "$TEMPYASATDIR/apache.conf.found"
fi
if [ -e "$1/httpd.conf" ] ; then
grep -v '^[[:space:]]*#' $1/httpd.conf >> "$TEMPYASATDIR/apache.conf"
echo "$1/httpd.conf" >> "$TEMPYASATDIR/apache.conf.found"
fi
if [ -e "$1/httpd2.conf" ] ;then
grep -v '^[[:space:]]*#' $1/httpd2.conf >> "$TEMPYASATDIR/apache.conf"
echo "$1/httpd2.conf" >> "$TEMPYASATDIR/apache.conf.found"
fi
if [ ! -e "$TEMPYASATDIR/apache.conf" ] ;then
Display --indent 2 --text "I cannot find apache configuration" --result WARNING --color RED
return 1;
fi
FindValueOf "$TEMPYASATDIR/apache.conf" "ServerRoot"
if [ -z "$RESULTAT" ] ; then
Display --indent 2 --text "No ServerRoot found, defaulting to /etc/apache2" --result WARNING --color BLUE
SERVERROOT='/etc/apache2'
else
SERVERROOT=`echo $RESULTAT | sed 's/^\"//' | sed 's/\"$//'`
fi
grep -i '^[[:space:]]*include' "$TEMPYASATDIR/apache.conf" | sed 's/^[[:space:]]*[a-zA-Z][a-zA-Z]*[[:space:]][[:space:]]*//g' | sort | uniq |
while read TMP_FILES
do
# TMP_FILES="`echo \"$line\" | sed 's/^[[:space:]]*include[[:space:]]*//gI'`"
# echo "$TMP_FILES"
#Check for relative files
FIRST_CHAR=`echo $TMP_FILES | cut -b 1`
if [ "$FIRST_CHAR" != "/" ];then
# echo "Debug relative path"
TMP_FILES="$SERVERROOT/$TMP_FILES"
fi
if [ -d "$TMP_FILES" ];then
Debug "$TMP_FILES has no wildward"
TMP_FILES="$TMP_FILES/*"
fi
Debug "Add $TMP_FILES"
echo "$TMP_FILES" >> "$TEMPYASATDIR/apache.conf.found"
#-s for be sure that on a minimal config with no modules/*.conf no errors would be printed
grep -vsh '^[[:space:]]*#' $TMP_FILES > "$TEMPYASATDIR/apache.conf.tmp"
grep -vsh '^[[:space:]]*#' $TMP_FILES >> "$TEMPYASATDIR/apache.conf"
#check recursivly for additional includes
grep -ih '^[[:space:]]*include' "$TEMPYASATDIR/apache.conf.tmp" | sed 's/^[[:space:]]*[a-zA-Z][a-zA-Z]*[[:space:]][[:space:]]*//g' | sort | uniq |
while read TMP_FILESS
do
# echo "$TMP_FILESS"
grep -vh '^[[:space:]]*#' $TMP_FILESS >> "$TEMPYASATDIR/apache.conf"
done
done
mv "$TEMPYASATDIR/apache.conf" "$TEMPYASATDIR/apache.conf.orig"
#clean the file
grep -v '^[[:space:]]*$' "$TEMPYASATDIR/apache.conf.orig" | sed 's,^[[:space:]]*,,' | sed 's,#.*,,' > "$TEMPYASATDIR/apache.conf"
}
################################################################################
################################################################################
prepare_bind_conf()
{
if [ -z "$1" ]
then
echo 'Error missing parameter #1 (named/bind directory) for prepare_bind_conf()'
return 1;
fi
if [ ! -d $1 ]
then
echo "prepare_bind_conf() Error $1 is not a directory"
return 1;
fi
if [ -e "$TEMPYASATDIR/named.conf" ]
then
rm "$TEMPYASATDIR/named.conf"
fi
if [ -e "$1/named.conf" ]
then
grep -v '^[[:space:]]*#' $1/named.conf | grep -v '^[[:space:]]*$' | grep -v '^/'> "$TEMPYASATDIR/named.conf"
fi
if [ ! -e "$TEMPYASATDIR/named.conf" ]
then
Display --indent 2 --text "I cannot find bind configuration" --result WARNING --color RED
return 1;
fi
grep -i '^[[:space:]]*include' "$TEMPYASATDIR/named.conf" | sed 's/^[[:space:]]*[a-zA-Z][a-zA-Z]*[[:space:]][[:space:]]*//g' | sed 's/";*//g' | sort | uniq |
while read TMP_FILES
do
#Check for relative files
FIRST_CHAR=`echo $TMP_FILES | cut -b 1`
if [ "$FIRST_CHAR" != "/" ]
then
# echo "Debug relative path"
TMP_FILES="$1/$TMP_FILES"
fi
if [ -d "$TMP_FILES" ]
then
Debug "$TMP_FILES has no wildward"
TMP_FILES="$TMP_FILES/*"
fi
Debug "Add $TMP_FILES"
grep -vh '^[[:space:]]*#' $TMP_FILES > "$TEMPYASATDIR/named.conf.tmp"
grep -vh '^[[:space:]]*#' $TMP_FILES >> "$TEMPYASATDIR/named.conf"
#check recursivly for additional includes
grep -ih '^[[:space:]]*include' "$TEMPYASATDIR/named.conf.tmp" | sed 's/^[[:space:]]*[a-zA-Z][a-zA-Z]*[[:space:]][[:space:]]*//g' | sed 's/";*//g' | sort | uniq |
while read TMP_FILESS
do
# echo "$TMP_FILESS"
grep -vh '^[[:space:]]*#' $TMP_FILESS | grep -v '^[[:space:]]*$' | grep -v '^/'>> "$TEMPYASATDIR/named.conf"
done
done
}
################################################################################
################################################################################
# with a initial config file, generate a parseable config file
# add all files with include
# similar to prepare_apache_conf
prepare_generic_conf()
{
if [ -z "$1" ]
then
echo 'Error missing parameter #1 (initial config file) for prepare_generic_conf()'
return 1;
fi
if [ ! -e $1 ]
then
echo "prepare_generic_conf() Error $1 is not a config file"
return 1;
fi
if [ -z "$2" ]
then
echo "prepare_generic_conf() Missing parameter #2 (output file)"
return 1;
fi
if [ -e "$2" ]
then
cp "$2" "$2.bak"
rm "$2"
fi
grep -v '^[[:space:]]*#' $1 | grep -v '^[[:space:]]*$' | grep -v '^;' > "$2"
if [ ! -e "$2" ]
then
Display --indent 2 --text "I cannot find output configuration" --result WARNING --color RED
return 1;
fi
grep -i '^[[:space:]]*include' "$2" | sed 's/^[[:space:]]*[a-zA-Z][a-zA-Z]*[[:space:]][[:space:]]*//g' | sed 's/";*//g' | sort | uniq |
while read TMP_FILES
do
#Check for relative files
FIRST_CHAR=`echo $TMP_FILES | cut -b 1`
if [ "$FIRST_CHAR" != "/" ]
then
# echo "Debug relative path"
TMP_FILES="$1/$TMP_FILES"
fi
if [ -d "$TMP_FILES" ]
then
Debug "$TMP_FILES has no wildward"
TMP_FILES="$TMP_FILES/*"
fi
Debug "Add $TMP_FILES"
grep -vh '^[[:space:]]*#' $TMP_FILES > "$2.tmp"
grep -vh '^[[:space:]]*#' $TMP_FILES >> "$2"
#check recursivly for additional includes
grep -ih '^[[:space:]]*include' "$2.tmp" | sed 's/^[[:space:]]*[a-zA-Z][a-zA-Z]*[[:space:]][[:space:]]*//g' | sed 's/";*//g' | sort | uniq |
while read TMP_FILESS
do
# echo "$TMP_FILESS"
grep -vh '^[[:space:]]*#' $TMP_FILESS | grep -v '^[[:space:]]*$' | grep -v '^/'>> "$2"
done
done
}
################################################################################
################################################################################
#return the options of the partition
#we could do the same with mount but bsd do not print the same infos
# TODO I dont like all thoses if for ids
check_partition()
{
if [ -z "$1" ] ; then
echo "ERROR check_partition() Missing arg #1 (mount point)"
return 1;
fi
RESULTAT=''
EL_MOUNT=`grep -v '^#' ${SCAN_ROOT}/etc/fstab |grep "$1/*[[:space:]]"`
if [ "$2" = 'SEPARATE' ] ; then
T_CCEID=''
T_NSAGID=''
if [ "$1" = '/tmp' ] ; then T_CCEID='14161-4' ; T_NSAGID='2.1.1.1.1'; fi
if [ "$1" = '/var' ] ; then T_CCEID='14777-7' ; T_NSAGID='2.1.1.1.2'; fi
if [ "$1" = '/var/log' ] ; then T_CCEID='14011-1' ; T_NSAGID='2.1.1.1.3'; fi
if [ "$1" = '/var/log/audit' ] ; then T_CCEID='14171-3' ; T_NSAGID='2.1.1.1.4'; fi
if [ "$1" = '/home' ] ; then T_CCEID='14559-9' ; T_NSAGID='2.1.1.1.5'; fi
if [ -z "$EL_MOUNT" ] ; then
Display --indent 2 --text "$1 is not on a separate partition" --result NOTFOUND --color RED --advice PARTITION_SEPARATE_PART
if [ ! -z "$T_CCEID" ] ;then
Compliance --result 'NOK' --plugin 'partition' --type 'CCE' --cid $T_CCEID --type 'NSAG' --cid $T_NSAGID
fi
else
Display --indent 2 --text "$1 is on a separate partition" --result FOUND --color GREEN
if [ ! -z "$T_CCEID" ] ;then
Compliance --result 'OK' --plugin 'partition' --type 'CCE' --cid $T_CCEID --type 'NSAG' --cid $T_NSAGID
fi
RESULTAT=`echo $EL_MOUNT | sed 's/[[:space:]]/ /g' | cut -d\ -f4`
if [ $# -ge 3 ] ; then
PART_NAME="$1"
shift
shift
for wflag in "$@"
do
T_CCEID=''
T_NSAGID=''
PART_ADV='PARTITION_NOSUID'
if [ $wflag = 'nosuid' ] ; then
if [ $PART_NAME = '/mnt/cdrom' -o $PART_NAME = '/mnt/floppy' ] ;then
T_NSAGID='2.2.1.2'; T_CCEID='4042-8'
fi
if [ $PART_NAME = '/tmp' ] ;then T_NSAGID='2.2.1.3.1'; T_CCEID='14940-1' ;fi
if [ $PART_NAME = '/dev/shm' ] ;then T_NSAGID='2.2.1.3.2'; T_CCEID='14306-5' ;fi
fi
if [ $wflag = 'nodev' ] ; then
PART_ADV='PARTITION_NODEV'
if [ $PART_NAME = '/var' -o $PART_NAME = '/var/log' -o $PART_NAME = '/home' ] ; then
T_CCEID='4249-9' ;T_NSAGID='2.2.1.1'
fi
if [ $PART_NAME = '/mnt/cdrom' -o $PART_NAME = '/mnt/floppy' ] ;then
T_NSAGID='2.2.1.2'; T_CCEID='3522-0'
fi
if [ $PART_NAME = '/tmp' ] ;then T_NSAGID='2.2.1.3.1'; T_CCEID='14412-1' ;fi
if [ $PART_NAME = '/dev/shm' ] ;then T_NSAGID='2.2.1.3.2'; T_CCEID='15007-8' ;fi
fi
if [ $wflag = 'noexec' ] ; then
PART_ADV='PARTITION_NOEXEC'
if [ $PART_NAME = '/mnt/cdrom' -o $PART_NAME = '/mnt/floppy' ] ;then
T_NSAGID='2.2.1.2'; T_CCEID='4275-4'
fi
if [ $PART_NAME = '/tmp' ] ;then T_NSAGID='2.2.1.3.1'; T_CCEID='14927-8' ;fi
if [ $PART_NAME = '/dev/shm' ] ;then T_NSAGID='2.2.1.3.2'; T_CCEID='14703-3' ;fi
fi
if [ -z "`echo $RESULTAT | grep -i $wflag`" ] ;then
Display --indent 4 --text "$PART_NAME dont have $wflag" --result NOTFOUND --color ORANGE --advice $PART_ADV
if [ ! -z "$T_CCEID" ] ;then
Compliance --result 'NOK' --plugin "partition_${PART_NAME}_$wflag" --cce $T_CCEID --nsag $T_NSAGID
fi
else
Display --indent 4 --text "$PART_NAME have $wflag" --result FOUND --color GREEN
if [ ! -z "$T_CCEID" ] ;then
Compliance --result 'OK' --plugin "partition_${PART_NAME}_$wflag" --cce $T_CCEID --nsag $T_NSAGID
fi
fi
done
fi
fi
return 0;
fi
if [ -z "$EL_MOUNT" ] ; then
# Display --indent 2 --text "$1 is not on a separate partition" --result NOTFOUND --color RED --advice PARTITION_SEPARATE_PART
export RESULTAT='ERROR_NO_PARTITION'
return 1;
fi
RESULTAT=`echo $EL_MOUNT | sed 's/[[:space:]]/ /g' | cut -d\ -f4`
# Display --indent 2 --text "$1 is on a separate partition" --result FOUND --color GREEN
}
################################################################################
################################################################################
#
# must produce a 4 digits results
get_full_right()
{
if [ "$1x" = "x" ]
then
echo "ERROR get_right() missing parameter #1"
return 1;
fi
if [ ! -e "$1" ]
then
echo "ERROR $1 do not exists"
return 1;
fi
if [ "$OS" = "FreeBSD" ]
then
RESULTAT=`stat -f %Mp%Lp $1`
else
RESULTAT=`stat --format=%a $1`
fi
}
################################################################################
################################################################################
# get the right of a file
# must produce a 3 digits results
get_simple_right()
{
RESULTAT='Error'
if [ "$1x" = "x" ]
then
echo "ERROR get_simple_right() missing parameter #1 (file to be stated)"
return 1;
fi
if [ ! -e "$1" ]
then
echo "ERROR $1 do not exists"
return 1;
fi
if [ "$OS" = "FreeBSD" ]
then
RESULTAT=`stat -f %Lp $1`
else
RESULTAT=`stat --format=%a $1`
fi
}
################################################################################
################################################################################
#For the fun
draw_apache_tree()
{
if [ -z "$1" ] ;then
echo "ERROR: draw_apache_tree() missing parameter #1"
return 1;
fi
NUMINDENT=0
#echo ''
#echo "Draw apache tree (still in development)"
#echo ''
while read line
do
# echo $line
if [ ! -z "`echo $line | grep -i '^VHOST'`" ]
then
echo "|-V- $line" | sed 's/VHOST=//g'
NUMINDENT=2
fi
if [ ! -z "`echo $line | grep -i '^ENDHOST'`" ]
then
echo "|"
NUMINDENT=0
fi
if [ ! -z "`echo $line | grep -i '^ALIAS'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo "| |-A- $line" | sed 's/ALIAS=//g'
else
echo "|-A- $line" | sed 's/ALIAS=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^PASSWORD'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo '| | |--- PASSWORD'
else
echo '| |--- PASSWORD'
fi
fi
if [ ! -z "`echo $line | grep -i '^DENYFROMALL'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo '| | |--- DENYFROMALL'
else
echo '| |--- DENYFROMALL'
fi
fi
if [ ! -z "`echo $line | grep -i '^AUTHFILE'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo "| | |-P- $line" | sed 's/AUTHFILE=//g'
else
echo "| |-P- $line" | sed 's/AUTHFILE=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^DIRECTORY'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo "| |-D- $line" | sed 's/DIRECTORY=//g'
else
echo "|-D- $line" | sed 's/DIRECTORY=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^LOCATION'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo "| |-L- $line" | sed 's/LOCATION=//g'
else
echo "|-L- $line" | sed 's/LOCATION=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^HLOC'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo "| |-H- $line" | sed 's/HLOC=//g'
else
echo "|-H- $line" | sed 's/HLOC=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^PROXY'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo "| |-Pr- $line" | sed 's/PROXY=//g'
else
echo "|-Pr- $line" | sed 's/PROXY=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^JKMOUNT'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo "| |-J- $line" | sed 's/JKMOUNT=//g'
else
echo "|-J- $line" | sed 's/JKMOUNT=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^SERVERNAME'`" ]
then
if [ $NUMINDENT -ge 2 ]
then
echo "| |-SN- $line" | sed 's/SERVERNAME=//g'
else
echo "|-SN- $line" | sed 's/SERVERNAME=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^DEFLATE'`" ] ; then
if [ $NUMINDENT -ge 2 ] ; then
echo "| |-mD- $line" | sed 's/DEFLATE=//g'
else
echo "|-mD- $line" | sed 's/DEFLATE=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^PHP_ADMIN_VALUE'`" ] ; then
if [ $NUMINDENT -ge 2 ] ; then
echo "| |-PHP- $line" | sed 's/PHP_ADMIN_VALUE=//g'
else
echo "|-PHP- $line" | sed 's/PHP_ADMIN_VALUE=//g'
fi
fi
if [ ! -z "`echo $line | grep -i '^SSL=1'`" ] ; then
if [ $NUMINDENT -ge 2 ] ; then
echo '| |-SSL-'
else
echo '|-SSL-'
fi
fi
done < $1
echo ''
echo '-D- Directory -L- Location -V- vhost -A- alias -J- JKmount -mD- ModDeflate -PHP- PHP specific value'
}
################################################################################
################################################################################
#extract path from <directive value>
get_path_from_apache_directives()
{
if [ -z "$1" ]
then
echo "Missing parameter #1 (line to proceed) for get_path_from_apache_directives()"
return 1;
fi
#echo "->$1"
export RESULTAT=`echo $1 | sed 's/^[[:space:]]*<[[:space:]]*[a-zA-Z0-9][a-zA-Z0-9]*[[:space:]]*//g'| sed 's/[[:space:]]*>.*//g' | cut -d\" -f2`
#echo $1 | sed 's/^[[:space:]]*<[[:space:]]*//g'
#export $RESULTAT
return 0;
}
################################################################################
################################################################################
#extract path from <directive value>
armageddon()
{
echo "EXit via Ctrl-C"
exit 1;
}
################################################################################
################################################################################
Do_the_host_is_a_virtual_machine()
{
HOST_IS_VIRTUAL_MACHINE=0
if [ "$OS_TYPE" = 'Linux' ] ;then
CPUMODEL="`cat /proc/cpuinfo |grep QEMU`"
if [ ! -z "$CPUMODEL" ] ;then
export HOST_IS_VIRTUAL_MACHINE=1
else
export HOST_IS_VIRTUAL_MACHINE=0
fi
return 0;
fi
if [ "$OS_TYPE" = 'BSD' ] ;then
CPUMODEL="`sysctl -a | grep -i 'hw.model' |grep QEMU`"
if [ ! -z "$CPUMODEL" ] ;then
export HOST_IS_VIRTUAL_MACHINE=1
else
export HOST_IS_VIRTUAL_MACHINE=0
fi
return 0;
fi
#unrecognized
export HOST_IS_VIRTUAL_MACHINE=0
}
################################################################################
################################################################################
check_service_compliance_result()
{
if [ -z "$1" ] ;then
Display_error "ERROR check_service_compliance_result() missing parameter #1: service name"
return 1;
fi
if [ -z "$2" ] ;then
Display_error "ERROR check_service_compliance_result() missing parameter #2: plugin name"
return 1;
fi
if [ -z "$3" ] ;then
Display_error "ERROR check_service_compliance_result() missing parameter #3: yes/no"
return 1;
fi
if [ "$3" != 'yes' -a "$3" != 'no' -a "$3" != 'any' ] ;then
Display_error 'ERROR #3 must be yes or no'
return 1;
fi
NSAID='0'
CCEID='0'
if [ ! -z "$4" ];then
NSAID="$4"
fi
if [ ! -z "$5" ];then
CCEID="$5"
fi
RESULT='ABSENT'
if [ "$RESULTAT" = 'yes' ] ;then
RESULT='ENABLED'
fi
if [ "$RESULTAT" = 'ERROR' ] ;then
RESULT='ERROR'
fi
if [ "$RESULTAT" = 'NOTIMPLEMENTED' ] ;then
RESULT='NOTIMPLEMENTED'
Display --indent 2 --text "$1 service" --result $RESULT --color BLUE
Compliance --result NOTIMPL --plugin "$2" --nsag $NSAID --cce $CCEID
return 0;
fi
if [ $DEBUG -ge 1 ];then
echo "DEBUG check_service_compliance_result RESULTAT=$RESULTAT NEED=$3"
fi
if [ "$RESULTAT" = "$3" -o "$3" = 'any' ] ;then
Display --indent 2 --text "$1 service" --result $RESULT --color GREEN
Compliance --result OK --plugin "$2" --nsag $NSAID --cce $CCEID
return 0;
fi
if [ "$RESULTAT" != "$3" ] ;then
Display --indent 2 --text "$1 service" --result $RESULT --color RED
Compliance --result NOK --plugin "$2" --nsag $NSAID --cce $CCEID
return 0;
fi
}
################################################################################
################################################################################
# #1 is package name
# #2 is plugin name
# #3 is status wanted
check_package_compliance_result()
{
if [ -z "$1" ] ;then
echo "ERROR check_package_compliance_result() missing parameter #1: package name"
return 1;
fi
if [ -z "$2" ] ;then
# echo "ERROR check_package_compliance_result() missing parameter #2: plugin name"
return 1;
fi
if [ -z "$3" ] ;then
return 1;
fi
if [ "$3" != 'yes' -a "$3" != 'no' ] ;then
echo "ERROR #3 must be yes or no, got $3"
return 1;
fi
NSAID='0'
CCEID='0'
if [ ! -z "$4" ];then
NSAID="$4"
fi
if [ ! -z "$5" ];then
CCEID="$5"
fi
RESULT='ABSENT'
if [ "$RESULTAT" = 'yes' ] ;then
RESULT='PRESENT'
fi
if [ "$RESULTAT" = 'NOTIMPLEMENTED' ] ;then
RESULT='NOTIMPLEMENTED'
Display --indent 2 --text "$1 service" --result $RESULT --color BLUE
Compliance --result NOTIMPL --plugin "$2" --nsag $NSAID --cce $CCEID
return 0;
fi
if [ $DEBUG -ge 1 ];then
echo "DEBUG check_service_compliance_result RESULTAT=$RESULTAT NEED=$3"
fi
if [ "$RESULTAT" = "$3" ] ;then
Display --indent 2 --text "$1 package" --result $RESULT --color GREEN
Compliance --result OK --plugin "$2" --nsag $NSAID --cce $CCEID
return 0;
fi
if [ "$RESULTAT" != "$3" ] ;then
Display --indent 2 --text "$1 package" --result $RESULT --color GREEN
Compliance --result NOK --plugin "$2" --nsag $NSAID --cce $CCEID
return 0;
fi
}
################################################################################
################################################################################
# Check if a program is installed via the package manager or at hand
#
# $1 is the package to be searched
#
# RESULTAT is yes or no or NOTIMPLEMENTED or ERROR
# RESULTAT_VERSION is the version number
# use LIST_PKG for finding package, (rpm, dpkg, emerge)
Is_installed_via_package_manager()
{
export RESULTAT='ERROR'
if [ -z "$1" ] ;then
echo "ERROR Is_installed_via_package_manager() missing parameter #1"
return 1;
fi
if [ "$LIST_PKG" = "dpkg" -o "$LIST_PKG" = "apt-get" ] ;then
PKGLIST="`dpkg -l |grep ^ii |grep -i $1`"
if [ -z "$PKGLIST" ] ;then
export RESULTAT='no'
else
export RESULTAT='yes'
fi
check_package_compliance_result "$1" "$2" "$3" "$4" "$5"
return 0;
fi
if [ "$LIST_PKG" = "rpm" ] ;then
PKGLIST="`rpm -qa |grep ^$1`"
if [ -z "$PKGLIST" ] ;then
export RESULTAT='no'
else
export RESULTAT='yes'
fi
check_package_compliance_result "$1" "$2" "$3" "$4" "$5"
return 0;
fi
if [ "$LIST_PKG" = "emerge" ] ;then
#TODO could be better
PKGLIST="`equery -C -q l $1`"
if [ -z "$PKGLIST" ] ;then
export RESULTAT='no'
else
export RESULTAT='yes'
fi
check_package_compliance_result "$1" "$2" "$3" "$4" "$5"
return 0;
fi
if [ "$LIST_PKG" = "pacman" ] ;then
PKGLIST="`pacman -Q | grep ^$1`"
if [ -z "$PKGLIST" ] ;then
export RESULTAT='no'
else
export RESULTAT='yes'
fi
check_package_compliance_result "$1" "$2" "$3" "$4" "$5"
return 0;
fi
if [ "$LIST_PKG" = 'pkg_' ];then
if [ -z "`pkg_info |grep ^${1}-`" ];then
export RESULTAT='no'
else
export RESULTAT='yes'
fi
return 0;
fi
Display --indent 2 --text "Package manager $LIST_PKG" --result 'NOTIMPLEMENTED' --color BLUE
export RESULTAT='NOTIMPLEMENTED'
return 1;
}
################################################################################
################################################################################
# Check if a service is auto started
# $1 is the service to be checked
# RESULTAT is the result yes or no or NOTIMPLEMENTED or ERROR
# RESULTAT_VERSION is the version number
Check_auto_start()
{
export RESULTAT='ERROR'
AUTO_START_DO_COMPLIANCE=1
# while [ $# -ge 1 ]; do
# case $1 in
# --nocompliance)
# AUTO_START_DO_COMPLIANCE=0
# shift
# ;;
# esac
# done
if [ "$1" = '--nocompliance' ];then
AUTO_START_DO_COMPLIANCE=0
shift
fi
if [ -z "$1" ] ;then
echo "ERROR Check_auto_start() missing parameter #1: service name"
return 1;
fi
if [ "$SCAN_ROOT" != '/' ] ; then
#CentOS
if [ -e "$SCAN_ROOT/etc/rc.d" ] ; then
if [ -z "`find $SCAN_ROOT/etc/rc.d |grep $1`" ] ;then
RESULTAT='no'
else
RESULTAT='yes'
fi
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 0;
fi
#Gentoo
if [ -e "$SCAN_ROOT/etc/runlevels/" ] ; then
if [ -z "`find $SCAN_ROOT/etc/runlevels |grep $1`" ] ;then
RESULTAT='no'
else
RESULTAT='yes'
fi
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 0;
fi
#Debian
if [ -e "$SCAN_ROOT/etc/rc2.d/" ] ; then
if [ -z "`find $SCAN_ROOT/etc/rc2.d |grep $1`" ] ;then
RESULTAT='no'
else
RESULTAT='yes'
fi
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 0;
fi
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 1;
fi
if [ "$LINUX_VERSION" = 'Red Hat' -o "$LINUX_VERSION" = 'CentOS' -o "$LINUX_VERSION" = 'Fedora' ] ;then
chkconfig $1 > /dev/null
if [ $? -eq 0 ] ;then
export RESULTAT='yes'
else
export RESULTAT='no'
fi
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 0;
fi
if [ "$LINUX_VERSION" = "Debian" -o "$LINUX_VERSION" = "Ubuntu" ] ;then
#could be better
if [ ! -z "`find /etc/rc* |grep -i $1`" ]
then
export RESULTAT='yes'
else
export RESULTAT='no'
fi
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 0;
fi
if [ "$LINUX_VERSION" = "Gentoo" ] ; then
# RUNLEVEL="`rc-update show 2>> $ERROR_OUTPUT_FILE | grep $1 `"
# if [ $? -ne 0 ] ; then
# export RESULTAT='ERROR'
# return 1;
# fi
if [ -e "/etc/runlevels/boot/$1" -o -e "/etc/runlevels/default/$1" ] ; then
RESULTAT='yes'
else
RESULTAT='no'
fi
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 0;
fi
if [ "$OS_TYPE" = 'BSD' ];then
if [ -e /etc/rc.conf ];then
if [ ! -z "`grep $1_enable= /etc/rc.conf |grep YES`" ];then
RESULTAT='yes'
else
RESULTAT='no'
fi
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 0;
fi
fi
export RESULTAT='NOTIMPLEMENTED'
if [ $AUTO_START_DO_COMPLIANCE -eq 1 ];then
check_service_compliance_result "$1" "$2" "$3" "$4" "$5"
fi
return 1;
}
################################################################################
################################################################################
Check_for_update()
{
RET=0
wget -nv "http://yasat.sourceforge.net/get_last_yasat_version.php?current=$YASAT_VERSION" -O latest
if [ $? -ne 0 -o ! -e latest ];then
echo "Error with wget"
rm latest
exit 2
fi
LAST_VERSION="`cat latest`"
echo "You have yasat version $YASAT_VERSION and the latest is $LAST_VERSION"
if [ "$YASAT_VERSION" -eq "$LAST_VERSION" ];then
echo "You have already the latest version of YASAT"
fi
if [ "$YASAT_VERSION" -lt "$LAST_VERSION" ];then
echo "A new version is available at http://yasat.sourceforge.net/"
RET=1
fi
rm latest
exit $RET
}
################################################################################
################################################################################
send_support()
{
. ${YASAT_ROOT}/osdetection
RET=0
SYSTEME="${LINUX_VERSION}${OS}$OS_FULLNAME"
wget -nv "http://yasat.sourceforge.net/get_last_yasat_version.php?current=$YASAT_VERSION&systeme=$SYSTEME" -O latest
if [ $? -ne 0 -o ! -e latest ] ;then
echo "Error with wget"
rm latest
exit 2
fi
LAST_VERSION="`cat latest`"
echo "You have yasat version $YASAT_VERSION and the latest is $LAST_VERSION"
if [ "$YASAT_VERSION" -eq "$LAST_VERSION" ];then
echo "You have already the latest version of YASAT"
fi
if [ "$YASAT_VERSION" -lt "$LAST_VERSION" ];then
echo "A new version is available at http://yasat.sourceforge.net/"
RET=1
fi
rm latest
exit $RET
}
################################################################################
################################################################################
#Try to identify which technology is behind a vhost or a directory
#example PHP mod_perl JAVA/JK
# for the moment test a very simple case:)
#
# param $1 is the directory to scan
# param $2 (optional)
identify_web_tech_in_dir()
{
WEBTECH='unknown'
if [ -z "$1" ] ; then
echo "ERROR identify_web_tech_dir missing parameter #1"
return 1;
fi
#check if $1 contain a *
if [ ! -z "`echo $1 |grep '*'`" ] ; then
return ;
fi
if [ $1 = '/' ] ; then
return ;
fi
if [ -e "$1/index.php" ] ; then
echo "PHP"
export WEBTECH="PHP"
return ;
fi
if [ $# -ge 2 ] ; then
if [ "$2" = "recursive" ] ; then
if [ ! -z "`find $1 -maxdepth 2 -type f |grep 'php$'`" ] ; then
export WEBTECH="PHP"
return ;
fi
fi
fi
}
################################################################################
################################################################################
qa_test()
{
if [ "$1" != "$2" ] ; then
echo "BAD got $1 not $2"
else
echo "GOOD (result is $1)"
fi
}
################################################################################
################################################################################
# find witch file have a specific directive
find_file_with_directive()
{
export RES_FILE_WITH_DIRECTIVE='/tmp/nonexistent'
if [ -z "$1" ] ; then
echo 'Error missing parameter #1 directory for find_file_with_directive()'
return 1;
fi
if [ -z "$2" ] ; then
echo 'Error missing parameter #2 directive for find_file_with_directive()'
return 1;
fi
RES_FILE_WITH_DIRECTIVE="`grep -rli $2 $1 | head -n 1`"
#manpage said that -l return only one line but it seems false
}
################################################################################
################################################################################
#
add_correction()
{
echo "$1" >> "$CORRECT_FILE"
}
################################################################################
################################################################################
# list all test comment. In the future we could list by reference id (by CCE ID for example)
list_all_yasat_test() {
grep -h '#YASAT_TEST' ${PLUGINS_REP}/*.test | sed 's/^[[:space:]]*//g'
}
################################################################################
################################################################################
#check_value value_tested value_wanted bad_if_empty? text colour advice
check_value() {
if [ -z "$2" ] ; then
echo 'Error missing parameter #2 value_wanted for check_value()'
return 1;
fi
if [ -z "$3" ] ; then
echo 'Error missing parameter #3 bad_if_empty? for check_value()'
return 1;
fi
if [ -z "$4" ] ; then
echo 'Error missing parameter #4 text for check_value()'
return 1;
fi
if [ -z "$5" ] ; then
echo 'Error missing parameter #5 colour for check_value()'
return 1;
fi
if [ -z "$6" ] ; then
echo 'Error missing parameter #5 advice for check_value()'
return 1;
fi
NSAGID=0
CCEID=0
if [ ! -z "$7" ];then
NSAGID="$7"
fi
if [ ! -z "$8" ];then
CCEID="$8"
fi
if [ -z "$1" ] ; then
if [ "$3" = 'true' ] ; then
Display --indent 2 --text "$4" --result "NOTFOUND" --color $5 --advice $6
Compliance --result NOK --plugin notknown --nsag $NSAGID --cce $CCEID
else
Display --indent 2 --text "$4" --result "NOTFOUND" --color GREEN
Compliance --result OK --plugin notknown --nsag $NSAGID --cce $CCEID
fi
return 0;
fi
if [ "$1" != "$2" ]; then
Display --indent 2 --text "$4" --result "$1" --color $5 --advice $6
Compliance --result NOK --plugin notknown --nsag $NSAGID --cce $CCEID
else
Display --indent 2 --text "$4" --result "$1" --color GREEN
Compliance --result OK --plugin notknown --nsag $NSAGID --cce $CCEID
fi
}
################################################################################
################################################################################
#get the value after i"$1" in a line
#used for apache_vhosts, we assume $1 is present
get_value_in_string() {
if [ -z "$1" ] ; then
echo 'Error missing parameter #1 value_wanted for get_value_in_string()'
return 1;
fi
if [ -z "$2" ] ; then
echo 'Error missing parameter #2 string to be seeked for get_value_in_string()'
return 1;
fi
export RESULTAT="`echo $2 | sed 's/^[[:space:]]*//' | sed 's,#.*,,' | sed 's,[[:space:]][[:space:]]*, ,g' | cut -d\ -f2`"
}
################################################################################
################################################################################
check_cipher_list() {
if [ -z "$1" ] ; then
echo 'Error missing parameter #1 indent'
return 1;
fi
if [ -z "$2" ] ; then
echo 'Error missing parameter #2 cipherlist'
return 1;
fi
for ciph in LOW NULL SSLv2 EXP aNULL
do
if [ -z "`echo $2 | grep -Ei \"!${ciph}(:|$)\"`" ] ; then
Display --indent 4 --text "Cipher $ciph" --result ACTIVE --color ORANGE
else
Display --indent 4 --text "Cipher $ciph" --result DISACTIVE --color GREEN
fi
done
# export RESULTAT="`echo $2 | sed 's/^[[:space:]]*//' | sed 's,#.*,,' | sed 's,[[:space:]][[:space:]]*, ,g' | cut -d\ -f2`"
}
################################################################################
################################################################################
# this function assume that the tools certutil is present
# Use Check_tool_presence certutil for veryfying it
check_nss_certificate() {
if [ -z "$1" ] ; then
echo 'Error missing parameter #1 indent'
return 1;
fi
if [ -z "$2" ] ; then
echo 'Error missing parameter #2 profile directory'
return 1;
fi
PROFILDIR="$2"
certutil -L -d $PROFILDIR | sed 's/[[:space:]][[:space:]]*[Pu]*,[cpu]*,[u]*[[:space:]]*$//' | grep -vE '^[[:space:]]*$|^Certificate|SSL,S/MIME,JAR/XPI$' |sort |uniq > $TMP_LIST
if [ $? -ne 0 ] ; then
Display --indent $1 --text "certutil error" --result ERROR --color RED
return 1;
fi
while read line
do
echo ""
Display --indent $1 --text "$line" --result 'INFO' --color BLUE
certutil -L -d $PROFILDIR -n "$line" -a > $TMP_CERT
check_certificate $TMP_CERT $1 "$line"
done < $TMP_LIST
}
################################################################################
################################################################################
#Add a compliance result
#The result must be present first
Compliance() {
if [ -z "$1" ] ; then
echo 'Error missing parameter #1'
return 1;
fi
TESTNAME_ID="`echo $TESTNAME | cut -d\ -f1`"
TESTNAME_TEXT="`echo $TESTNAME | cut -d\ -f2- | sed 's/[A-Z][A-Z]*ID=[0-9,-]*[[:space:]]//' | sed 's/NSAG=[0-9,\.-]*[[:space:]]//'`"
echo "" >> ${COMPLIANCE_OUTPUT}
echo "$TESTNAME" >> ${COMPLIANCE_OUTPUT}
COMP_RESULT='UNK'
COMP_TYPE='CCE'
COMP_ID='0'
COMP_PLUGIN=""
COMPLIANCE_COLOR='lightgreen'
while [ $# -ge 1 ]; do
if [ "$COMP_RESULT" = 'UNK' ];then
COMPLIANCE_COLOR='blue'
fi
if [ "$COMP_RESULT" = 'NOTIMPL' ];then
COMPLIANCE_COLOR='lightgrey'
fi
if [ "$COMP_RESULT" = 'NOTTESTED' ];then
COMPLIANCE_COLOR='lightgrey'
fi
if [ "$COMP_RESULT" = 'NOK' ];then
COMPLIANCE_COLOR='red'
fi
if [ "$COMP_RESULT" = 'OK' ];then
COMPLIANCE_COLOR='lightgreen'
fi
case $1 in
--result)
shift
if [ -z "$1" ] ; then
echo "Missing parameter to result"
return 1;
fi
COMP_RESULT="$1"
shift
;;
--cid)
shift
if [ -z "$1" ] ; then
echo "Missing parameter to cid"
return 1;
fi
COMP_ID="$1"
echo "${COMP_TYPE},${COMP_ID},${COMP_RESULT},${COMP_PLUGIN}" >> ${COMPLIANCE_OUTPUT}
if [ "${COMP_TYPE}" = 'NSAG' ];then
echo "<tr>
<td></td>
<td style=\"background-color: $COMPLIANCE_COLOR; text-align: center\">$TESTNAME_ID</td>
<td style=\"background-color: $COMPLIANCE_COLOR; text-align: center\">$1</td>
<td style=\"background-color: $COMPLIANCE_COLOR; text-align: center\">$COMP_RESULT</td>
<td>$TESTNAME_TEXT</td>
</tr>
" >> ${HTML_COMPLIANCE_OUTPUT_PREFIX}_NSAG
fi
shift
;;
--type)
shift
if [ -z "$1" ] ; then
echo "Missing parameter"
return 1;
fi
COMP_TYPE="$1"
shift
;;
--nsag)
shift
if [ -z "$1" ] ; then
echo "Missing parameter to nsag"
return 1;
fi
if [ $1 != '0' ] ; then
echo "NSAG,$1,${COMP_RESULT},${COMP_PLUGIN}" >> ${COMPLIANCE_OUTPUT}
echo "<tr>
<td></td>
<td style=\"background-color: $COMPLIANCE_COLOR; text-align: center\">$TESTNAME_ID</td>
<td style=\"background-color: $COMPLIANCE_COLOR; text-align: center\">$1</td>
<td style=\"background-color: $COMPLIANCE_COLOR; text-align: center\">$COMP_RESULT</td>
<td>$TESTNAME_TEXT</td>
</tr>
" >> ${HTML_COMPLIANCE_OUTPUT_PREFIX}_NSAG
fi
shift
;;
--cce)
shift
if [ -z "$1" ] ; then
echo "Missing parameter to cce"
return 1;
fi
#TODO check if multiple id is gived with ','
if [ $1 != '0' ] ; then
echo "CCE,$1,${COMP_RESULT},${COMP_PLUGIN}" >> ${COMPLIANCE_OUTPUT}
fi
shift
;;
--plugin)
shift
if [ -z "$1" ] ; then
Display_error "Missing parameter to --plugin"
return 1;
fi
COMP_PLUGIN="$1"
shift
;;
--color)
shift
if [ -z "$1" ] ; then
Display_error "ERROR: Missing parameter to --color"
return 1;
fi
YASAT_COLOR="$1"
if [ "$1" = 'green' -o "$1" = 'GREEN' ];then
YASAT_COLOR='lightgreen'
YASAT_COMP_GREEN=$(($YASAT_COMP_GREEN+1))
fi
if [ "$1" = 'orange' -o "$1" = 'ORANGE' ];then
YASAT_COMP_ORANGE=$(($YASAT_COMP_ORANGE+1))
fi
if [ "$1" = 'red' -o "$1" = 'RED' ];then
YASAT_COMP_RED=$(($YASAT_COMP_RED+1))
fi
if [ "$1" = 'blue' -o "$1" = 'BLUE' ];then
YASAT_COLOR='lightblue'
fi
shift
;;
--yasatresult)
shift
if [ -z "$1" ] ; then
Display_error "ERROR: Missing parameter to --color"
return 1;
fi
echo "<tr>
<td></td>
<td style=\"background-color: $YASAT_COLOR; text-align: center\">$TESTNAME_ID</td>
<td>$1</td>
<td>$TESTNAME_TEXT</td>
</tr>
" >> ${HTML_COMPLIANCE_OUTPUT_PREFIX}_YASAT
shift
;;
*)
Display_error "ERROR: Unknown option $1"
return 1;
;;
esac
done
TESTNAME=''
}
################################################################################
################################################################################
Compliance_result() {
if [ -e "${HTML_COMPLIANCE_OUTPUT_PREFIX}_NSAG" ];then
echo "<html><head><link href='./yasat.css' rel='stylesheet' type='text/css'></head><table>
`cat ${HTML_COMPLIANCE_OUTPUT_PREFIX}_NSAG`
</table>" > ${HTML_COMPLIANCE_OUTPUT_PREFIX}_NSAG.html
fi
if [ -e "${HTML_COMPLIANCE_OUTPUT_PREFIX}_YASAT" ];then
echo "<html><head><link href='./yasat.css' rel='stylesheet' type='text/css'></head><table>
`cat ${HTML_COMPLIANCE_OUTPUT_PREFIX}_YASAT`
</table>" > ${HTML_COMPLIANCE_OUTPUT_PREFIX}_YASAT.html
fi
if [ ! -z "`echo $DO_COMPLIANCE |grep -iE 'CCE|all'`" ];then
NBCCE=`grep ^CCE $COMPLIANCE_OUTPUT | sort | uniq | wc -l`
NBCCE_REAL=`grep ^CCE $COMPLIANCE_OUTPUT | grep 'OK,' | sort | uniq | wc -l`
NBCCE_OK=`grep ^CCE $COMPLIANCE_OUTPUT | grep ',OK,' | sort | uniq | wc -l`
NBCCE_NOTIMPL=`grep ^CCE $COMPLIANCE_OUTPUT | grep ',NOTIMPL,' | sort | uniq | wc -l`
NBCCE_NOTTESTED=`grep ^CCE $COMPLIANCE_OUTPUT | grep ',NOTTESTED,' | sort | uniq | wc -l`
if [ $NBCCE -ge 1 ] ; then
echo "You have passed CCE $NBCCE_OK of $NBCCE tests ($(($NBCCE_OK*100/$NBCCE))%)"
fi
echo "but $NBCCE_NOTTESTED are not tested and $NBCCE_NOTIMPL are not implemented"
if [ $NBCCE_REAL -eq 0 ] ; then
NBCCE_REAL=1
fi
echo "So your real score is CCE $NBCCE_OK of $NBCCE_REAL $(($NBCCE_OK*100/$NBCCE_REAL))%"
fi
if [ ! -z "`echo $DO_COMPLIANCE |grep -iE 'NSA|all'`" ];then
NBNSAG=`grep ^NSAG $COMPLIANCE_OUTPUT | sort | uniq | wc -l`
NBNSAG_REAL=`grep ^NSAG $COMPLIANCE_OUTPUT | grep 'OK,' | sort | uniq | wc -l`
NBNSAG_OK=`grep ^NSAG $COMPLIANCE_OUTPUT | grep ',OK,' | sort | uniq | wc -l`
NBNSAG_NOK=`grep ^NSAG $COMPLIANCE_OUTPUT | grep ',NOK,' | sort | uniq | wc -l`
NBNSAG_NOTIMPL=`grep ^NSAG $COMPLIANCE_OUTPUT | grep ',NOTIMPL,' | sort | uniq | wc -l`
NBNSAG_NOTTESTED=`grep ^NSAG $COMPLIANCE_OUTPUT | grep ',NOTTESTED,' | sort | uniq | wc -l`
if [ $NBNSAG -ge 1 ] ; then
echo "You have passed $NBNSAG_OK of $NBNSAG tests ($(($NBNSAG_OK*100/$NBNSAG))%) of thee NSA guide"
fi
echo "but $NBNSAG_NOTTESTED are not tested and $NBNSAG_NOTIMPL are not implemented"
if [ $NBNSAG_REAL -eq 0 ] ; then
NBNSAG_REAL=1
fi
PERCENT_OK=$(($NBNSAG_OK*100/$NBNSAG))
PERCENT_NOK=$(($NBNSAG_NOK*100/$NBNSAG))
PERCENT_NOTIMPL=$(($NBNSAG_NOTIMPL*100/$NBNSAG))
PERCENT_NOTTESTED=$(($NBNSAG_NOTTESTED*100/$NBNSAG))
echo "So your real score is $NBNSAG_OK of $NBNSAG_REAL $(($NBNSAG_OK*100/$NBNSAG_REAL))%"
if [ -e "${HTML_COMPLIANCE_OUTPUT_PREFIX}_NSAG" ];then
echo "<center><table class='resultats'><tr>
<td><div style=\"background-color: lightgreen; height: $PERCENT_OK%; width: 40px\"> </div></td>
<td>OK<br>$PERCENT_OK%</td>
<td><div style=\"background-color: red; height: $PERCENT_NOK%; width: 40px\"> </div></td>
<td>KO<br>$PERCENT_NOK%</td>
<td><div style=\"background-color: lightgrey; height: $PERCENT_NOTIMPL%; width: 40px\"> </div></td>
<td>not implemented<br>$PERCENT_NOTIMPL%</td>
<td><div style=\"background-color: lightgrey; height: $PERCENT_NOTTESTED%; width: 40px\"> </div></td>
<td>not tested<br>$PERCENT_NOTTESTED%</td>
</tr></table></center><html>" >> ${HTML_COMPLIANCE_OUTPUT_PREFIX}_NSAG.html
fi
fi
if [ ! -z "`echo $DO_COMPLIANCE |grep -iE 'yasat|all'`" ];then
echo "RED $YASAT_STAT_RED ORANGE $YASAT_STAT_ORANGE GREEN $YASAT_STAT_GREEN"
fi
if [ -e "${HTML_COMPLIANCE_OUTPUT_PREFIX}_YASAT" ];then
YASAT_TOTAL_TEST=$(($YASAT_COMP_RED+$YASAT_COMP_ORANGE+$YASAT_COMP_GREEN))
if [ $YASAT_TOTAL_TEST -eq 0 ];then
YASAT_TOTAL_TEST=1
fi
PERCENT_GREEN=$(($YASAT_COMP_GREEN*100/$YASAT_TOTAL_TEST))
PERCENT_ORANGE=$(($YASAT_COMP_ORANGE*100/$YASAT_TOTAL_TEST))
PERCENT_RED=$(($YASAT_COMP_RED*100/$YASAT_TOTAL_TEST))
echo "<center><table class='resultats'><tr>
<td><div style=\"background-color: lightgreen; height: $PERCENT_GREEN%; width: 40px\"> </div></td>
<td>GREEN<br>$PERCENT_GREEN% ($YASAT_COMP_GREEN of $YASAT_TOTAL_TEST)</td>
<td><div style=\"background-color: orange; height: $PERCENT_ORANGE%; width: 40px\"> </div></td>
<td>ORANGE<br>$PERCENT_ORANGE% ($YASAT_COMP_ORANGE of $YASAT_TOTAL_TEST)</td>
<td><div style=\"background-color: red; height: $PERCENT_RED%; width: 40px\"> </div></td>
<td>RED<br>$PERCENT_RED% ($YASAT_COMP_RED of $YASAT_TOTAL_TEST)</td>
</tr></table></center><html>" >> ${HTML_COMPLIANCE_OUTPUT_PREFIX}_YASAT.html
fi
# echo "<html><head></head><table>
# `cat $HTML_COMPLIANCE_BODY_OUTPUT`
# </table>
# </html>" > $HTML_COMPLIANCE_OUTPUT
}
################################################################################
################################################################################
# Since sysctl value could be found in /etc/sysctl.conf and in /etc/sysctl.d/*.conf
Get_sysctl() {
RESULTAT='notfound'
if [ -z "$1" ] ; then
echo 'Error missing parameter #1: value searched'
return 1;
fi
Get_sysctl_tmp="$TEMPYASATDIR/getsysctl"
> "$Get_sysctl_tmp"
if [ -e "$SCAN_ROOT/etc/sysctl.conf" ] ; then
grep -v '^#' $SCAN_ROOT/etc/sysctl.conf >> "$Get_sysctl_tmp"
fi
if [ -e "$SCAN_ROOT/etc/sysctl.d" ] ; then
grep -v '^#' "$SCAN_ROOT/etc/sysctl.d/*.conf" >> "$Get_sysctl_tmp" 2> /dev/null
fi
RESULTAT="`grep ^$1 $Get_sysctl_tmp | sed 's,^.*=[[:space:]]*,,'`"
rm "$Get_sysctl_tmp"
}
################################################################################
################################################################################
Get_limits_conf() {
RESULTAT='notfound'
if [ -z "$1" ] ; then
echo 'Error missing parameter #1: hard/soft'
return 1;
fi
if [ -z "$2" ] ; then
echo 'Error missing parameter #2: key'
return 1;
fi
Get_limits_tmp="$TEMPYASATDIR/getlimitsconf"
> "$Get_limits_tmp"
if [ -e "$SCAN_ROOT/etc/security/limits.conf" ] ; then
grep -v '^#' $SCAN_ROOT/etc/security/limits.conf >> "$Get_limits_tmp"
fi
if [ -e "$SCAN_ROOT/etc//security/limits.d" ] ; then
grep -v '^#' "$SCAN_ROOT/etc/security/limits.d/*.conf" >> "$Get_limits_tmp" 2> /dev/null
fi
RESULTAT=`grep "$1[[:space:]][[:space:]]*$2" $Get_limits_tmp |sed 's/[[:space:]][[:space:]]*/ /g' | cut -d\ -f4`
rm "$Get_limits_tmp"
}
################################################################################
################################################################################
# Check_tool_presence check for a binary, if found, store the full path in RESULTAT
# if not found, RESULTAT is set to notfound
# parameter 1 is the tool name
# parameter 2 (optional) could be LOCAL, meaning we want to search for a tool in the host in case of SCAN_ROOT
Check_tool_presence() {
RESULTAT='notfound'
if [ -z "$1" ] ; then
echo 'Error missing parameter #1: binary name'
return 1;
fi
# which is not present on minimum CentOS,
POSSIBLE_PATH_FOR_WHICH="/usr/bin /bin /usr/sbin /sbin"
FOUND_WHICH=0
for ppath in $POSSIBLE_PATH_FOR_WHICH
do
if [ -x ${ppath}/which ];then
FOUND_WHICH=1
fi
done
if [ $FOUND_WHICH -eq 1 ];then
#TODO SCAN_ROOT
PATH_TO_TOOL="`which $1 2>> $ERROR_OUTPUT_FILE`"
if [ $? -ne 0 ];then
return 1;
fi
RESULTAT="$PATH_TO_TOOL"
return 0;
else
POSSIBLE_PATH="`echo $PATH | tr \: \ `"
for ppath in $POSSIBLE_PATH
do
if [ -x ${ppath}/$1 ];then
RESULTAT="${ppath}/$1"
return 0;
fi
done
fi
return 1;
}
################################################################################
################################################################################
# getent is not available on some platform (OpenWrt)
# getent cannot be used with SCAN_ROOT
my_getent() {
MY_PASSWD="${TEMPYASATDIR}/my_passwd"
if [ -z "$SCAN_ROOT" -o "$SCAN_ROOT" = '/' ];then
Check_tool_presence getent
if [ "$RESULTAT" = 'notfound' ];then
cat /etc/passwd > $MY_PASSWD
return 0;
else
getent passwd > $MY_PASSWD
return 0;
fi
else
if [ -e "$SCAN_ROOT/etc/passwd" ];then
cat $SCAN_ROOT/etc/passwd > $MY_PASSWD
return 0;
else
Display_error "Error: $SCAN_ROOT/etc/passwd cannot be found"
> $MY_PASSWD
return 1;
fi
fi
}
################################################################################
################################################################################
print_desc() {
if [ ! -e "$PLUGINS_REP/$1.test" ];then
Display_error "ERROR: cannot find plugin $1"
return 1;
fi
#TODO plugin desc variable
grep 'YASAT_TEST' "$PLUGINS_REP/$1.test" | sed 's,^[[:space:]]*,,'
}
################################################################################
################################################################################
|