1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
|
2009-02-05 21:22 eugeni
* NEWS: Updated NEWS.
2009-02-05 21:22 eugeni
* src/msec/libmsec.py, src/msec/msec.py, src/msec/msecperms.py:
Implemented quiet mode.
2009-02-05 21:22 eugeni
* src/msec/config.py, src/msec/msec.py, src/msec/msecperms.py:
Support for getting config and logging from a different root.
2009-02-05 21:22 eugeni
* src/msec/libmsec.py: Falling back to interactive logging if other
loggers are not available
2009-02-05 21:21 eugeni
* src/msec/libmsec.py, src/msec/msecperms.py: Support for running
msecperms with custom root.
2009-02-05 21:21 eugeni
* src/msec/man.py: Removed bogus version information.
2009-02-05 21:21 eugeni
* Makefile: Automatic man page regeneration.
2009-02-05 21:21 eugeni
* src/msec/man.py: Updated references to default level in man.
2009-02-05 21:21 eugeni
* conf/level.standard: Changed 'default' to 'standard' in
CREATE_SERVER_LINK.
2009-02-05 21:20 eugeni
* Makefile, NEWS: 0.60.10
2009-02-05 21:20 eugeni
* po/pt_BR.po: Updated pt_BR translation.
2009-02-05 21:20 eugeni
* po/msec.pot: Updated POT file.
2009-02-05 21:20 eugeni
* conf/level.default, conf/level.standard, conf/perm.default,
conf/perm.standard, conf/server.default, conf/server.standard,
src/msec/config.py, src/msec/msecgui.py, src/msec/msecperms.py:
Renamed level 'default' to level 'standard'.
2009-02-05 21:20 eugeni
* conf/level.default: Not running RPM check in default level.
2009-02-05 21:19 eugeni
* src/msec/config.py, src/msec/libmsec.py, src/msec/msec.py: Added
support for running in chroot.
2009-02-05 21:19 eugeni
* man/C/msec.8: Removed manfile (generated automatically by make
man).
2009-02-05 21:19 eugeni
* src/msec/config.py, src/msec/libmsec.py: Added initial support
for plugins.
2009-02-05 21:19 eugeni
* src/msec/config.py, src/msec/libmsec.py: Removed more dead code.
2009-02-05 21:19 eugeni
* src/msec/libmsec.py: Removed dead code.
2009-02-05 21:18 eugeni
* src/msec/msecgui.py: Improved GTK packing for initial msecgui
screen.
2009-02-05 21:18 eugeni
* po/pt_BR.po: Updates to pt_BR.
2009-01-29 21:31 eugeni
* NEWS: Updated NEWS.
2009-01-29 21:13 eugeni
* Makefile: Added gitdist target to Makefile to build from git.
2009-01-29 21:13 eugeni
* src/msec/msecgui.py: Improved locale handling.
2009-01-29 21:13 eugeni
* po/Makefile: Installing po to correct directory.
2009-01-29 21:12 eugeni
* Makefile: Installing po files.
2009-01-29 20:15 eugeni
* po/pt_BR.po: Initial version of pt_BR translation.
2009-01-29 20:15 eugeni
* po/Makefile, po/msec.pot: Added localization.
2009-01-29 18:35 eugeni
* conf/level.default, conf/level.secure, src/msec/libmsec.py: Fixed
umask for windows partitions.
2009-01-29 18:34 eugeni
* po, po/pygettext.py, src/msec/libmsec.py: A few more spelling
changes and imported pygettext.py.
2009-01-29 18:34 eugeni
* src/msec/config.py, src/msec/libmsec.py: Improved option
description (#47240).
2009-01-26 16:21 eugeni
* NEWS: Updated NEWS.
2009-01-26 16:12 eugeni
* conf/level.default, src/msec/config.py, src/msec/libmsec.py:
Using without-password instead of without_password.
2009-01-26 16:02 eugeni
* Makefile, NEWS: 0.60.8
2009-01-26 15:36 eugeni
* cron-sh/security.sh: Running expensive msec_find only when
required.
2009-01-26 15:36 eugeni
* cron-sh/security_check.sh: Fixing permissions on msec-created
files (#27820 #47059).
2009-01-26 15:36 eugeni
* src/msec/libmsec.py: Handling network settings as in previous
msec versions (#47240).
2009-01-26 15:01 eugeni
* src/msec/msecgui.py: Added default response to Save dialog.
2009-01-26 12:36 eugeni
* src/msec/libmsec.py, src/msec/msecperms.py: Implemented support
for custom paths checks in msecperms.
2009-01-21 16:24 eugeni
* Makefile, NEWS: 0.60.7 - now correctly integrating with MCC.
2009-01-21 16:21 eugeni
* src/msec/msecgui.py: Now handling close events when closing from
MCC.
2009-01-21 16:20 eugeni
* src/msec/msec, src/msec/msecgui, src/msec/msecperms: Now
executing python files correctly.
2009-01-20 16:34 eugeni
* NEWS: Updated NEWS for 0.60.6.
2009-01-20 16:25 eugeni
* src/msec/libmsec.py: Fixed periodic security check crontab
creation.
2009-01-20 15:56 eugeni
* Makefile, man/C/msec.8, src/msec/version.py: 0.60.6
2009-01-20 15:56 eugeni
* src/msec/msecgui.py: Removed notification tab (merged with
periodic checks).
2009-01-20 15:55 eugeni
* src/msec/msecgui.py: Implemented gui for mail/desktop
notifications.
2009-01-20 15:55 eugeni
* src/msec/libmsec.py: Fixed detection of
moved/symlinked/touched/removed files.
2009-01-20 15:55 eugeni
* src/msec/msecgui.py: Better options spacing and expanding.
2009-01-20 15:55 eugeni
* src/msec/msecgui.py: Support for custom options highlighting and
button accelerators.
2009-01-20 15:55 eugeni
* conf/server.default, conf/server.secure: Added haldaemon to safe
services.
2009-01-20 15:54 eugeni
* src/msec/msecgui.py: Checking for DISPLAY before starting GUI.
2009-01-20 15:54 eugeni
* src/msec/msecgui.py: Removed dead code.
2009-01-20 15:54 eugeni
* src/msec/msecgui.py: Changed initial screen.
2009-01-20 15:54 eugeni
* src/msec/msecgui.py: Support for highlighting default options.
2009-01-20 15:54 eugeni
* src/msec/msecgui.py: Implemented asking for saving changes.
2009-01-20 15:53 eugeni
* src/msec/help_draksec.py, src/msec/libmsec.py: Updated function
help.
2009-01-20 15:53 eugeni
* src/msec/libmsec.py: Fixed inittab handling.
2009-01-20 15:53 eugeni
* src/msec/config.py, src/msec/libmsec.py, src/msec/msecgui.py:
Removed Authentication tab (now handled by a separate MCC app),
improved file modifications check and not quitting when saving
setting.
2009-01-14 12:36 eugeni
* Makefile, NEWS: Updated to 0.60.5.
2009-01-14 12:33 eugeni
* src/msec/libmsec.py, src/msec/msecperms.py: Making --enforce work
with msecperms.
2009-01-13 22:43 eugeni
* man/C/msec.8, src/msec/version.py: Updated man page and version.
2009-01-13 21:51 eugeni
* Makefile, NEWS: Updated version to 0.60.4 and improved NEWS
formatting.
2009-01-13 21:51 eugeni
* src/msec/libmsec.py: Added missing function descriptions.
2009-01-13 21:34 eugeni
* src/msec/msecgui.py: Added menu shortcuts and removed debugging
messages.
2009-01-13 21:34 eugeni
* src/msec/config.py, src/msec/msecgui.py: Implemented default
permission loading.
2009-01-13 21:34 eugeni
* src/msec/msecgui.py: More detailed 'Details..' message, and fix
for not saving permissions.
2009-01-13 21:34 eugeni
* src/msec/msecgui.py: Now reverting default permissions for level.
2009-01-13 21:33 eugeni
* src/msec/config.py, src/msec/msecgui.py: Support for graphical
level changes.
2009-01-13 21:33 eugeni
* src/msec/config.py, src/msec/libmsec.py, src/msec/msecgui.py:
More work on option presetting for level.
2009-01-13 21:33 eugeni
* src/msec/libmsec.py, src/msec/msecgui.py: Initial support for
auth commands in libmsec.
2009-01-13 21:33 eugeni
* src/msec/msecgui.py: Added menu and save screen.
2009-01-13 21:33 eugeni
* src/msec/msecgui.py: Bugfix for auth permission saving.
2009-01-13 21:32 eugeni
* src/msec/config.py, src/msec/msecgui.py: Initial support for
BASE_LEVEL scheme.
2009-01-13 21:32 eugeni
* src/msec/msecperms.py: Removed unneeded variables.
2009-01-13 21:32 eugeni
* conf/level.none: Defining BASE_LEVEL for none level.
2009-01-13 21:32 eugeni
* src/msec/libmsec.py: Bugfixes for old parameters.
2009-01-13 21:31 eugeni
* man/C/msec.8, src/msec/man.py: Updated man page and added
examples.
2009-01-13 21:31 eugeni
* src/msec/libmsec.py: Better description for BASE_LEVEL.
2009-01-13 21:31 eugeni
* conf/level.default, conf/level.none, conf/level.secure,
conf/perm.none: Support for BASE_LEVEL and correct 'none' level,
which disables all msec
checks.
2009-01-13 21:31 eugeni
* src/msec/config.py, src/msec/msec.py, src/msec/msecperms.py:
Modified level enforcing. Now overwriting the correspondent
security
files with default settings, therefore allowing more complete
level
configuration.
2009-01-13 21:30 eugeni
* src/msec/version.py: Updated version in version.py.
2009-01-13 21:30 eugeni
* src/msec/libmsec.py: More informative wrong permission message.
2009-01-13 21:30 eugeni
* conf/perm.default, conf/perm.none, conf/perm.secure: Updated
permissions.
2009-01-07 23:08 eugeni
* Makefile, NEWS: 0.60.3.
2009-01-07 22:59 eugeni
* src/msec/msecgui.py: Removed debug message.
2009-01-07 22:58 eugeni
* src/msec/msec.py, src/msec/msecgui.py, src/msec/msecperms.py:
Better option handling and embedding support.
2009-01-07 22:05 eugeni
* man/C/msec.8, src/msec/msecgui.py, src/msec/version.py: Updated
man and initial screen.
2009-01-07 22:05 eugeni
* src/msec/msecgui.py: Fixed security option selection.
2009-01-07 22:05 eugeni
* src/msec/libmsec.py: Typo fixed.
2009-01-07 22:05 eugeni
* src/msec/config.py, src/msec/libmsec.py, src/msec/msecgui.py:
Implemented authentication.
2009-01-07 22:04 eugeni
* src/msec/msec.py: Removed unused variable.
2009-01-07 22:04 eugeni
* src/msec/libmsec.py: Fixed typo in gdm warning message.
2009-01-07 22:04 eugeni
* cron-sh/security.sh: Replaces /etc/sysconfig/msec with
/etc/security/shell.
2009-01-07 09:32 eugeni
* Makefile: 0.60.2.
2009-01-07 04:26 eugeni
* src/msec/libmsec.py: Fix for kde X server permissions.
2009-01-07 03:48 tv
* ChangeLog: Generated by svn2cl the 07_Jan
2009-01-07 03:48 tv
* Makefile: (changelog) autocommit
2009-01-07 03:46 tv
* Makefile: typo fix
2009-01-07 03:45 tv
* AUTHORS, doc/msec.lyx, src/msec_find/find.c,
src/promisc_check/promisc_check.c: MandrakeSoft was renamed as
Mandriva years ago
2009-01-07 03:43 tv
* man/C/msec.8, src/msec/README, src/msec/man.py: kill dead fred's
email
2009-01-07 03:42 tv
* cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
cron-sh/security_check.sh, doc/msec.lyx, init-sh/cleanold.sh:
kill dead yoann's email
2009-01-07 03:42 tv
* Makefile: (changelog) kill backup file
2009-01-07 03:40 tv
* README: let's try to redirect people to right man
2009-01-07 03:39 tv
* AUTHORS: kill dead email (fred doesn't work for us for years)
2009-01-07 03:22 tv
* Makefile: (changelog) use --accum
2009-01-07 03:21 tv
* ChangeLog: update
2009-01-07 03:20 tv
* NEWS: log next releases
2009-01-07 03:19 tv
* NEWS: commit NEWS that I forgot to commit monthes ago
2009-01-07 03:18 tv
* Makefile: (changelog) use common/username.xml
2009-01-07 02:34 eugeni
* ChangeLog: Updated ChangeLog.
2009-01-07 01:57 eugeni
* man/C/msec.8, src/msec/libmsec.py: Updated terminal log option.
2009-01-07 01:36 eugeni
* src/msec/config.py, src/msec/msecgui.py: More informative system
permission changes.
2009-01-07 01:16 eugeni
* src/msec/msecgui.py: Implemented permissions saving.
2009-01-07 01:15 eugeni
* src/msec/msecgui.py: Implemented system permission changes.
2009-01-07 01:15 eugeni
* src/msec/msecgui.py: Initial support for permission changes.
2009-01-07 00:25 eugeni
* src/msec/msecgui.py: Removed (a few) debugging messages.
2009-01-07 00:25 eugeni
* cron-sh/security_check.sh: Improved system permissions check.
2009-01-07 00:11 eugeni
* src/msec/msec.py: Disabled logging to syslog from msec.py.
2009-01-06 23:53 eugeni
* cron-sh/security_check.sh: Support for system files permission
checks.
2009-01-06 23:53 eugeni
* cron-sh/security_check.sh, src/msec/libmsec.py,
src/msec/msecperms.py: Non-interactive permissions checking.
2009-01-06 23:35 eugeni
* Makefile: Fixed typo for logrotate installation.
2009-01-06 22:31 eugeni
* Makefile: Support for installing logrotate file.
2009-01-06 22:31 eugeni
* src/msec/README: Re-created README from man.
2009-01-06 22:31 eugeni
* Makefile: Support for profile.d stuff installation.
2009-01-06 22:30 eugeni
* msec.csh, msec.sh, profile.d, profile.d/msec.csh,
profile.d/msec.sh: Added updated profile.d files.
2009-01-06 22:30 eugeni
* AUTHORS: Updated AUTHORS file.
2009-01-06 22:30 eugeni
* src/msec/libmsec.py: Now saving shell security variables in
/etc/security/shell.
2009-01-06 22:04 eugeni
* man/C/msecgui.8, man/C/msecperm.8: Added man page for msecgui and
msecperm (link to msec.8).
2009-01-06 21:31 eugeni
* Makefile, conf/level.default, conf/level.none, conf/level.secure,
conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, conf/perm.default, conf/perm.none, conf/perm.secure,
conf/server.4, conf/server.5, conf/server.default,
conf/server.secure, cron-sh/diff_check.sh,
cron-sh/promisc_check.sh, cron-sh/security.sh,
cron-sh/security_check.sh, man/C/msec.8, man/C/mseclib.3,
share/.svnignore, share/CHANGES, share/Config.py,
share/ConfigFile.py, share/Log.py, share/Makefile,
share/Perms.py, share/README, share/compile.py,
share/draksec_help.py, share/libmsec.py, share/man.py,
share/msec, share/msec.py, share/shadow.py, src/msec,
src/msec/.svnignore, src/msec/CHANGES, src/msec/Makefile,
src/msec/README, src/msec/compile.py, src/msec/config.py,
src/msec/help_draksec.py, src/msec/libmsec.py, src/msec/man.py,
src/msec/msec, src/msec/msec.py, src/msec/msecgui,
src/msec/msecgui.py, src/msec/msecperms, src/msec/msecperms.py,
src/msec/version.py, src/msec_find/Makefile,
src/promisc_check/Makefile: Updated to working version of new
msec.
Conflicts:
Makefile
cron-sh/security_check.sh
share/msec.py
2009-01-06 21:31 eugeni
* cron-sh/security_check.sh: Added a note for bug #41709.
2008-12-16 19:29 eugeni
* cron-sh/security.sh: Simplified rpm database check (#14361).
2008-12-16 12:04 eugeni
* Makefile: 0.50.11
2008-12-16 12:04 eugeni
* cron-sh/security.sh: Fixed invalid characters in security.sh
(#26773).
2008-12-16 12:04 eugeni
* share/msec.py: Fixed sshd_config PermitRootLogin check (#19726).
2008-09-30 12:46 tv
* Makefile: 0.50.10
2008-09-30 12:46 tv
* cron-sh/security.sh: run with idle IOnice priority (#42795)
2008-09-30 12:19 tv
* cron-sh/security.sh: blacklist cifs instead of only smbfs for
samba
2008-09-30 12:18 tv
* cron-sh/security.sh: exclude /media from searching like /mnt is
2008-03-25 15:08 pixel
* ChangeLog: sync
2008-03-25 15:08 pixel
* Makefile: 0.50.9: do not allow msec to mess with umask=xxx for
vfat in level 3 (#37222)
2008-03-25 15:06 pixel
* share/msec.py: do not allow msec to mess with umask=xxx for vfat
in level 3 (#37222)
2008-03-07 10:04 tv
* ChangeLog: update
2008-03-07 10:00 tv
* Makefile: (tar) no need to be verbose
2008-03-07 10:00 tv
* Makefile: add space
2008-03-07 09:59 tv
* Makefile: (tar) prevent using a large & useless temporary file
2008-03-07 09:59 tv
* Makefile: (dir) kill it since it would break svn export which
need to remove it
before operating
2008-03-07 09:58 tv
* Makefile: (localdist) kill it since it performs the same stuff as
(dist)
2008-03-07 09:58 tv
* Makefile: (localcopy) kill it; it's useless with SVN, svn export
does a better job
2008-03-07 09:57 tv
* Makefile: (tar) no need to copy again the files through (export)
since both
(dist) & (localdist) already did it
2008-03-07 09:55 tv
* Makefile: (export) do not package uncommited local diff (if any)
2008-03-07 09:55 tv
* Makefile: (export) let's be not verbose
2008-03-07 09:54 tv
* Makefile: (export) simplify
2008-03-07 09:54 tv
* Makefile: (export) fix it when using a locale != C
2008-03-07 09:50 tv
* share/.cvsignore, share/.svnignore: rename .cvsignore as
.svnignore
2008-03-07 09:49 tv
* Makefile: (localcopy) we no more have CVS/ but .svn
2008-03-07 09:45 tv
* Makefile: 0.50.8
2008-03-07 09:45 tv
* cron-sh/security.sh: reduce I/O priority
2008-01-25 12:23 andreas
* Makefile, src/msec_find/Makefile: - use large file support in
msec_find (#36047)
2008-01-25 11:17 andreas
* Makefile, cron-sh/security.sh: - remove non-printable characters
from email report
(#36848)
2008-01-11 20:11 andreas
* man/C/mseclib.3: - add EXCLUDE_REGEXP to mseclib.3 manpage
2008-01-11 18:40 andreas
* ChangeLog: - update ChangeLog
2008-01-11 18:08 andreas
* Makefile, share/ConfigFile.py: - fix infinitely growing kdmrc
with set variable AllowShutdown to None (#12821)
2008-01-11 17:28 andreas
* Makefile: - typo fix in makefile
2008-01-11 17:06 andreas
* Makefile: - prepare 0.50.4
2008-01-11 17:03 andreas
* ChangeLog: - update ChangeLog
2008-01-11 17:00 andreas
* cron-sh/security.sh: - don't place too many packages in the
command line (#36656)
2008-01-11 13:35 andreas
* src/msec_find/find.c: - exclude pipes and sockets from
world-writable report (#27530)
2008-01-11 13:34 andreas
* share/Perms.py: - properly dereference symlinks when checking for
remote filesystem (#14387)
2008-01-11 13:31 andreas
* ChangeLog, cron-sh/security.sh, share/Perms.py,
src/msec_find/find.c: - oops, revert 232939, more changes got
into that commit than I wanted
2008-01-11 13:28 andreas
* ChangeLog, cron-sh/security.sh, share/Perms.py,
src/msec_find/find.c: - properly dereference symlinks when
checking for remote filesystem (#14387)
2008-01-10 20:32 andreas
* Makefile: - do an svn up before svn2cl to make sure log messages
are current
2008-01-10 20:30 andreas
* cron-sh/security.sh: - include rpc_pipefs and securityfs in the
list of filesystems that should
be skipped for msec_find
2008-01-10 19:30 andreas
* cron-sh/diff_check.sh, cron-sh/security.sh: - include chkrootkit
diff report (#21369)
2008-01-10 19:09 andreas
* cron-sh/security.sh: - include ipv6 in the report (#19486)
2008-01-10 17:13 andreas
* share/libmsec.py: - gdm.conf is now called custom.conf
2008-01-10 17:12 andreas
* conf/perm.2, conf/perm.3: - don't change X's log file permissions
(#2778)
2007-08-18 16:11 nanardon
* man/C/mseclib.3, share/libmsec.py, share/msec.py: - add
set_user_umask() for fs (pixel)
2007-03-05 10:23 guillomovitch
* Makefile: bump release
2007-03-05 10:22 guillomovitch
* Makefile: svntag target
2007-03-05 10:13 guillomovitch
* ChangeLog, Makefile: bump release
2007-03-05 10:10 guillomovitch
* cron-sh/security.sh: use /proc/mounts instead of mount output for
filtering filesystem, because of autofs v5 (fix #27284)
2007-03-02 00:22 nanardon
* share/libmsec.py: - fixing #12353 according solution found in dup
#29016
2007-03-02 00:13 nanardon
* share/libmsec.py: - fix #27956
2006-12-09 02:38 pablo
* man/cs/msec.8, man/et/msec.8, man/fi/msec.8, man/fr/msec.8,
man/it/msec.8, man/pl/msec.8, man/ru/msec.8, man/uk/msec.8:
converted to utf-8
2006-08-25 10:15 nanardon
* share/libmsec.py: - hopefully fix #12190
2006-08-25 10:14 nanardon
* Makefile: - 0.50.1
2006-08-11 02:55 nanardon
* ChangeLog, cron-sh/promisc_check.sh, cron-sh/security.sh: - add
-- to logger before message, fixing #24261
2006-08-04 14:48 nanardon
* msec.spec: - remove now useless spec file
2006-08-04 14:15 nanardon
* ChangeLog, Makefile, man/C/mseclib.3, msec.spec: - split rpm
generation from software, cleanup, svn adaptation
2006-08-04 14:01 nanardon
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, msec.csh, share/libmsec.py: - remove X11R6 reference
2006-05-04 14:11 mscherer
* src/msec_find/find.c: revert last spurious commit
2006-05-04 14:03 mscherer
* cron-sh/promisc_check.sh, cron-sh/security.sh,
src/msec_find/find.c: fix bug #21090, by using logger instead of
deprecated initlog, thanks blino
2005-11-21 10:21 flepied
* init-sh/custom.sh, init-sh/file_perm.sh, init-sh/grpuser.sh,
init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/levelsnf.sh, init-sh/lib.sh, init-sh/lib.sh.usermode,
init-sh/msec: no longer needed (since the switch to python)
2005-11-18 11:16 flepied
* ChangeLog: Generated by cvs2cl the 18_Nov
2005-11-18 11:15 flepied
* msec.spec: 0.49.1-1mdk
2005-11-18 11:10 flepied
* cron-sh/security_check.sh: fix bug #17921 by parsing correctly
the output of ls.
2005-11-14 15:20 flepied
* ChangeLog: Generated by cvs2cl the 14_Nov
2005-11-14 15:20 flepied
* msec.spec: real 0.49-1mdk
2005-11-14 15:18 flepied
* msec.spec: 0.49-1mdk
2005-11-14 15:16 flepied
* Makefile: fix version gathering
2005-11-14 15:04 flepied
* share/libmsec.py: fix #19206 by really generating
/var/lib/msec/security.conf
2005-09-19 14:50 flepied
* ChangeLog: Generated by cvs2cl the 19_Sep
2005-09-19 14:50 flepied
* msec.spec: 0.48-1mdk
2005-09-19 14:50 flepied
* share/libmsec.py: enable_pam_root_from_wheel: fixed too laxist
config in level 2 (bug #18403).
2005-09-08 22:46 flepied
* ChangeLog: Generated by cvs2cl the 09_Sep
2005-09-08 22:45 flepied
* msec.spec: 0.47.5-1mdk
2005-09-08 22:44 flepied
* share/Makefile: add a check to be sure to avoid print statements
in python files
2005-09-08 22:32 flepied
* share/libmsec.py: removed print statement.
2005-09-08 14:14 flepied
* ChangeLog: Generated by cvs2cl the 08_Sep
2005-09-08 14:14 flepied
* msec.spec: 0.47.4-1mdk
2005-09-08 14:10 flepied
* share/shadow.py: print_changes: make an exception for
set_shell_history_size.
2005-09-08 14:08 flepied
* share/ConfigFile.py: replace_line_matching: allow to pass the
string to insert at the end if nothing
is found.
2005-09-08 14:07 flepied
* share/libmsec.py: allow_xserver_to_listen: adapt to new way of
specifying X server arguments for kdm (bug #15759).
2005-09-08 10:19 flepied
* share/libmsec.py: fixed security.conf path (bug #18271).
2005-09-08 09:41 flepied
* share/msec.py: fix allow_xserver_to_listen in level 0 (bug
#18271).
2005-09-08 09:31 flepied
* man/C/mseclib.3: regenerated with the right email
2005-09-08 09:31 flepied
* share/man.py: fix email
2005-09-08 09:27 flepied
* msec.sh: bourne shell compatible
2005-09-08 09:25 flepied
* ChangeLog: Generated by cvs2cl the 08_Sep
2005-09-08 09:20 flepied
* cron-sh/security.sh: fix parsing of rpm -Va (bug #18326 , Michael
Reinsch).
2005-09-06 05:45 flepied
* cron-sh/security.sh: don't check sysfs and usbfs file system (bug
#14359).
2005-09-01 13:05 flepied
* ChangeLog: Generated by cvs2cl the 01_Sep
2005-09-01 13:04 flepied
* msec.spec: 0.47.3-1mdk
2005-09-01 12:53 flepied
* conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4, conf/perm.5:
make /etc/rc.d/init.d/functions always readable (bug #18080)
2005-08-17 06:53 flepied
* ChangeLog: Generated by cvs2cl the 17_Aug
2005-08-17 06:52 flepied
* msec.spec: 0.47.2-1mdk
2005-08-17 06:51 flepied
* share/libmsec.py: password_aging: fix for empty max field.
2005-08-16 08:15 flepied
* ChangeLog: Generated by cvs2cl the 16_Aug
2005-08-16 08:14 flepied
* msec.spec: 0.47.1-1mdk
2005-08-16 08:13 flepied
* share/libmsec.py: password_aging: really fix bug #17477 by not
parsing the output of chage anymore.
2005-08-13 22:16 tvignaud
* man/fr/msec.8: sync last missing bits with english version
2005-08-13 13:42 tvignaud
* man/fr/msec.8: sync the outdated fr translation with the en
version
2005-08-13 13:41 tvignaud
* man/C/msec.8: add manpage link
2005-08-12 08:27 flepied
* ChangeLog: Generated by cvs2cl the 12_Aug
2005-08-12 08:26 flepied
* msec.spec: fixed PreReq
2005-08-12 08:20 flepied
* ChangeLog: Generated by cvs2cl the 12_Aug
2005-08-12 08:17 flepied
* msec.spec: 0.47-1mdk
2005-08-12 08:10 flepied
* ChangeLog: Generated by cvs2cl the 12_Aug
2005-08-12 08:07 flepied
* cron-sh/security_check.sh: fix user or homedir with spaces in
(bug #16237).
2005-08-12 07:20 flepied
* share/libmsec.py: password_aging: never means -1
2005-08-12 06:18 flepied
* conf/perm.2, conf/perm.3, conf/perm.4, conf/perm.5: added
/etc/rc.d/init.d/xprint exception
2005-08-12 06:07 flepied
* share/libmsec.py: allow_user_list: fixed kdmrc settings.
support new inittab syntax for single user mode.
fix parsing of new chage output (bug #17477).
2005-08-10 06:33 flepied
* Makefile, cron-sh/security_check.sh, msec.spec, share/Config.py,
share/ConfigFile.py, share/Log.py, share/Makefile,
share/Perms.py, share/README, share/draksec_help.py,
share/man.py, share/msec, share/shadow.py: Mandriva Linux
2005-08-10 06:27 flepied
* share/Perms.py: more robust parsing
2005-08-10 06:26 flepied
* src/promisc_check/promisc_check.c: fixed compilation warnings
2005-08-09 22:41 flepied
* share/libmsec.py: fixed wrong kdmrc values (bug #16268).
follow new Single user need in inittab.
2005-07-14 04:00 flepied
* cron-sh/security_check.sh: shell variable protection (Frederic
Marmond).
2005-06-30 06:54 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: manage apache files (Guillaume Rousse) (bug #12183)
2005-06-17 10:01 flepied
* ChangeLog: Generated by cvs2cl the 17_Jun
2005-06-17 10:00 flepied
* msec.spec: 0.46-1mdk
2005-06-17 09:59 flepied
* ChangeLog: Generated by cvs2cl the 17_Jun
2005-06-17 09:58 flepied
* man/C/msec.8, man/C/mseclib.3, man/cs/msec.8, man/et/msec.8,
man/eu/msec.8, man/fi/msec.8, man/fr/msec.8, man/it/msec.8,
man/nl/msec.8, man/pl/msec.8, man/ru/msec.8, man/uk/msec.8,
msec.csh: mandriva
2005-06-17 09:16 flepied
* msec.spec: mandriva
2005-06-17 09:14 flepied
* share/msec.py: call enable_pam_root_from_wheel
2005-06-17 09:13 flepied
* share/libmsec.py: new function enable_pam_root_from_wheel to
allow transparent root access
for the wheel group members.
2005-06-17 09:13 flepied
* Makefile: clean after build.
2005-03-21 16:06 flepied
* ChangeLog: Generated by cvs2cl the 21_Mar
2005-03-21 16:05 flepied
* msec.spec: 0.45.1-1mdk
2005-03-21 16:01 flepied
* ChangeLog: Generated by cvs2cl the 21_Mar
2005-03-21 15:00 flepied
* share/libmsec.py: password_history: touch opasswd to have it
work.
2005-03-21 14:59 flepied
* share/README: documented allow xauth from root.
added current to authorized permissions.
2005-03-21 11:31 flepied
* ChangeLog: Generated by cvs2cl the 21_Mar
2005-03-21 11:31 flepied
* cron-sh/security.sh: added a CHKROOTKIT_OPTION variable used to
pass arguments to chkrootkit.
2005-03-11 14:41 tvignaud
* ChangeLog: Generated by cvs2cl the 11_Meu
2005-02-23 18:00 pablo
* ChangeLog: converted to UTF-8
2005-02-21 17:06 flepied
* ChangeLog: Generated by cvs2cl the 21_Feb
2005-02-21 17:05 flepied
* msec.spec: 0.45-1mdk
2005-02-21 17:05 flepied
* src/msec_find/find.c: use the EXCLUDE_REGEXP to be able to
exclude files or directory from the
reports.
2005-02-21 14:51 flepied
* share/libmsec.py: better doc for allow_remote_root_login.
2005-02-21 14:16 flepied
* ChangeLog: Generated by cvs2cl the 21_Feb
2005-02-21 13:34 flepied
* cron-sh/security.sh, cron-sh/security_check.sh: filter home dir
too (Guillaume Rousse, bug #12335)
2005-02-21 13:25 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: fixed sendmail perms (bug #13515).
2005-02-21 10:44 flepied
* conf/perm.4: fix ld.so.conf perm wrt compilation (bug #13718).
2004-09-30 05:15 flepied
* ChangeLog: Generated by cvs2cl the 30_Sep
2004-09-30 05:09 flepied
* msec.spec: 0.44.2-1mdk
2004-09-30 05:08 flepied
* share/libmsec.py: allow_reboot: remove consolehelper links
instead of files in
/etc/security/console.apps.
2004-09-30 02:50 flepied
* share/libmsec.py: control CTRL+ALT-DEL in allow_reboot
2004-09-08 15:24 reinouts
* man/nl, man/nl/msec.8: Updated Dutch (nl) translation
by Reinout van Schouwen <reinout@cs.vu.nl>
* msec manpage
2004-09-07 08:38 pablo
* man/it, man/it/msec.8: Added Italian man page
2004-07-30 02:03 flepied
* ChangeLog: Generated by cvs2cl the 30_Jul
2004-07-30 02:03 flepied
* msec.spec: 0.44.1-1mdk
2004-07-30 02:03 flepied
* share/ConfigFile.py: fix directory creation code
2004-07-29 23:53 flepied
* ChangeLog: Generated by cvs2cl the 30_Jul
2004-07-29 23:51 flepied
* msec.spec: 0.44-1mdk
2004-07-29 23:50 flepied
* doc/security.txt: document allow_xauth_from_root levels
2004-07-29 23:48 flepied
* share/msec.py: call allow_xauth_from_root
2004-07-29 23:43 flepied
* man/C/msec.8, man/cs/msec.8, man/et/msec.8, man/eu/msec.8,
man/fi/msec.8, man/fr/msec.8, man/pl/msec.8, man/ru/msec.8,
man/uk/msec.8: remove yoann@mandrakesoft.com no more valid
address
2004-07-29 23:40 flepied
* man/C/mseclib.3: first version
2004-07-29 23:38 flepied
* share/Makefile: generate mseclib.3 in man directory
2004-07-29 23:37 flepied
* share/Perms.py: the config file is now forcing permissions even
if it's lowering the security.
2004-07-29 23:31 flepied
* msec.spec: 0.44-1mdk
2004-07-29 23:28 flepied
* man/C/msec.8, man/cs/msec.8, man/et/msec.8, man/eu/msec.8,
man/fi/msec.8, man/fr/msec.8, man/pl/msec.8, man/ru/msec.8,
msec.csh, msec.sh, share/ConfigFile.py, share/Log.py,
share/Makefile, share/Perms.py, share/draksec_help.py,
share/libmsec.py, share/man.py, share/msec, share/msec.py,
share/shadow.py: Mandrakelinux
2004-07-29 23:16 flepied
* ChangeLog: Generated by cvs2cl the 30_Jul
2004-07-29 23:16 flepied
* share/ConfigFile.py: mkdir_p: corrected test of existence
2004-07-29 23:11 flepied
* share/libmsec.py: added allow_xauth_from_root
2004-07-29 23:10 flepied
* share/ConfigFile.py: create the intermediate directories before
writing a file
2004-07-07 08:40 flepied
* ChangeLog: Generated by cvs2cl the 07_Jul
2004-07-07 08:40 flepied
* msec.spec: 0.43-1mdk
2004-07-07 08:38 flepied
* msec.spec: 0.43-1mdk
2004-07-07 08:35 flepied
* ChangeLog: Generated by cvs2cl the 07_Jul
2004-07-07 08:34 flepied
* conf/perm.3: fixed mailman permissions on files
2004-06-22 09:11 prigaux
* msec.csh: you can't do
if ( ${?SECURE_LEVEL} && ${SECURE_LEVEL} <= 1 ) then
in csh
2004-06-17 23:52 flepied
* cron-sh/security_check.sh: use getent
2004-06-08 16:33 florin
* conf/server.4: add ospfd
2004-06-08 16:31 florin
* conf/server.4: add some version
2004-04-23 10:00 flepied
* ChangeLog: Generated by cvs2cl the 23_Apr
2004-04-23 10:00 flepied
* msec.spec: 0.42.2-1mdk
2004-04-23 09:59 flepied
* ChangeLog: Generated by cvs2cl the 23_Apr
2004-04-23 09:58 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: corrected mailman log permissions (bug #9319)
2004-03-22 05:51 flepied
* ChangeLog: Generated by cvs2cl the 22_Mar
2004-03-22 05:50 flepied
* msec.spec: Mandrake => Mandrakelinux
2004-03-21 15:56 flepied
* ChangeLog: Generated by cvs2cl the 21_Mar
2004-03-21 15:56 flepied
* msec.spec: 0.42.1-1mdk
2004-03-21 15:50 flepied
* ChangeLog: Generated by cvs2cl the 21_Mar
2004-03-21 15:45 flepied
* src/msec_find/find.c: workaround bug #9121 by not passing
FTW_CHDIR to ntfw.
2004-02-27 11:44 flepied
* ChangeLog: Generated by cvs2cl the 27_Feb
2004-02-27 11:44 flepied
* msec.spec: 0.42-1mdk
2004-02-27 11:41 flepied
* share/README: document perm file syntax
2004-02-27 11:35 flepied
* share/Perms.py: - allow to specify only group or user in perm
files (Bill Shirley)
- allow the force keyword in perm files to be able to lower
security (Bill Shirley)
2004-02-27 11:08 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: mailman log dir fix (Guillaume Rousse)
2004-02-14 21:13 flepied
* ChangeLog: Generated by cvs2cl the 14_Feb
2004-02-14 21:13 flepied
* msec.spec: 0.41.1-1mdk
2004-02-14 19:24 flepied
* cron-sh/diff_check.sh: allow % in file names [bug #6144] (Sven
Hoexter)
2004-02-14 19:19 flepied
* share/libmsec.py: fixed system-auth growing line forever (bug
#7853) (Michael Scherer)
2004-02-12 16:13 flepied
* ChangeLog: Generated by cvs2cl the 12_Feb
2004-02-12 16:13 flepied
* share/libmsec.py: make it lib64 aware wrt pam files rewriting
2004-02-12 16:12 flepied
* msec.spec: 0.41-1mdk
2004-02-12 16:08 flepied
* man/C/msec.8: add pointers to perm files and draksec/drakperm
2004-02-12 14:56 flepied
* ChangeLog: Generated by cvs2cl the 12_Feb
2004-01-29 13:00 flepied
* share/README: fixed location of perm files
2004-01-06 10:56 prigaux
* msec.csh, msec.spec: more csh-ish msec.csh
2003-11-28 11:55 flepied
* msec.csh: only set SECURE_LEVEL whenever it already exists
locally
2003-11-18 09:59 flepied
* ChangeLog: Generated by cvs2cl the 18_Nov
2003-11-18 09:13 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: fixed typo rpp => rpm
2003-11-18 08:46 flepied
* share/libmsec.py: allow_xserver_to_listen: corrected startx
modifications (Gavin Porter)
2003-11-18 08:45 flepied
* cron-sh/security.sh: removed xfs from remote filesystems and
added hfs in foreign filesystems (Stefaan Simoens)
2003-10-30 15:10 flepied
* ChangeLog: Generated by cvs2cl the 30_Oct
2003-10-30 15:00 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: handle /var/lib/rpm/Packages
2003-10-15 20:38 tvignaud
* AUTHORS: list tv too
2003-10-15 20:36 tvignaud
* AUTHORS, README, TODO: fix #6145 (list current maintainer instead
of old one)
2003-10-15 20:36 tvignaud
* Makefile: enable to build srpm only
2003-10-09 05:59 flepied
* share/libmsec.py: document same_level
2003-10-08 21:15 flepied
* share/msec.py: use local_config
2003-10-08 21:15 flepied
* share/shadow.py: Added local_config to say that the calls are now
coming from the config file.
Call force_val in indirect to store that the arguments of the
function need
to be used even if the security is lowered.
2003-10-08 21:10 flepied
* share/libmsec.py: Rework same_level to be able to put the
priority on the config file.
This is realized by inspecting the stack trace and using a global
associative array.
2003-10-08 19:33 flepied
* man/cs/msec.8, man/et/msec.8, man/fr/msec.8, man/ru/msec.8:
Linux-Mandrake => Mandrake Linux
2003-09-08 13:09 pablo
* man/cs/msec.8: updated Czech man page
2003-09-03 15:46 flepied
* ChangeLog: Generated by cvs2cl the 03_Sep
2003-09-03 15:45 flepied
* msec.spec: 0.40-1mdk
2003-09-03 15:39 flepied
* share/shadow.py: make an exception for set_shell_history_size
that accept -1 as a normal argument
2003-09-03 15:36 flepied
* share/Perms.py: correct broken code in fix_perms which add +x for
all files
when it finds a directory in a glob.
2003-08-22 12:54 flepied
* ChangeLog: Generated by cvs2cl the 22_Aug
2003-08-22 12:54 flepied
* msec.spec: 0.39-1mdk
2003-08-22 12:53 flepied
* msec.spec: 0.40-1mdk
2003-08-22 09:56 flepied
* share/Perms.py: better support for symlinks
2003-08-22 09:53 flepied
* share/shadow.py: don't use apply anymore (Olivier Blin)
2003-08-22 09:50 flepied
* share/libmsec.py: better doc for no_password_aging_for and
set_security_conf
allow to pass a number in set_umask
2003-08-22 08:52 flepied
* share/libmsec.py: be carefull to use 1 or 0 instead of True and
False in set_zero_one_variable
2003-07-24 17:25 tvignaud
* msec.spec: resync with cooker
2003-07-24 17:22 tvignaud
* ChangeLog: Generated by cvs2cl the 24_Gou
2003-07-24 17:22 tvignaud
* msec.spec: fix upgrade (spotted by new draksec localization
scheme)
2003-07-24 17:15 tvignaud
* ChangeLog: Generated by cvs2cl the 24_Gou
2003-05-08 09:50 pablo
* man/cs/init.sh.8, man/et/init.sh.8, man/eu/init.sh.8, man/fi,
man/fi/msec.8, man/fr/init.sh.8, man/fr/msec.8, man/ru/init.sh.8,
man/uk, man/uk/msec.8: Added Finnish and Ukrainian man pages;
removed "init.sh" man page
from translations
2003-05-06 19:55 alus
* man/pl/msec.8: Changes
2003-05-06 19:42 alus
* man/pl, man/pl/msec.8: Polish version of msec manual
2003-03-07 14:28 flepied
* ChangeLog: Generated by cvs2cl the 07_Mar
2003-03-07 14:27 flepied
* msec.spec: 0.38-3mdk
2003-03-07 14:25 flepied
* share/libmsec.py: corrected inverted descriptions
2003-02-17 17:36 flepied
* share/libmsec.py: put description on one line not to modify
draksec_help.py
2003-02-17 14:37 flepied
* share/libmsec.py: reworded CHECK_PASSWD description
2003-02-03 15:22 tvignaud
* share/draksec_help.py: help
draksec::set_default_tip->formatAlaTeX() to have nicer tooltips
2003-02-03 14:48 tvignaud
* share/draksec_help.py: enforce gi policy for modules (it's the
standalone tools job to provide a good
@INC)
2003-02-03 13:41 flepied
* ChangeLog: Generated by cvs2cl the 03_Feb
2003-02-03 08:17 tvignaud
* share/draksec_help.py: let this statement be more precise
2003-02-03 08:15 tvignaud
* msec.spec: move security::help from msec to drakxtools so that it
get
translated
2003-02-03 08:15 tvignaud
* share/draksec_help.py: - produce a perl module that pass strict
mode checking
- explain perl from where to find translation functions
- "typo fix" to please emacs::php-mode
- cron checking help (aka set_security_conf() help) was not
managed the same
way other msec stuff, so let introduce some regexps (python fsck,
perl
rulez!)
2003-02-03 08:14 tvignaud
* share/libmsec.py: fix mseclib man page and draksec help (parsers
drop first two bytes... :-()
2003-01-31 12:10 pablo
* man/et, man/et/init.sh.8, man/et/msec.8: Added Estonian files
2003-01-20 13:07 flepied
* ChangeLog: Generated by cvs2cl the 20_Jan
2003-01-20 13:06 flepied
* Makefile: use rpm to find version and release
2003-01-20 11:50 tvignaud
* msec.spec: - bump version
- install draksec help
2003-01-20 11:50 tvignaud
* share/Makefile: - add the drakesec help target
- sanitize make rules through std macros to ease creating new
rules
2003-01-20 11:36 tvignaud
* share/draksec_help.py: help generator for draksec gui
2002-11-20 19:57 flepied
* ChangeLog: Generated by cvs2cl the 20_Nov
2002-11-20 19:57 flepied
* msec.spec: 0.37-1mdk
2002-11-20 19:57 flepied
* share/libmsec.py: password_aging: chage is l10n now so use
LC_ALL=C before calling it.
2002-11-07 10:29 tvignaud
* msec.spec: requires s/(sh-|text|file)utils/coreutils/
2002-09-17 14:13 flepied
* ChangeLog: Generated by cvs2cl the 17_Sep
2002-09-17 14:12 flepied
* msec.spec: X-\*-Core => X-:\*-Core
2002-09-17 14:12 flepied
* share/libmsec.py: allow_reboot: X-\*-Core => X-:\*-Core
2002-09-17 13:38 flepied
* ChangeLog: Generated by cvs2cl the 17_Sep
2002-09-17 13:38 flepied
* msec.spec: better wording
2002-09-17 13:09 flepied
* ChangeLog: Generated by cvs2cl the 17_Sep
2002-09-17 13:08 flepied
* msec.spec: 0.36-1mdk
2002-09-17 13:08 flepied
* share/libmsec.py: - allow_user_list handles Selected when not
changing security level.
- allow_reboot handles Root when not changing security level.
2002-09-09 18:51 flepied
* conf/server.4: removed double network entry
2002-09-06 13:37 flepied
* ChangeLog: Generated by cvs2cl the 06_Sep
2002-09-06 13:37 flepied
* msec.spec: 0.34.5-2mdk
2002-09-06 12:51 flepied
* src/msec_find/find.c: SUID_GROUP_TODAY => SGID_TODAY
2002-09-05 12:15 flepied
* ChangeLog: Generated by cvs2cl the 05_Sep
2002-09-05 12:14 flepied
* msec.spec: 0.34.5-1mdk
2002-09-05 12:12 flepied
* share/libmsec.py: allow_user_list: lookup ShowUsers in the
X-*-Greeter section of kdmrc.
2002-09-05 08:51 flepied
* ChangeLog: Generated by cvs2cl the 05_Sep
2002-09-05 08:50 flepied
* msec.spec: 0.34.4-2mdk
2002-09-05 08:50 flepied
* share/libmsec.py: removed debug output
2002-09-03 07:01 flepied
* ChangeLog: Generated by cvs2cl the 03_Sep
2002-09-03 06:57 flepied
* cron-sh/diff_check.sh, cron-sh/security.sh, msec.spec,
share/README, share/libmsec.py, share/msec.py: CHECK_SUID_GROUP
=> CHECK_SGID
2002-08-30 12:22 flepied
* msec.spec: 0.34.3-1mdk
2002-08-30 12:21 flepied
* ChangeLog: Generated by cvs2cl the 30_Aug
2002-08-30 12:20 flepied
* cron-sh/diff_check.sh, cron-sh/security.sh,
cron-sh/security_check.sh, doc/msec.lyx, doc/security.txt,
init-sh/custom.sh, init-sh/level1.sh, msec.spec, share/README,
share/libmsec.py, share/msec.py, src/msec_find/find.c: writeable
=> writable
2002-08-30 12:18 flepied
* share/Makefile: clean generated files
2002-08-29 18:53 flepied
* share/shadow.py: call function with no argument in
commit_changes.
2002-08-27 20:27 flepied
* ChangeLog: Generated by cvs2cl the 27_Aug
2002-08-27 20:26 flepied
* msec.spec: 0.34.2-1mdk
2002-08-27 20:25 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: fix /boot with a better way
2002-08-27 14:13 flepied
* ChangeLog: Generated by cvs2cl the 27_Aug
2002-08-27 14:13 flepied
* msec.spec: 0.34.1-1mdk
2002-08-27 14:10 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: correct permissions for /boot/kernel.h*
2002-08-27 14:03 flepied
* Makefile: launch make in cron-sh to check shell script syntax
2002-08-27 14:03 flepied
* cron-sh/security.sh: correct syntax error
2002-08-27 14:02 flepied
* cron-sh/Makefile: check the syntax of the shell scripts
2002-08-26 21:05 flepied
* conf/server.4, conf/server.5: added dm
2002-08-26 15:18 pablo
* man/cs, man/cs/init.sh.8, man/cs/msec.8, man/ru,
man/ru/init.sh.8, man/ru/msec.8: Added Czech and Russian man
pages
2002-08-25 19:56 flepied
* ChangeLog: Generated by cvs2cl the 25_Aug
2002-08-25 19:55 flepied
* msec.spec: 0.34-1mdk
2002-08-25 19:49 flepied
* ChangeLog: Generated by cvs2cl the 25_Aug
2002-08-25 19:48 flepied
* msec.spec: security_check.sh and diff_check.sh installed 644 to
prevent direct execution.
2002-08-25 19:47 flepied
* conf/perm.4, conf/perm.5: let hosts.{allow,deny} be readable by
everyone (to allow all the daemons to
access them).
2002-08-25 19:43 flepied
* cron-sh/diff_check.sh: emptiness is tested in Maillog now
2002-08-25 19:41 flepied
* cron-sh/security.sh: implement MAIL_EMPTY_CONTENT
2002-08-25 19:39 flepied
* doc/security.txt: documented daily mailing of security checks
2002-08-25 19:38 flepied
* share/msec.py: added MAIL_EMPTY_CONTENT
2002-08-25 19:30 flepied
* share/ConfigFile.py: enhanced get_shell_variable to be able to
specify a region to do the search.
2002-08-25 19:29 flepied
* share/libmsec.py: allow_reboot: used section X-:0-Core instead of
X-:*-Greeter for kdmrc.
password_history: create /etc/security/opasswd if it doesn't
exist.
2002-08-19 21:10 flepied
* ChangeLog: Generated by cvs2cl the 19_Aug
2002-08-19 21:09 flepied
* msec.spec: 0.33-1mdk
2002-08-19 21:09 flepied
* Makefile: use $(RPM_BUILD_ROOT) instead of $RPM_BUILD_ROOT
2002-08-19 21:08 flepied
* cron-sh/diff_check.sh, cron-sh/security_check.sh: corrected
wording
2002-08-19 21:07 flepied
* share/msec: added missing "not"
2002-08-11 19:08 flepied
* ChangeLog: Generated by cvs2cl the 11_Aug
2002-08-11 18:49 flepied
* msec.spec: 0.32-1mdk
2002-08-11 18:48 flepied
* Makefile: corrected the compilation of the python part.
2002-08-11 18:44 flepied
* share/msec.py: replace 0 => no and 1 => yes.
call password_history according to the levels.
2002-08-11 18:43 flepied
* share/libmsec.py: corrected without_password
2002-08-11 18:42 flepied
* share/shadow.py: added without_password
2002-08-11 18:41 flepied
* share/libmsec.py: password_length use system-auth instead of
passwd pam file.
new function: password_history.
2002-08-11 18:39 flepied
* share/Perms.py: do not change non local files/directories.
2002-08-11 18:38 flepied
* doc/security.txt: documented password history and root logins.
2002-08-11 18:34 flepied
* man/C/msec.8: document options
2002-07-31 15:41 flepied
* msec.spec: 0.31.1-1mdk
2002-07-31 15:40 flepied
* share/msec.py: correct the test for processing level.local.
2002-07-30 18:52 flepied
* ChangeLog: Generated by cvs2cl the 30_Jul
2002-07-30 18:51 flepied
* msec.spec: 0.31-1mdk
2002-07-30 18:50 flepied
* share, share/.cvsignore: added level.*
2002-07-30 18:50 flepied
* share/libmsec.py: added fields to describe how arguments are used
(to be used by shadow.py)
2002-07-30 18:48 flepied
* share/msec.py: added print and nolocal options
2002-07-30 18:47 flepied
* share/shadow.py: added print_changes and get_translation
2002-07-30 18:46 flepied
* share/Makefile: added rules for level.*
2002-07-29 07:37 flepied
* ChangeLog: Generated by cvs2cl the 29_Jul
2002-07-29 07:36 flepied
* msec.spec: 0.30.2-1mdk
2002-07-29 07:36 flepied
* share/libmsec.py: fixed typo in allow_root_login
2002-07-28 20:54 flepied
* ChangeLog: Generated by cvs2cl the 28_Jul
2002-07-28 20:53 flepied
* msec.spec: 0.30.1-1mdk
2002-07-28 20:53 flepied
* share/libmsec.py: (set_zero_one_variable): corrected bug when the
variable doesn't exist before
setting it.
2002-07-27 20:49 flepied
* ChangeLog: Generated by cvs2cl the 27_Jul
2002-07-27 20:47 flepied
* msec.spec: 0.30
2002-07-27 20:46 flepied
* share/CHANGES: added 0.30 changes
2002-07-27 20:40 flepied
* share/libmsec.py: finalized no security lowering feature.
2002-07-27 19:27 flepied
* ChangeLog: Generated by cvs2cl the 27_jui
2002-07-27 19:26 flepied
* share/msec: corrected last argument processing.
2002-07-27 19:23 flepied
* share/README: corrected splitted functions.
2002-07-27 19:13 flepied
* man/C/msec.8: descibed differences between interactive and
non-interactive calls.
added a paragraph on the logs.
2002-07-27 19:12 flepied
* share/libmsec.py: * (more functions): don't lower security when
not changing secure level.
2002-07-24 23:16 flepied
* doc/security.txt: * describe file permissions according to the
levels.
* correct description of X server security.
2002-07-24 23:14 flepied
* cron-sh/promisc_check.sh: * use TTY_WARN instead of TTYLOG_WARN
(David Harris).
2002-07-24 23:07 flepied
* share/libmsec.py: * (set_zero_one_variable): factorize
sysctl.conf manipulation functions.
* (accept_broadcasted_icmp_echo): split from accept_icmp_echo.
* (set_umask): factorize set_root_umask and set_user_umask.
* (enable_dns_spoofing_protection): split from
enable_ip_spoofing_protection.
* (allow_remote_root_login): split from allow_root_login.
* (allow_autologin set_umask set_zero_one_variable
allow_remote_root_login): don't
lower security when not changing security level.
* (allow_xserver_to_listen): split from allow_x_connections for
better granularity.
* (enable_ip_spoofing_protection): when disabling ip spoofing
protection put back net.ipv4.conf.all.rp_filter to 0 (David
Harris).
2002-07-24 23:06 flepied
* share/msec.py: call splitted function with the same args.
2002-07-24 23:02 flepied
* share/ConfigFile.py: * (ConfigFile.get_match): return the whole
line if replace is None.
2002-07-06 13:36 flepied
* share/libmsec.py: if sysctl.conf is modified reload its content
with sysctl but do not restart
network.
2002-07-04 17:02 flepied
* ChangeLog: Generated by cvs2cl the 04_Jul
2002-07-04 17:02 flepied
* msec.spec: 0.25-1mdk
2002-07-04 16:57 flepied
* share/libmsec.py: allow_root_login: corrected regexp to avoid
adding the string at every run.
2002-07-04 16:38 flepied
* conf/perm.snf, conf/server.snf: *** empty log message ***
2002-07-04 16:37 flepied
* conf/server.4: added entry for MNF
2002-07-04 07:30 flepied
* share/libmsec.py: insert changes when no match is found for
logindefs and sshd_config.
2002-06-27 07:58 flepied
* ChangeLog: Generated by cvs2cl the 27_Jun
2002-06-27 07:58 flepied
* msec.spec: 0.24-1mdk
2002-06-27 07:57 flepied
* share/msec: pass -c to Perms.py if the level is given on the
command line.
2002-06-27 07:56 flepied
* share/Perms.py: if we don't change the security level, try not to
lower the security
if the user has changed it manually (added -c option).
2002-06-27 07:54 flepied
* ChangeLog: Generated by cvs2cl the 27_Jun
2002-06-04 18:24 cbelisle
* share/libmsec.py: corrected typo
2002-05-31 03:36 flepied
* ChangeLog: Generated by cvs2cl the 30_May
2002-05-31 03:35 flepied
* msec.spec: 0.23-1mdk
2002-05-31 03:34 flepied
* share/ConfigFile.py, share/Perms.py: report more complete error
messages.
2002-05-31 03:31 flepied
* share/msec: check that the root is running the process
2002-05-29 20:40 flepied
* ChangeLog: Generated by cvs2cl the 29_May
2002-05-29 20:39 flepied
* share/libmsec.py: corrected typo
2002-05-29 20:38 flepied
* ChangeLog: Generated by cvs2cl the 29_May
2002-05-29 20:38 flepied
* msec.spec: 0.22-1mdk
2002-05-29 20:37 flepied
* ChangeLog: Generated by cvs2cl the 29_May
2002-05-29 20:35 flepied
* share/libmsec.py: added no_password_aging_for
2002-05-14 17:04 flepied
* conf/server.4, conf/server.5: added shorewall
2002-04-29 17:52 flepied
* cron-sh/security_check.sh: corrected alias files loop (J�r�me
UZEL).
CVS:
----------------------------------------------------------------------
CVS: Enter Log. Lines beginning with `CVS: ' are removed
automatically
CVS: committing files:
CVS: /home/flepied/work/msec/cron-sh/security_check.sh
CVS:
CVS: Type C-c C-c when done or C-c C-d to abort.
CVS:
----------------------------------------------------------------------
2002-04-19 18:17 flepied
* ChangeLog: Generated by cvs2cl the 19_Apr
2002-04-19 18:17 flepied
* msec.spec: 0.21-1mdk
2002-04-19 18:17 flepied
* share/msec.py: load the config file using the context of mseclib.
2002-04-19 18:15 flepied
* man/C/msec.8: don't specify a version for the doc path.
2002-03-27 21:23 flepied
* ChangeLog: Generated by cvs2cl the 27_Mar
2002-03-27 21:23 flepied
* msec.spec: 0.20-2mdk
2002-03-27 21:16 flepied
* share/libmsec.py: allow_reboot: only touch the shutdown,
poweroff, reboot and halt files if
they don't exist.
2002-03-26 05:03 flepied
* ChangeLog: Generated by cvs2cl the 26_Mar
2002-03-26 05:03 flepied
* msec.spec: 0.20-1mdk
2002-03-26 04:55 flepied
* share, share/.cvsignore: added *.flog
2002-03-26 04:55 flepied
* share/shadow.py: handle ignore case.
2002-03-26 04:54 flepied
* share/man.py: document ignore argument.
2002-03-26 04:54 flepied
* share/libmsec.py: removed yes/no declarations as they are used
only from mseclib.py.
Maximum password aging can be -1.
2002-03-09 00:24 flepied
* ChangeLog: Generated by cvs2cl the 08_Mar
2002-03-09 00:24 flepied
* msec.spec: 0.19-8mdk
2002-03-09 00:22 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3:
/var/log/lp-errs must be 600
2002-03-08 18:56 flepied
* ChangeLog: Generated by cvs2cl the 08_Mar
2002-03-08 18:56 flepied
* msec.spec: 0.19-7mdk
2002-03-08 18:42 flepied
* share/shadow.py: export yes/no to be in sync with libmsec.
2002-03-08 18:41 flepied
* share/man.py: document the value of arguments.
2002-03-08 18:41 flepied
* share/libmsec.py: added yes and no to be used as argument to the
functions.
2002-03-08 18:40 flepied
* man/C/msec.8: ponts to security.txt
2002-03-08 18:37 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: fix permissions of /var/log/lp-errs for LPRng
2002-03-06 04:13 flepied
* ChangeLog: Generated by cvs2cl the 05_Mar
2002-03-06 04:12 flepied
* msec.spec: 0.19-6mdk
2002-03-06 04:11 flepied
* cron-sh/security.sh, share/msec: don't run twice
2002-03-04 19:19 flepied
* ChangeLog: Generated by cvs2cl the 04_Mar
2002-03-04 19:19 flepied
* msec.spec: 0.19-5mdk
2002-03-04 19:19 flepied
* msec.sh: more robust if SECURE_LEVEL isn't set.
2002-03-04 19:18 flepied
* share/libmsec.py: use 127.0.0.1 instead of localhost in
hosts.deny
2002-02-26 21:16 prigaux
* msec.csh, msec.spec: msec.csh: "unhash" workaround for /usr/bin
non-readable (msec 5) applied
after modifying PATH (eurk!)
2002-02-25 21:16 flepied
* ChangeLog: Generated by cvs2cl the 25_Feb
2002-02-25 21:15 flepied
* msec.spec: 0.19-4mdk
2002-02-25 21:14 flepied
* msec.sh: don't manage /usr/games and /usr/X11R6/bin, this has
nothing to do with security
2002-02-25 21:13 flepied
* share/libmsec.py: don't restart network on sysctl.conf change.
2002-02-25 21:12 flepied
* cron-sh/diff_check.sh, cron-sh/security.sh,
cron-sh/security_check.sh: split rpm-va check in 2: config files
and other files
2002-02-25 21:07 flepied
* doc/security.txt: resync with current code
2002-02-24 00:38 pablo
* man/fr, man/fr/init.sh.8: added French man page
2002-02-22 21:56 flepied
* ChangeLog: Generated by cvs2cl the 22_Feb
2002-02-22 21:56 flepied
* msec.spec: 0.19-3mdk
2002-02-22 21:55 flepied
* share/msec.py: do not use enable_libsafe anymore.
2002-02-22 20:13 pablo
* man/eu, man/eu/init.sh.8, man/eu/msec.8: Added Basque files
2002-02-22 19:38 flepied
* cron-sh/diff_check.sh: security.conf from /etc/security/msec/ to
/var/lib/msec/.
2002-02-22 18:42 flepied
* cron-sh/security_check.sh: check uid and not gid
2002-02-22 13:23 flepied
* cron-sh/promisc_check.sh: use security.conf from /var/lib/msec
2002-02-21 13:52 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, conf/perm.snf: let drakx handle lilo.conf perm
2002-02-20 21:51 flepied
* ChangeLog: Generated by cvs2cl the 20_Feb
2002-02-20 21:51 flepied
* msec.spec: 0.19-2mdk
2002-02-20 21:50 flepied
* share/msec.py: implement no password in level 0
X listens to tcp connections in level 3
2002-02-20 21:50 flepied
* share/libmsec.py: added enable_password
2002-02-20 21:49 flepied
* share/CHANGES: documented changes in versions 0.18 and 0.19
2002-02-20 21:47 flepied
* share/ConfigFile.py: added insert_before.
2002-02-20 21:40 flepied
* conf/perm.4, conf/perm.5: kmem => adm
2002-02-19 20:18 flepied
* ChangeLog: Generated by cvs2cl the 19_Feb
2002-02-19 20:18 flepied
* cron-sh/security.sh: corrected typo msec/msec.
2002-02-19 20:16 flepied
* ChangeLog: Generated by cvs2cl the 19_Feb
2002-02-19 20:15 flepied
* msec.spec: 0.19-1mdk
2002-02-19 20:11 flepied
* ChangeLog: Generated by cvs2cl the 19_Feb
2002-02-19 20:10 flepied
* share/libmsec.py: /etc/security/msec/security.conf =>
/var/lib/msec/security.conf
enhanced documentation.
catch inconsistency between /etc/shadow and /etc/passwd.
2002-02-19 20:00 flepied
* man/C/msec.8: /etc/security/msec/security.conf =>
/var/lib/msec/security.conf
2002-02-19 19:17 flepied
* conf/perm.4, conf/perm.5: corrected permissions for
/var/log/intraline
2002-02-19 19:12 flepied
* share/msec: use perm file from /usr/share/msec/
2002-02-19 19:08 flepied
* cron-sh/security.sh: use /var/lib/msec/msec/security.conf
2002-02-19 19:05 flepied
* msec.csh: corrected id test.
2002-02-15 22:59 flepied
* share, share/.cvsignore: added generated files
2002-02-15 05:22 flepied
* ChangeLog: Generated by cvs2cl the 15_Feb
2002-02-15 05:22 flepied
* msec.spec: 0.18-6mdk
2002-02-15 05:21 flepied
* ChangeLog: Generated by cvs2cl the 15_Feb
2002-02-15 05:21 flepied
* msec.sh: test SECURE_LEVEL before using it as a number
2002-02-15 05:20 flepied
* share/msec.py: use the right string for the prog name
2002-02-15 05:19 flepied
* share/libmsec.py: allow an extra arg to specify the log to do in
enable_console_log
2002-02-15 05:18 flepied
* cron-sh/security.sh: use umask from the secure level setting
2002-02-15 04:36 flepied
* cron-sh/promisc_check.sh: use complete path for the ip command.
2002-02-14 02:59 flepied
* ChangeLog: Generated by cvs2cl the 13_Feb
2002-02-14 02:59 flepied
* msec.spec: 0.18-5mdk
2002-02-14 02:58 flepied
* ChangeLog: Generated by cvs2cl the 13_Feb
2002-02-14 01:50 flepied
* share/libmsec.py: only reports an error for an empty wheel group
when run interactively.
2002-02-14 00:54 flepied
* share/Config.py, share/ConfigFile.py, share/Perms.py: corrected
warnings reported by pychecker
2002-02-14 00:53 flepied
* cron-sh/promisc_check.sh: use ip to detect promiscuous mode with
2.4 kernels.
2002-02-14 00:52 flepied
* msec.csh, msec.sh: handle umask and . in path
2002-02-11 14:44 flepied
* conf/perm.5: /etc/sendmail.cf 640 to sendmail to work.
2002-02-05 20:10 flepied
* ChangeLog: Generated by cvs2cl the 05_Feb
2002-02-05 20:10 flepied
* msec.spec: 0.18-4mdk
2002-02-05 20:07 flepied
* share/msec.py: add a delay in passowrd change before desactiving.
2002-02-05 19:52 flepied
* share/libmsec.py: handle allowed delay in password changing.
2002-02-05 16:48 flepied
* share/libmsec.py: use true/false for Browser value in gdm.conf
2002-02-05 04:19 flepied
* ChangeLog: Generated by cvs2cl the 04_Feb
2002-02-05 04:19 flepied
* msec.spec: 0.18-3mdk
2002-02-05 04:14 flepied
* ChangeLog: Generated by cvs2cl the 04_Feb
2002-02-05 04:14 flepied
* share/ConfigFile.py: (exists): add an extra arg to really test if
the file exists (without testing
if the file + suffix exists).
2002-02-05 04:12 flepied
* share/msec.py: handle the extra arg for allow_x_connections.
2002-02-05 04:11 flepied
* share/libmsec.py: corrected issue moving (only when really
present).
add doc strings to be used in the man page.
(allow_x_connections): add an extra argument to control if the X
server listens on tcp port.
2002-02-05 03:53 flepied
* share/Perms.py: removed debugging trace.
2002-02-05 03:09 flepied
* share/msec: pass the same options used for msec.py to Perms.py
2002-02-05 03:07 flepied
* conf/perm.4: put /etc/hosts.{allow,deny,equiv} in the daemon
group
2002-02-05 03:06 flepied
* Makefile: don't commit in the Makefile
2002-02-05 03:05 flepied
* conf/perm.5: put /etc/hosts.{allow,deny,equiv}
2002-02-05 03:04 flepied
* share/Perms.py: process the options like msec to be able to log
the same way.
2002-02-05 03:03 flepied
* man/C/msec.8: Linux-Mandrake => Mandrake Linux
remove references to the custom level
2002-02-05 02:37 flepied
* cron-sh/security_check.sh: corrected typo
2002-02-05 02:34 flepied
* cron-sh/security_check.sh: back to nogroup
2002-02-05 01:23 flepied
* cron-sh/security_check.sh: use nobody instead of nogroup
2002-02-04 03:27 flepied
* cron-sh/security_check.sh: added .ssh/id_dsa .ssh/id_rsa to the
list of files to check.
2002-02-04 03:26 flepied
* cron-sh/security.sh: don't report /tmp and /var/tmp as word
writable dirs (it's normal)
2002-02-02 05:20 flepied
* share/Makefile: create the man page for mseclib
2002-02-02 05:20 flepied
* share/man.py: first version
2002-01-29 05:23 flepied
* ChangeLog: Generated by cvs2cl the 29_Jan
2002-01-29 05:22 flepied
* msec.spec: 0.18-2mdk
2002-01-29 05:22 flepied
* share/libmsec.py: password aging for root too.
2002-01-29 03:32 flepied
* cron-sh/diff_check.sh: changed the wording for the rpm-va
changes.
2002-01-29 02:20 flepied
* conf/perm.4: the snf mod are not needed
2002-01-29 02:19 flepied
* share/msec.py: new option: server_level to set a different
server_level from the
secure_level. For example the snf will be in secure_level 4 and
server_level snf.
2002-01-29 02:19 flepied
* share/libmsec.py: handle /etc/security/msec/server symlink
through create_server_link().
enable_security_check: register daily cron in /etc/cron.daily
instead of /etc/cron.d.
2002-01-28 18:41 flepied
* share/msec.py: report msec instead of msec.py in the error
messages.
2002-01-28 18:09 flepied
* conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.5,
conf/perm.snf: made mandrake_consmap 644 (Andrej)
2002-01-28 18:08 flepied
* conf/perm.4: merged diff with snf.
2002-01-28 16:25 florin
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, conf/perm.snf: change sendmail ownership
2002-01-28 14:52 flepied
* cron-sh/diff_check.sh: report too the date and the hostname when
the report is empty.
2002-01-27 07:07 flepied
* ChangeLog: Generated by cvs2cl the 27_Jan
2002-01-27 07:07 flepied
* msec.spec: 0.18-1mdk
2002-01-27 07:06 flepied
* Makefile: clean in share too
2002-01-27 03:09 flepied
* share/msec.py: use mseclib to have a way to process a config file
before really doing the
changes.
2002-01-27 03:08 flepied
* share/libmsec.py: regroup the on/off funtions in uniq ones with
an arg to decide on/off.
2002-01-27 03:05 flepied
* share/Makefile, share/shadow.py: first version
2002-01-22 20:28 flepied
* ChangeLog: Generated by cvs2cl the 22_Jan
2002-01-22 20:28 flepied
* msec.spec: clean before installing and don't install init.sh man
pages anymore.
2002-01-22 20:27 flepied
* Makefile: don't put .bz2 archive in source for localcopy.
2002-01-22 20:15 flepied
* ChangeLog: Generated by cvs2cl the 22_Jan
2002-01-22 20:14 flepied
* msec.spec: 0.17-15mdk
2002-01-22 20:14 flepied
* share/CHANGES: more doc
2002-01-22 20:13 flepied
* cron-sh/security.sh, cron-sh/security_check.sh, share/msec.py:
experimental chkrootkit check.
2002-01-22 19:23 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, conf/perm.snf: corrected errors reported by Pierre
Fortin's script
2002-01-22 19:21 flepied
* man/C/init.sh.8, man/fr: removed init-sh man page
2002-01-22 02:58 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3: corrected
/bin/rpm path & perms
2002-01-21 16:24 flepied
* ChangeLog: Generated by cvs2cl the 21_Jan
2002-01-21 16:23 flepied
* msec.spec: 0.17-14mdk
2002-01-21 16:19 flepied
* conf/perm.3, conf/perm.4, conf/perm.5, conf/perm.snf: make
mandrake_consmap 755 because we it needs to be readable by
everyone
2002-01-21 04:19 flepied
* ChangeLog: Generated by cvs2cl the 20_Jan
2002-01-21 04:18 flepied
* msec.spec: 0.17-13mdk
2002-01-21 04:16 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, conf/perm.snf: corrected mandrake_consmap
permissions and ping path/permissions.
2002-01-21 04:14 flepied
* share/CHANGES: document 0.17-13mdk changes
2002-01-21 04:11 flepied
* cron-sh/diff_check.sh: mail even when the log is empty to signify
that the check is fine.
2002-01-21 04:07 flepied
* share/msec.py: log the start of the program in interactive mode.
2002-01-21 04:06 flepied
* share/Perms.py: allow current to be specified for permissions
too.
protect and log errors in os calls.
2002-01-21 04:05 flepied
* share/Log.py: log errors.
2002-01-21 04:04 flepied
* share/ConfigFile.py: protect and log errors on os calls.
2002-01-21 04:03 flepied
* Makefile: corrected clean rule
2002-01-21 04:03 flepied
* init-sh/cleanold.sh: don't create groups (rely on setup).
2002-01-17 23:33 siegel
* init-sh/cleanold.sh: use "groupadd -g" to ensure the groupid
provided by latest setup package
2002-01-17 21:21 flepied
* ChangeLog: Generated by cvs2cl the 17_Jan
2002-01-17 21:21 flepied
* share/msec.py: corrected password_length mismatch.
2002-01-17 19:58 flepied
* ChangeLog: Generated by cvs2cl the 17_Jan
2002-01-17 19:56 flepied
* Makefile, conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3,
conf/perm.4, conf/perm.5, conf/perm.snf, cron-sh/diff_check.sh,
cron-sh/security.sh, cron-sh/security_check.sh,
init-sh/cleanold.sh, msec.sh, msec.spec, share, share/.cvsignore,
share/CHANGES, share/Config.py, share/ConfigFile.py,
share/Log.py, share/Perms.py, share/README, share/compile.py,
share/libmsec.py, share/msec, share/msec.py: 0.17
2002-01-17 17:22 siegel
* init-sh/lib.sh, init-sh/lib.sh.usermode: use "groupadd -g" to
ensure the groupid provided by latest setup package
2001-12-05 11:32 florin
* msec.spec: typo error
2001-12-05 11:09 florin
* msec.spec: create the /etc/sysconfig/ directory
2001-12-05 11:06 florin
* msec.csh: fix the tests, thx to Konrad Bernlohr
2001-12-05 11:01 florin
* msec.spec: changelog for 4mdk and use
%{_sysconfdir}/sysconfig/msec instead of %{_sysconfdir}/msec
2001-12-05 03:52 flepied
* msec.sh: test the existence of /etc/sysconfig/msec before
sourcing it.
2001-12-03 20:46 flepied
* ChangeLog: Generated by cvs2cl the 03_Dec
2001-12-02 06:52 flepied
* conf/server.4, conf/server.5: snort => snortd
2001-12-02 06:52 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, conf/perm.snf: added default owners of
/var/log/{news,snort,uucp}
2001-12-02 06:03 flepied
* msec.spec: 0.16-3mdk
2001-12-02 06:03 flepied
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/levelsnf.sh: added sysctl.conf, host.conf and
/etc/issue{.net} customization.
2001-12-02 05:59 flepied
* conf/server.4, conf/server.5: added firewall and IDS to the list.
2001-12-02 05:58 flepied
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, conf/perm.snf: customize rpm progs and
/usr/share/doc permissions.
2001-12-02 05:56 flepied
* msec.csh: sed black magic to read /etc/sysconfig/msec and
translate sh variables
in csh ones.
2001-12-02 05:55 flepied
* init-sh/custom.sh: libsafe.so.1.3 => libsafe.so.2
2001-12-02 05:54 flepied
* init-sh/lib.sh: added LoadSysctl, RemoveIssue, RemoveIssueNet,
RestoreIssues functions.
2001-12-02 04:32 flepied
* Makefile: corrected clean rule
2001-11-30 13:22 florin
* msec.spec: 0.16-3mdk Changelog
2001-11-30 13:21 florin
* ChangeLog: oups, forgot to update the ChangeLog for some time
2001-11-30 13:15 florin
* msec.spec: update the changelog message in the 0.16-3mdk
2001-11-30 13:13 florin
* msec.spec: update the post message
2001-11-30 12:32 florin
* init-sh/levelsnf.sh: allow the ssh connexions from everywhere
2001-11-29 17:33 florin
* msec.csh: sysconfig file
2001-11-29 17:32 florin
* msec.sh: source the sysconfig file
2001-11-29 17:30 florin
* msec.sh: add SECURE LEVEL
2001-11-29 17:23 florin
* init-sh/lib.sh: bring back the cleaning of the profile files in
order to make an update work
2001-11-29 17:11 florin
* init-sh/level5.sh: fix a typo error space in ldpreload condition
if
2001-11-29 17:04 florin
* init-sh/levelsnf.sh: typo error in SECURE_LEVEL
2001-11-29 16:56 florin
* msec.spec: create the entries for the %{_sysconfdir}/%{name} file
2001-11-29 16:50 florin
* msec.csh: remove the sysconfig/source
2001-11-29 16:50 florin
* msec.sh: remove the source of sysconfig/msec
2001-11-29 14:24 florin
* init-sh/lib.sh: clean sysconfig/msec
2001-11-29 14:15 florin
* init-sh/custom.sh: remove the profile.d comment
2001-11-29 14:12 florin
* msec.spec: fix changelog for 3mdk
2001-11-29 14:12 florin
* msec.spec: 3mdk
2001-11-29 13:39 florin
* init-sh/lib.sh: clean the entries related to the
profile.d/msec*sh files
2001-11-29 13:38 florin
* init-sh/levelsnf.sh: clean the comment related to the profile.d
dir
2001-11-29 13:37 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: remove
the comments related to profile.d
2001-11-29 13:33 florin
* init-sh/level5.sh: sysconfig/msec support
2001-11-29 13:30 florin
* init-sh/custom.sh: add the sysconfig/msec support
2001-11-29 13:26 florin
* init-sh/levelsnf.sh: add sysconfig/msec support
2001-11-28 15:39 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: add the
/etc/sysconfig/mesc support for UMASK
2001-11-28 15:14 florin
* msec.csh, msec.sh: source the /etc/sysconfig/msec file
2001-11-28 14:16 florin
* init-sh/custom.sh: add the support to the profile.d files
2001-11-08 16:35 florin
* msec.spec: typo error in post script
2001-11-08 16:23 florin
* msec.spec: update post section and modify the changelog
2001-11-08 15:37 florin
* init-sh/msec: typo error
2001-11-08 15:26 florin
* init-sh/msec: new entries for snf
2001-11-08 15:25 florin
* msec.spec: new version
2001-11-08 15:23 florin
* init-sh/grpuser.sh: new support for snf
2001-11-08 11:21 florin
* msec.spec: 32 mdk
2001-11-08 11:17 florin
* init-sh/lib.sh: add snf in RootSshLogin function
2001-11-08 11:15 florin
* conf/perm.snf, init-sh/levelsnf.sh: *** empty log message ***
2001-11-07 15:38 florin
* msec.spec: make rpmlint happy and add Url tag
2001-11-07 15:36 florin
* msec.spec: Mandrake Linux
2001-11-07 15:28 florin
* conf/server.snf: new snf level
2001-11-07 15:28 florin
* conf/server.4: back to the old 4 level
2001-11-07 15:26 florin
* msec.spec: changelog enrtry in 31mdk
2001-11-07 15:25 florin
* init-sh/levelsnf.sh: nex snf level
2001-11-07 15:15 florin
* init-sh/msec: add snf entry in usage
2001-11-07 15:11 florin
* conf/perm.3, conf/perm.4, conf/perm.5, conf/perm.snf: new entry
2001-11-07 14:31 florin
* conf/server.4: add named in authorized servers for level 4
2001-11-07 14:29 florin
* msec.spec: changelog for 31mdk
2001-11-07 14:26 florin
* conf/server.4: add some servers in level 4
2001-11-07 14:03 florin
* msec.spec: new modifs
2001-11-07 14:02 florin
* conf/perm.3, conf/perm.4, conf/perm.5: add monitoring permissions
2001-11-07 13:58 florin
* conf/perm.3, conf/perm.4, conf/perm.5: add the right permissions
for naat packages
2001-11-07 13:33 florin
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5, conf/server.4: modify the squid permissions and add
naat-backend permissions
2001-10-03 13:07 florin
* init-sh/level4.sh, init-sh/level5.sh: remove the touch
ld.so.preload as we're doing it in lib.sh
2001-10-03 13:06 florin
* init-sh/lib.sh: touch ld.so.preload before cleaning
2001-10-03 12:58 florin
* msec.csh, msec.sh: first add
2001-10-03 12:55 florin
* ChangeLog, init-sh/level4.sh, init-sh/level5.sh, msec.spec:
libsafe.so.2
2001-10-03 12:51 florin
* init-sh/lib.sh: add print in CleanRules
2001-10-03 12:50 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh:
libsafe.so.2 in levels 4/5 and remove the . in PATH
2001-09-29 14:05 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: add \n
2001-09-29 13:58 florin
* init-sh/lib.sh: remove or print
2001-09-29 13:46 florin
* man/C/init.sh.8, man/C/msec.8: date
2001-09-29 13:44 florin
* msec.spec: date in 30mdk
2001-09-29 13:42 florin
* init-sh/lib.sh: add the E in grep in AddRules
2001-09-29 13:41 florin
* msec.spec: 30mdk man changelog
2001-09-29 13:40 florin
* msec.spec: 30mdk changelog
2001-09-29 13:38 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: PATH
modifs
2001-09-29 13:34 florin
* init-sh/lib.sh: bring back the or print in CleanRules
2001-09-29 13:23 florin
* man/C/init.sh.8, man/C/msec.8: update the doc path
2001-09-27 15:23 florin
* init-sh/lib.sh: remove the or print part in the perl line in
CleanRules
2001-09-27 15:22 florin
* msec.spec: date in 30mdk changelog
2001-09-27 15:21 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: move
from profile ro the profile.d/msec.{sh,csh} entries
2001-09-27 15:14 florin
* msec.spec: add a changelog entry in the 30mdk
2001-09-26 14:25 florin
* msec.spec: add an entry in the 30 mdk changelog
2001-09-26 14:24 florin
* init-sh/lib.sh: remove the -E option in the AddRules grep
2001-09-26 13:48 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: typo
errors
2001-09-26 12:35 florin
* init-sh/lib.sh: CleanRules for /etc/profile and /etc/zprofile
2001-09-26 12:20 florin
* msec.spec: 30mdk
2001-09-26 12:10 florin
* init-sh/level1.sh, init-sh/level2.sh, init-sh/level3.sh,
init-sh/level4.sh, init-sh/level5.sh: comment for profile.d
section
2001-09-26 12:07 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: use
profile.d/* files instead of /etc/{z}profile
2001-09-26 10:03 florin
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: use profile.d/ files instead of profile
2001-09-20 16:05 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: typo for
/etc/profile.d/*csh
2001-09-20 15:54 florin
* init-sh/level2.sh: typo in profile.d entries
2001-09-20 15:46 florin
* ChangeLog, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh: profile.d entries
2001-09-20 15:36 florin
* init-sh/lib.sh.usermode: remove the /etc/profile entries
2001-09-20 15:35 florin
* init-sh/lib.sh: remove the /etc/profile entries and use
/etc/profile.d/msec*sh|csh instead
2001-09-20 15:28 florin
* msec.spec: /etc/profile.d*sh|csh entries
2001-09-20 13:44 florin
* conf/server.4, conf/server.5: add the usb service
2001-09-20 13:42 florin
* msec.spec: authorize the usb service in 4/5 levels of security
2001-09-19 17:00 yoann
* msec.spec: Require /bin/touch
2001-09-19 17:00 yoann
* ChangeLog: Generated by cvs2cl the 19_Sep
2001-09-19 13:37 florin
* msec.spec: source2 is msec.logrotate and not msec
2001-09-19 12:32 yoann
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/lib.sh, msec.spec: - Output in /etc/profile.d/msec.sh as
only .sh extenssion files are read.
- Keep the output of the SECURE_LEVEL in /etc/profile and
/etc/zprofile.
2001-09-19 12:31 yoann
* ChangeLog: Generated by cvs2cl the 19_Sep
2001-09-19 12:28 florin
* msec.spec: 25mdk
2001-09-19 12:24 florin
* ChangeLog: squidGuard, sshd, RootSshLogin entries
2001-09-19 12:21 florin
* conf/server.4: sshd entry
2001-09-19 12:21 florin
* conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3, conf/perm.4,
conf/perm.5: squidGuard entries
2001-09-19 12:18 florin
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/lib.sh, init-sh/lib.sh.usermode: RootSshLogin
2001-09-19 12:00 florin
* doc/security.txt: there are no */init-sh/ directories in the rpm
msec
2001-09-19 11:32 yoann
* msec.spec: *** empty log message ***
2001-09-19 11:31 yoann
* ChangeLog: Generated by cvs2cl the 19_Sep
2001-09-19 11:30 yoann
* msec.spec: *** empty log message ***
2001-09-19 11:19 yoann
* ChangeLog: *** empty log message ***
2001-09-19 11:18 yoann
* ChangeLog, msec.spec: *** empty log message ***
2001-09-19 09:37 yoann
* init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/lib.sh: *** empty log message ***
2001-09-17 17:18 daouda
* ChangeLog: Generated by cvs2cl the 17_sep
2001-09-17 17:14 daouda
* msec.logrotate: logrotate file
2001-09-17 16:50 flepied
* ChangeLog: Generated by cvs2cl the 17_Sep
2001-09-17 16:45 daouda
* ChangeLog: Generated by cvs2cl the 17_sep
2001-09-17 16:44 daouda
* msec.spec: del doc/*
2001-09-17 16:43 daouda
* ChangeLog: Generated by cvs2cl the 17_sep
2001-09-17 16:42 daouda
* msec.spec: comment doc/*.8
2001-09-17 16:35 daouda
* ChangeLog: Generated by cvs2cl the 17_sep
2001-09-17 16:35 daouda
* msec.spec: fix kdm sec hole at level 4 (displayin users)
2001-09-17 16:32 daouda
* init-sh/lib.sh: -fix users display in level up to 4 (kdm)
2001-09-14 16:14 florin
* conf/perm.2, conf/perm.3, conf/perm.5: /var/log/squid
permisssions
2001-09-14 16:14 florin
* conf/perm.0, conf/perm.1, conf/perm.4: /var/log/squid permisssion
2001-09-14 16:12 florin
* msec.spec: /var/log/squid permissions
2001-09-03 01:24 pablo
* Makefile, doc/init.sh.8, doc/msec.8, man, man/C, man/C/init.sh.8,
man/C/msec.8, man/fr, man/fr/init.sh.8, msec.spec: moved man
pages to man/C, added French man page
2001-08-09 09:02 flepied
* ChangeLog: Generated by cvs2cl the 09_Aug
2001-08-09 09:02 flepied
* msec.spec: 0.15-18mdk
2001-08-09 09:00 flepied
* Makefile: add rules to build test and release rpms.
2001-08-09 08:48 flepied
* init-sh/custom.sh, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh: added
vc/[1-6] to securetty (devfs)
2001-08-09 08:47 flepied
* conf/perm.4: made securetty entry compliant with other perm.*
2001-08-09 08:10 flepied
* ChangeLog, Makefile, TODO, conf/perm.0, conf/perm.1, conf/perm.2,
conf/perm.3, conf/perm.4, conf/perm.5, conf/server.4,
conf/server.5, cron-sh/security.sh, cron-sh/security_check.sh,
init-sh/custom.sh, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/lib.sh, init-sh/lib.sh.usermode,
msec.spec: merge back 0.15-17mdk in CVS
2000-05-17 13:38 yoann
* init-sh/custom.sh, init-sh/level4.sh, init-sh/level5.sh: ***
empty log message ***
2000-05-17 10:45 yoann
* init-sh/custom.sh, init-sh/level4.sh, init-sh/level5.sh: ***
empty log message ***
2000-05-03 12:42 yoann
* msec.spec: *** empty log message ***
2000-05-03 12:42 yoann
* msec.spec: *** empty log message ***
2000-05-03 12:41 yoann
* msec.spec: *** empty log message ***
2000-05-03 12:41 yoann
* ChangeLog, init-sh/custom.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/lib.sh, msec.spec: *** empty log
message ***
2000-04-25 12:04 yoann
* msec.spec: *** empty log message ***
2000-04-25 12:04 yoann
* Makefile, msec.spec: *** empty log message ***
2000-04-25 12:01 yoann
* ChangeLog, Makefile, init-sh/lib.sh, msec.spec: *** empty log
message ***
2000-04-24 21:01 prigaux
* ChangeLog, conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3,
conf/perm.4, msec.spec: no_comment
2000-04-19 11:04 yoann
* ChangeLog, Makefile, init-sh/lib.sh, msec.spec: *** empty log
message ***
2000-04-19 10:07 yoann
* init-sh/lib.sh: *** empty log message ***
2000-04-19 10:07 yoann
* ChangeLog, init-sh/lib.sh, msec.spec: *** empty log message ***
2000-04-19 09:54 yoann
* init-sh/custom.sh, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/lib.sh: *** empty log message ***
2000-04-18 16:32 yoann
* init-sh/custom.sh, msec.spec, src/msec_find/find.c: *** empty log
message ***
2000-04-18 14:36 yoann
* init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: ***
empty log message ***
2000-04-17 16:19 yoann
* msec.spec: *** empty log message ***
2000-04-17 15:25 yoann
* ChangeLog, msec.spec, src/msec_find/find.c: *** empty log message
***
2000-04-17 14:27 yoann
* ChangeLog, conf/perm.0, conf/perm.1, conf/perm.2, conf/perm.3,
conf/perm.4, conf/perm.5, init-sh/file_perm.sh, msec.spec: ***
empty log message ***
2000-04-17 14:14 yoann
* ChangeLog, init-sh/file_perm.sh, msec.spec: *** empty log message
***
2000-04-17 14:07 yoann
* conf/perm.5: *** empty log message ***
2000-04-17 13:55 yoann
* ChangeLog, Makefile, doc/msec.8, doc/msec.lyx, msec.spec: ***
empty log message ***
2000-04-14 16:35 yoann
* init-sh/custom.sh, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh: *** empty log message ***
2000-03-22 17:44 yoann
* init-sh/custom.sh: *** empty log message ***
2000-03-22 17:44 yoann
* Makefile, README, init-sh/custom.sh, msec.spec: *** empty log
message ***
2000-03-22 17:39 yoann
* ChangeLog, README, init-sh/custom.sh, init-sh/level5.sh,
init-sh/lib.sh: *** empty log message ***
2000-03-22 16:59 yoann
* conf/perm.5: *** empty log message ***
2000-03-19 18:41 yoann
* ChangeLog, cron-sh/security.sh, src/msec_find/find.c: *** empty
log message ***
2000-03-19 16:10 yoann
* ChangeLog, cron-sh/security.sh, msec.spec, src/msec_find/find.c:
*** empty log message ***
2000-03-09 13:52 yoann
* ChangeLog, msec.spec: *** empty log message ***
2000-03-09 13:42 yoann
* ChangeLog, init-sh/custom.sh, msec.spec, src/msec_find/find.c:
*** empty log message ***
2000-03-08 14:44 yoann
* Makefile, msec.spec, src/msec_find/Makefile,
src/promisc_check/Makefile: *** empty log message ***
2000-03-08 14:26 yoann
* msec.spec: *** empty log message ***
2000-03-08 14:26 yoann
* Makefile, msec.spec: *** empty log message ***
2000-03-08 14:19 yoann
* Makefile, init-sh/msec: *** empty log message ***
2000-03-08 14:01 yoann
* ChangeLog, Makefile, cron-sh/security.sh, init-sh/custom.sh,
init-sh/level4.sh, init-sh/level5.sh, init-sh/msec, msec.spec,
src/msec_find, src/msec_find/Makefile, src/msec_find/find.c: ***
empty log message ***
2000-03-07 17:03 yoann
* ChangeLog, init-sh/msec, msec.spec: *** empty log message ***
2000-03-07 16:51 yoann
* msec.spec: *** empty log message ***
2000-03-07 16:50 yoann
* ChangeLog, Makefile, init-sh/level0.sh, msec.spec: *** empty log
message ***
2000-03-07 16:45 yoann
* Makefile, conf, conf/perm.0, conf/perm.1, conf/perm.2,
conf/perm.3, conf/perm.4, conf/perm.5, conf/server.4,
conf/server.5, cron-sh/promisc_check.sh, cron-sh/security.sh,
init-sh/custom.sh, init-sh/init.sh, init-sh/level0.sh,
init-sh/level1.sh, init-sh/level2.sh, init-sh/level3.sh,
init-sh/level4.sh, init-sh/level5.sh, init-sh/lib.sh,
init-sh/msec, init-sh/perm.0, init-sh/perm.1, init-sh/perm.2,
init-sh/perm.3, init-sh/perm.4, init-sh/perm.5, init-sh/server.4,
init-sh/server.5: *** empty log message ***
2000-03-07 14:39 yoann
* ChangeLog, cron-sh/security_check.sh, init-sh/perm.4,
init-sh/perm.5: *** empty log message ***
2000-02-17 11:29 yoann
* ChangeLog, init-sh/perm.4, init-sh/perm.5: *** empty log message
***
2000-02-17 10:07 yoann
* ChangeLog, init-sh/perm.4, init-sh/perm.5: *** empty log message
***
2000-01-21 00:46 yoann
* init-sh/grpuser.sh: *** empty log message ***
2000-01-18 08:57 yoann
* msec.spec: *** empty log message ***
2000-01-13 09:08 yoann
* ChangeLog, init-sh/custom.sh, msec.spec: *** empty log message
***
2000-01-06 14:27 yoann
* ChangeLog, cron-sh/security.sh, init-sh/level3.sh,
init-sh/level4.sh, init-sh/level5.sh, msec.spec: *** empty log
message ***
2000-01-06 13:35 camille
* doc/msec.lyx, doc/msec.ps: re-mistake...
2000-01-06 13:24 camille
* doc/msec.lyx, doc/msec.ps: Added friendly level names
Corrected a mistake
2000-01-06 13:17 yoann
* ChangeLog: *** empty log message ***
2000-01-06 13:17 yoann
* ChangeLog, init-sh/level0.sh, msec.spec: *** empty log message
***
2000-01-04 13:10 camille
* doc/msec.lyx, doc/msec.ps: Added "root shutdown" feature.
2000-01-04 12:40 yoann
* ChangeLog, msec.spec: *** empty log message ***
2000-01-04 12:37 yoann
* ChangeLog, doc/security.txt, init-sh/custom.sh: *** empty log
message ***
2000-01-04 10:25 yoann
* ChangeLog: *** empty log message ***
2000-01-04 10:25 yoann
* ChangeLog, init-sh/level0.sh, init-sh/perm.0, init-sh/perm.1,
init-sh/perm.2, init-sh/perm.3, init-sh/perm.4, init-sh/perm.5:
*** empty log message ***
2000-01-03 10:43 yoann
* ChangeLog, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh: *** empty log message ***
1999-12-29 13:24 yoann
* msec.spec: *** empty log message ***
1999-12-29 13:21 chmouel
* ChangeLog, Makefile, msec.spec: "Seethechangelog"
1999-12-29 13:18 yoann
* ChangeLog, doc/grpuser.8: *** empty log message ***
1999-12-28 18:28 chmouel
* doc/msec.lyx, doc/msec.ps: "Seethechangelog"
1999-12-28 18:15 chmouel
* doc/grpuser.8, doc/grpuser.8.bz2, doc/init.sh.8,
doc/init.sh.8.bz2, doc/msec.8, doc/msec.8.bz2: "Seethechangelog"
1999-12-28 16:13 camille
* doc/grpuser.8.bz2, doc/init.sh.8.bz2, doc/msec.8.bz2: Added man
pages
1999-12-28 15:32 camille
* doc/msec.lyx: Added latest enhancement: mail warning
1999-12-28 08:47 yoann
* init-sh/level3.sh: *** empty log message ***
1999-12-27 17:03 yoann
* msec.spec: *** empty log message ***
1999-12-27 16:33 yoann
* cron-sh/diff_check.sh, cron-sh/security.sh: *** empty log message
***
1999-12-27 16:29 yoann
* ChangeLog, cron-sh/diff_check.sh, cron-sh/security.sh,
cron-sh/security_check.sh, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/perm.0, init-sh/perm.1,
init-sh/perm.2, init-sh/perm.3, init-sh/perm.4, init-sh/perm.5,
msec.spec: *** empty log message ***
1999-12-24 09:32 yoann
* msec.spec: *** empty log message ***
1999-12-23 13:05 yoann
* cron-sh/diff_check.sh: typo
1999-12-22 09:28 yoann
* ChangeLog, init-sh/perm.0, init-sh/perm.1, init-sh/perm.2,
init-sh/perm.3, init-sh/perm.4, init-sh/perm.5: *** empty log
message ***
1999-12-22 08:57 yoann
* ChangeLog: *** empty log message ***
1999-12-22 02:41 camille
* doc/msec.lyx: Added comprehensive level descriptions
1999-12-21 22:17 prigaux
* ChangeLog: no_comment
1999-12-21 22:17 prigaux
* ChangeLog, init-sh/perm.4, msec.spec: no_comment
1999-12-21 22:10 prigaux
* ChangeLog, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
msec.spec: no_comment
1999-12-21 22:02 prigaux
* ChangeLog, init-sh/lib.sh, msec.spec: no_comment
1999-12-20 18:28 yoann
* init-sh/level5.sh: *** empty log message ***
1999-12-20 18:04 yoann
* init-sh/lib.sh, msec.spec: *** empty log message ***
1999-12-20 17:14 yoann
* init-sh/perm.1, init-sh/perm.2, init-sh/perm.3: *** empty log
message ***
1999-12-20 16:56 yoann
* Makefile, cron-sh/security.sh, cron-sh/security_check.sh,
msec.spec: *** empty log message ***
1999-12-20 11:52 yoann
* cron-sh/security.sh, init-sh/grpuser.sh: *** empty log message
***
1999-12-20 08:34 yoann
* Makefile, init-sh/level4.sh, init-sh/level5.sh: *** empty log
message ***
1999-12-20 08:06 yoann
* ChangeLog, init-sh/perm.0, init-sh/perm.1, init-sh/perm.2,
init-sh/perm.3, init-sh/perm.4, init-sh/perm.5: *** empty log
message ***
1999-12-19 23:51 yoann
* ChangeLog, init-sh/lib.sh, init-sh/perm.0, init-sh/perm.1,
init-sh/perm.2, init-sh/perm.3, init-sh/perm.4, init-sh/perm.5:
*** empty log message ***
1999-12-19 22:39 prigaux
* ChangeLog, init-sh/lib.sh: *** empty log message ***
1999-12-19 22:16 prigaux
* init-sh/lib.sh: *** empty log message ***
1999-12-19 22:15 prigaux
* init-sh/lib.sh: *** empty log message ***
1999-12-19 22:14 prigaux
* init-sh/lib.sh: *** empty log message ***
1999-12-19 22:09 yoann
* init-sh/level1.sh, init-sh/level2.sh: *** empty log message ***
1999-12-19 22:01 yoann
* Makefile, cron-sh/security.sh, init-sh/security.conf: *** empty
log message ***
1999-12-19 21:53 prigaux
* init-sh/lib.sh: *** empty log message ***
1999-12-19 21:36 yoann
* cron-sh/security_check.sh: *** empty log message ***
1999-12-19 21:12 prigaux
* ChangeLog, init-sh/lib.sh: *** empty log message ***
1999-12-19 20:44 yoann
* cron-sh/diff_check.sh, cron-sh/security_check.sh: *** empty log
message ***
1999-12-19 20:20 yoann
* cron-sh/security.sh, init-sh/custom.sh, init-sh/level3.sh,
init-sh/level4.sh, init-sh/level5.sh: *** empty log message ***
1999-12-19 20:19 yoann
* cron-sh/find.sh, cron-sh/security.sh: *** empty log message ***
1999-12-19 20:05 yoann
* ChangeLog, cron-sh/diff_check.sh, cron-sh/find.sh,
cron-sh/security_check.sh, init-sh/security.conf: *** empty log
message ***
1999-12-19 00:35 prigaux
* ChangeLog, msec.spec: no_comment
1999-12-19 00:31 prigaux
* ChangeLog, msec.spec: no_comment
1999-12-19 00:31 prigaux
* ChangeLog, Makefile, msec.spec: no_comment
1999-12-18 16:08 prigaux
* init-sh/init.sh, init-sh/lib.sh, msec.spec: no_comment
1999-12-17 15:23 yoann
* ChangeLog, init-sh/security.conf: *** empty log message ***
1999-12-17 15:22 yoann
* ChangeLog, Makefile, cron-sh/diff_check.sh,
cron-sh/security_check.sh, init-sh/lib.sh: *** empty log message
***
1999-12-17 14:17 yoann
* ChangeLog, cron-sh/security_check.sh: *** empty log message ***
1999-12-16 22:21 camille
* doc/msec.lyx: Added level 0
minor changes
1999-12-16 17:48 yoann
* ChangeLog, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/lib.sh, msec.spec: *** empty log
message ***
1999-12-16 16:43 yoann
* ChangeLog: *** empty log message ***
1999-12-16 16:42 yoann
* ChangeLog, init-sh/level0.sh, init-sh/lib.sh, msec.spec: ***
empty log message ***
1999-12-16 16:21 yoann
* Makefile, TODO, cron-sh/diff_check.sh, cron-sh/security_check.sh,
init-sh/group.conf, init-sh/grpuser.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/lib.sh, msec.spec: *** empty log
message ***
1999-12-16 10:37 yoann
* init-sh/grpuser.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/lib.sh: *** empty log message ***
1999-12-16 02:08 chmouel
* ChangeLog, doc/msec.lyx: *** empty log message ***
1999-12-15 18:04 yoann
* init-sh/level0.sh: *** empty log message ***
1999-12-15 17:35 yoann
* ChangeLog, TODO, init-sh/lib.sh: *** empty log message ***
1999-12-15 17:22 yoann
* TODO, init-sh/grpuser: *** empty log message ***
1999-12-15 17:21 yoann
* ChangeLog, Makefile, init-sh/group.conf, init-sh/grpuser,
init-sh/grpuser.sh, init-sh/lib.sh: *** empty log message ***
1999-12-15 11:13 yoann
* ChangeLog, init-sh/level0.sh: *** empty log message ***
1999-12-15 11:05 yoann
* ChangeLog, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh: *** empty log message ***
1999-12-15 10:48 yoann
* ChangeLog, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/lib.sh: *** empty log message ***
1999-12-15 09:39 yoann
* ChangeLog, cron-sh/diff_check.sh, cron-sh/security_check.sh,
init-sh/custom.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/lib.sh: *** empty log message ***
1999-12-15 08:10 yoann
* doc/security.txt, init-sh/level2.sh, init-sh/perm.1,
init-sh/perm.2, init-sh/perm.4, init-sh/perm.5: *** empty log
message ***
1999-12-14 17:24 yoann
* ChangeLog, init-sh/level1.sh, init-sh/level2.sh, init-sh/lib.sh,
msec.spec: *** empty log message ***
1999-12-14 16:35 yoann
* ChangeLog, init-sh/level1.sh, init-sh/level2.sh, init-sh/lib.sh:
*** empty log message ***
1999-12-14 13:40 yoann
* ChangeLog, init-sh/lib.sh: *** empty log message ***
1999-12-14 13:11 yoann
* doc/security.txt, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/lib.sh, msec.spec: *** empty log
message ***
1999-12-13 11:47 yoann
* ChangeLog, cron-sh/diff_check.sh, msec.spec: *** empty log
message ***
1999-12-10 15:28 yoann
* init-sh/level0.sh, init-sh/level2.sh, init-sh/level3.sh,
init-sh/level4.sh, init-sh/level5.sh: *** empty log message ***
1999-12-10 15:22 yoann
* ChangeLog, init-sh/custom.sh, msec.spec: *** empty log message
***
1999-12-09 17:17 yoann
* msec.spec: *** empty log message ***
1999-12-09 17:17 yoann
* ChangeLog, msec.spec: *** empty log message ***
1999-12-09 17:16 yoann
* Makefile, cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
cron-sh/security_check.sh, init-sh/custom.sh,
init-sh/file_perm.sh, init-sh/grpuser, init-sh/init.sh,
init-sh/level0.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/lib.sh: Should really be stable now.
1999-12-09 16:44 yoann
* ChangeLog, init-sh/level0.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/lib.sh: *** empty log message ***
1999-12-09 16:28 yoann
* ChangeLog: *** empty log message ***
1999-12-09 16:20 yoann
* init-sh/level0.sh, init-sh/perm.0: *** empty log message ***
1999-12-09 15:48 yoann
* msec.spec: *** empty log message ***
1999-12-09 15:46 yoann
* msec.spec: *** empty log message ***
1999-12-09 15:46 yoann
* ChangeLog, cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
cron-sh/security_check.sh, init-sh/custom.sh, init-sh/level4.sh,
init-sh/lib.sh, msec.spec: *** empty log message ***
1999-12-09 14:48 yoann
* cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
cron-sh/security_check.sh, init-sh/lib.sh: *** empty log message
***
1999-12-09 10:20 yoann
* cron-sh/promisc_check.sh: *** empty log message ***
1999-12-09 10:07 yoann
* ChangeLog, cron-sh/diff_check.sh, cron-sh/security_check.sh: ***
empty log message ***
1999-12-08 17:16 yoann
* cron-sh/diff_check.sh, cron-sh/promisc_check.sh: *** empty log
message ***
1999-12-08 16:13 yoann
* ChangeLog, cron-sh/security_check.sh, msec.spec: *** empty log
message ***
1999-12-08 14:55 yoann
* msec.spec: *** empty log message ***
1999-12-08 12:58 yoann
* init-sh/lib.sh: *** empty log message ***
1999-12-08 12:49 yoann
* init-sh/lib.sh: *** empty log message ***
1999-12-08 12:44 yoann
* init-sh/custom.sh, init-sh/level5.sh: *** empty log message ***
1999-12-08 12:08 yoann
* cron-sh/diff_check.sh: *** empty log message ***
1999-12-08 12:08 yoann
* cron-sh/diff_check.sh, cron-sh/promisc_check.sh,
cron-sh/security_check.sh, init-sh/level5.sh, init-sh/lib.sh,
msec.spec: *** empty log message ***
1999-12-08 12:00 yoann
* ChangeLog, cron-sh/diff_check.sh, cron-sh/file_check.sh,
cron-sh/security_check.sh, init-sh/custom.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/lib.sh, msec.spec: *** empty log
message ***
1999-12-08 10:24 yoann
* init-sh/file_perm.sh: *** empty log message ***
1999-12-08 10:04 yoann
* ChangeLog, init-sh/file_perm.sh, init-sh/level3.sh,
init-sh/level4.sh, init-sh/level5.sh, msec.spec: *** empty log
message ***
1999-12-08 04:50 axalon
* ChangeLog: blah
1999-12-08 04:47 axalon
* cron-sh/security_check.sh: Handle usernames longer than 8 chars
uses ls -n and moves a couple $1 to $3 and such blah blah
1999-12-08 02:49 chmouel
* ChangeLog, Makefile, msec.spec: "See_The_Changelog"
1999-12-08 02:43 chmouel
* ChangeLog, Makefile, doc/msec.spec, msec.spec:
"See_The_Changelog"
1999-12-08 02:33 chmouel
* ChangeLog: *** empty log message ***
1999-12-08 02:33 chmouel
* Makefile: "See_The_Changelog"
1999-12-08 02:15 chmouel
* doc/msec.spec: "See_The_Changelog"
1999-12-08 02:15 chmouel
* ChangeLog: *** empty log message ***
1999-12-08 02:12 chmouel
* ChangeLog: "See_The_Changelog"
1999-12-08 02:11 chmouel
* ChangeLog, cron-sh/promisc_check.sh: "See_The_Changelog"
1999-12-08 01:30 axalon
* cron-sh/file_check.sh: Fix the typo
1999-12-06 18:11 yoann
* doc/msec.spec, init-sh/level2.sh, init-sh/level3.sh,
init-sh/level4.sh, init-sh/level5.sh: *** empty log message ***
1999-12-06 18:11 yoann
* cron-sh/file_check.sh, cron-sh/security_check.sh, doc/msec.spec,
init-sh/custom.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/lib.sh: *** empty log message ***
1999-12-06 09:01 yoann
* cron-sh/file_check.sh, init-sh/perm.1, init-sh/perm.2,
init-sh/perm.3, init-sh/perm.4, init-sh/perm.5: Added permission
for /var/log/ and it's subdirectory
1999-12-03 14:05 yoann
* init-sh/level1.sh, init-sh/level2.sh, init-sh/level3.sh,
init-sh/level4.sh, init-sh/level5.sh: Added /usr/games in PATH
1999-12-01 16:30 yoann
* doc/msec.spec, init-sh/level1.sh, init-sh/level2.sh,
init-sh/lib.sh: *** empty log message ***
1999-12-01 15:52 yoann
* doc/msec.spec: *** empty log message ***
1999-12-01 15:51 yoann
* doc/msec.spec, init-sh/file_perm.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/lib.sh: Ok now add the user list to
audio group ( level 1 & 2 ).
lib.sh delete user list from audio group
1999-12-01 14:55 yoann
* init-sh/level1.sh, init-sh/level2.sh, init-sh/level3.sh: Bug fix
1999-12-01 11:40 yoann
* doc/msec.spec: *** empty log message ***
1999-12-01 11:39 yoann
* init-sh/level4.sh, init-sh/lib.sh: Now preserve file indentation
1999-12-01 11:10 yoann
* init-sh/level4.sh, init-sh/lib.sh: *** empty log message ***
1999-12-01 11:02 yoann
* doc/msec.spec, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/lib.sh: Bug fix
1999-11-30 15:47 yoann
* cron-sh/file_check.sh, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh: Many
cron security check added.
Now report what it does ( msec ).
1999-11-29 15:07 yoann
* doc/msec.spec: *** empty log message ***
1999-11-29 15:06 yoann
* Makefile, doc/msec.spec, init-sh/custom.sh, init-sh/init.sh,
init-sh/lib.sh: *** empty log message ***
1999-11-29 14:18 yoann
* init-sh/custom.sh, init-sh/init.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/lib.sh: Uhh custom security will
always be a good idea.
1999-11-29 10:09 yoann
* doc/msec.spec, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh, init-sh/level4.sh, init-sh/level5.sh,
init-sh/lib.sh: Fix a few bug.
1999-11-26 17:23 yoann
* doc/msec.spec: *** empty log message ***
1999-11-26 00:21 yoann
* doc/msec.spec, init-sh/level1.sh, init-sh/level2.sh,
init-sh/level3.sh: msec.spec: updated revision / changelog.
level[12].sh: removed some unused code.
level3.sh: fixed a bug
1999-11-25 20:24 yoann
* doc/msec.spec, init-sh/level4.sh, init-sh/level5.sh: level[45].sh
: use the new --msec option when calling chkconfig
msec.spec : updated release version number
1999-11-25 19:44 yoann
* AUTHORS, COPYING, Makefile, README, cron-sh, cron-sh/Makefile,
cron-sh/file_check.sh, cron-sh/promisc_check.sh, doc,
doc/msec.spec, doc/security.txt, init-sh, init-sh/file_perm.sh,
init-sh/grpuser, init-sh/init.sh, init-sh/level1.sh,
init-sh/level2.sh, init-sh/level3.sh, init-sh/level4.sh,
init-sh/level5.sh, init-sh/lib.sh, init-sh/perm.1,
init-sh/perm.2, init-sh/perm.3, init-sh/perm.4, init-sh/perm.5,
init-sh/server.4, init-sh/server.5, src, src/promisc_check,
src/promisc_check/Makefile, src/promisc_check/promisc_check.c:
Initial revision
1999-11-25 19:44
* .: New repository initialized by cvs2svn.
|