summaryrefslogtreecommitdiffstats
path: root/data/CVE/1999.list
blob: 49480d13c0d6efef27857839220ce6f32d6161c6 (plain) (blame)
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
CVE-1999-XXXX [Insecure access control on GNU Mach's IO ports]
	- gnumach <unfixed> (bug #46709)
	NOTE: Nearly six years old :-)
CVE-1999-1586 (loadmodule in SunOS 4.1.x, as used by xnews, does not properly ...)
	NOT-FOR-US: SunOS
CVE-1999-1585 (The (1) rcS and (2) mountall programs in Sun Solaris 2.x, possibly ...)
	NOT-FOR-US: Solaris
CVE-1999-1584 (Unknown vulnerability in (1) loadmodule, and (2) modload if modload is ...)
	NOT-FOR-US: SunOS
CVE-1999-1583 (Buffer overflow in nslookup for AIX 4.3 allows local users to execute ...)
	NOT-FOR-US: AIX
CVE-1999-1582 (By design, the &quot;established&quot; command on the Cisco PIX firewall allows ...)
	NOT-FOR-US: Cisco PIX
CVE-1999-1581 (Memory leak in Simple Network Management Protocol (SNMP) agent ...)
	NOT-FOR-US: Windows
CVE-1999-1580 (SunOS sendmail 5.59 through 5.65 uses popen to process a forwarding ...)
	- sendmail <not-affected> (Sun-specific)
CVE-1999-1579 (The Cenroll ActiveX control (xenroll.dll) for Terminal Server Editions ...)
	NOT-FOR-US: Windows
CVE-1999-1578 (Buffer overflow in Registration Wizard ActiveX control (regwizc.dll, ...)
	NOT-FOR-US: Windows
CVE-1999-1577 (Buffer overflow in HHOpen ActiveX control (hhopen.ocx) 1.0.0.1 for ...)
	NOT-FOR-US: Windows
CVE-1999-1576 (Buffer overflow in Adobe Acrobat ActiveX control (pdf.ocx, ...)
	NOT-FOR-US: Acrobat Reader
CVE-1999-1575 (The Kodak/Wang (1) Image Edit (imgedit.ocx), (2) Image Annotation ...)
	NOT-FOR-US: Kodak/Wang tools for IE
CVE-1999-1574 (Buffer overflow in the lex routines of nslookup for AIX 4.3 may allow ...)
	NOT-FOR-US: AIX
CVE-1999-1573 (Multiple unknown vulnerabilities in the &quot;r-cmnds&quot; (1) remshd, (2) ...)
	NOT-FOR-US: HP-UX
CVE-1999-1568 (Off-by-one error in NcFTPd FTP server before 2.4.1 allows a remote ...)
	TODO: check
CVE-1999-1565 (Man2html 2.1 and earlier allows local users to overwrite arbitrary ...)
	TODO: check
CVE-1999-1556 (Microsoft SQL Server 6.5 uses weak encryption for the password for the ...)
	TODO: check
CVE-1999-1550 (bigconf.conf in F5 BIG/ip 2.1.2 and earlier allows remote attackers to ...)
	TODO: check
CVE-1999-1542 (RPMMail before 1.4 allows remote attackers to execute commands via an ...)
	TODO: check
CVE-1999-1537 (IIS 3.x and 4.x does not distinguish between pages requiring ...)
	TODO: check
CVE-1999-1535 (Buffer overflow in AspUpload.dll in Persits Software AspUpload before ...)
	TODO: check
CVE-1999-1531 (Buffer overflow in IBM HomePagePrint 1.0.7 for Windows98J allows a ...)
	TODO: check
CVE-1999-1530 (cgiwrap as used on Cobalt RaQ 2.0 and RaQ 3i does not properly ...)
	TODO: check
CVE-1999-1520 (A configuration problem in the Ad Server Sample directory (AdSamples) ...)
	TODO: check
CVE-1999-1512 (The AMaViS virus scanner 0.2.0-pre4 and earlier allows remote ...)
	TODO: check
CVE-1999-1507 (Sun SunOS 4.1 through 4.1.3 allows local attackers to gain root access ...)
	TODO: check
CVE-1999-1494 (colorview in Silicon Graphics IRIX 5.1, 5.2, and 6.0 allows local ...)
	TODO: check
CVE-1999-1490 (xosview 1.5.1 in Red Hat 5.1 allows local users to gain root access ...)
	TODO: check
CVE-1999-1488 (sdrd daemon in IBM SP2 System Data Repository (SDR) allows remote ...)
	TODO: check
CVE-1999-1486 (sadc in IBM AIX 4.1 through 4.3, when called from programs such as ...)
	TODO: check
CVE-1999-1481 (Squid 2.2.STABLE5 and below, when using external authentication, ...)
	TODO: check
CVE-1999-1478 (The Sun HotSpot Performance Engine VM allows a remote attacker to ...)
	TODO: check
CVE-1999-1476 (A bug in Intel Pentium processor (MMX and Overdrive) allows local ...)
	TODO: check
CVE-1999-1473 (When a Web site redirects the browser to another site, Internet ...)
	TODO: check
CVE-1999-1472 (Internet Explorer 4.0 allows remote attackers to read arbitrary text ...)
	TODO: check
CVE-1999-1468 (rdist in various UNIX systems uses popen to execute sendmail, which ...)
	TODO: check
CVE-1999-1456 (thttpd HTTP server 2.03 and earlier allows remote attackers to read ...)
	TODO: check
CVE-1999-1455 (RSH service utility RSHSVC in Windows NT 3.5 through 4.0 does not ...)
	TODO: check
CVE-1999-1452 (GINA in Windows NT 4.0 allows attackers with physical access to ...)
	TODO: check
CVE-1999-1437 (ePerl 2.2.12 allows remote attackers to read arbitrary files and ...)
	TODO: check
CVE-1999-1433 (HP JetAdmin D.01.09 on Solaris allows local users to change the ...)
	TODO: check
CVE-1999-1432 (Power management (Powermanagement) on Solaris 2.4 through 2.6 does not ...)
	TODO: check
CVE-1999-1423 (ping in Solaris 2.3 through 2.6 allows local users to cause a denial ...)
	TODO: check
CVE-1999-1419 (Buffer overflow in nss_nisplus.so.1 library in NIS+ in Solaris 2.3 and ...)
	TODO: check
CVE-1999-1414 (IBM Netfinity Remote Control allows local users to gain administrator ...)
	TODO: check
CVE-1999-1411 (The installation of the fsp package 2.71-10 in Debian Linux 2.0 adds ...)
	TODO: check
CVE-1999-1409 (The at program in IRIX 6.2 and NetBSD 1.3.2 and earlier allows local ...)
	TODO: check
CVE-1999-1407 (ifdhcpc-done script for configuring DHCP on Red Hat Linux 5 allows ...)
	TODO: check
CVE-1999-1402 (The access permissions for a UNIX domain socket are ignored in Solaris ...)
	TODO: check
CVE-1999-1397 (Index Server 2.0 on IIS 4.0 stores physical path information in the ...)
	TODO: check
CVE-1999-1386 (Perl 5.004_04 and earlier follows symbolic links when running with the ...)
	TODO: check
CVE-1999-1385 (Buffer overflow in ppp program in FreeBSD 2.1 and earlier allows local ...)
	TODO: check
CVE-1999-1384 (Indigo Magic System Tour in the SGI system tour package (systour) for ...)
	TODO: check
CVE-1999-1382 (NetWare NFS mode 1 and 2 implements the &quot;Read Only&quot; flag in Unix by ...)
	TODO: check
CVE-1999-1380 (Symantec Norton Utilities 2.0 for Windows 95 marks the TUNEOCX.OCX ...)
	TODO: check
CVE-1999-1379 (DNS allows remote attackers to use DNS name servers as traffic ...)
	TODO: check
CVE-1999-1365 (Windows NT searches a user's home directory (%systemroot% by default) ...)
	TODO: check
CVE-1999-1363 (Windows NT 3.51 and 4.0 allow local users to cause a denial of service ...)
	TODO: check
CVE-1999-1362 (Win32k.sys in Windows NT 4.0 before SP2 allows local users to cause a ...)
	TODO: check
CVE-1999-1360 (Windows NT 4.0 allows local users to cause a denial of service via a ...)
	TODO: check
CVE-1999-1359 (When the Ntconfig.pol file is used on a server whose name is longer ...)
	TODO: check
CVE-1999-1358 (When an administrator in Windows NT or Windows 2000 changes a user ...)
	TODO: check
CVE-1999-1356 (Compaq Integration Maintenance Utility as used in Compaq Insight ...)
	TODO: check
CVE-1999-1351 (Directory traversal vulnerability in KVIrc IRC client 0.9.0 with the ...)
	TODO: check
CVE-1999-1341 (Linux kernel before 2.3.18 or 2.2.13pre15, with SLIP and PPP options, ...)
	TODO: check
CVE-1999-1339 (Vulnerability when Network Address Translation (NAT) is enabled in ...)
	TODO: check
CVE-1999-1337 (FTP client in Midnight Commander (mc) before 4.5.11 stores usernames ...)
	TODO: check
CVE-1999-1336 (3Com HiPer Access Router Card (HiperARC) 4.0 through 4.2.29 allows ...)
	TODO: check
CVE-1999-1335 (snmpd server in cmu-snmp SNMP package before 3.3-1 in Red Hat Linux ...)
	TODO: check
CVE-1999-1333 (automatic download option in ncftp 2.4.2 FTP client in Red Hat Linux ...)
	TODO: check
CVE-1999-1332 (gzexe in the gzip package on Red Hat Linux 5.0 and earlier allows ...)
	{DSA-308}
	- gzip 1.3.5-6
CVE-1999-1331 (netcfg 2.16-1 in Red Hat Linux 4.2 allows the Ethernet interface to be ...)
	TODO: check
CVE-1999-1330 (The snprintf function in the db library 1.85.4 ignores the size ...)
	TODO: check
CVE-1999-1329 (Buffer overflow in SysVInit in Red Hat Linux 5.1 and earlier allows ...)
	TODO: check
CVE-1999-1328 (linuxconf before 1.11.r11-rh3 on Red Hat Linux 5.1 allows local users ...)
	TODO: check
CVE-1999-1327 (Buffer overflow in linuxconf 1.11r11-rh2 on Red Hat Linux 5.1 allows ...)
	TODO: check
CVE-1999-1326 (wu-ftpd 2.4 FTP server does not properly drop privileges when an ABOR ...)
	TODO: check
CVE-1999-1325 (SAS System 5.18 on VAX/VMS is installed with insecure permissions for ...)
	TODO: check
CVE-1999-1324 (VAXstations running Open VMS 5.3 through 5.5-2 with VMS DECwindows or ...)
	TODO: check
CVE-1999-1321 (Buffer overflow in ssh 1.2.26 client with Kerberos V enabled could ...)
	TODO: check
CVE-1999-1320 (Vulnerability in Novell NetWare 3.x and earlier allows local users to ...)
	TODO: check
CVE-1999-1318 (/usr/5bin/su in SunOS 4.1.3 and earlier uses a search path that ...)
	TODO: check
CVE-1999-1317 (Windows NT 4.0 SP4 and earlier allows local users to gain privileges ...)
	TODO: check
CVE-1999-1316 (Passfilt.dll in Windows NT SP2 allows users to create a password that ...)
	TODO: check
CVE-1999-1309 (Sendmail before 8.6.7 allows local users to gain root access via a ...)
	TODO: check
CVE-1999-1301 (A design flaw in the Z-Modem protocol allows the remote sender of a ...)
	TODO: check
CVE-1999-1298 (Sysinstall in FreeBSD 2.2.1 and earlier, when configuring anonymous ...)
	TODO: check
CVE-1999-1297 (cmdtool in OpenWindows 3.0 and XView 3.0 in SunOS 4.1.4 and earlier ...)
	TODO: check
CVE-1999-1294 (Office Shortcut Bar (OSB) in Windows 3.51 enables backup and restore ...)
	TODO: check
CVE-1999-1290 (Buffer overflow in nftp FTP client version 1.40 allows remote ...)
	TODO: check
CVE-1999-1288 (Samba 1.9.18 inadvertently includes a prototype application, wsmbconf, ...)
	TODO: check
CVE-1999-1284 (NukeNabber allows remote attackers to cause a denial of service by ...)
	TODO: check
CVE-1999-1279 (An interaction between the AS/400 shared folders feature and Microsoft ...)
	TODO: check
CVE-1999-1276 (fte-console in the fte package before 0.46b-4.1 does not drop root ...)
	TODO: check
CVE-1999-1263 (Metamail before 2.7-7.2 allows remote attackers to overwrite arbitrary ...)
	TODO: check
CVE-1999-1262 (Java in Netscape 4.5 does not properly restrict applets from ...)
	TODO: check
CVE-1999-1259 (Microsoft Office 98, Macintosh Edition, does not properly initialize ...)
	TODO: check
CVE-1999-1258 (rpc.pwdauthd in SunOS 4.1.1 and earlier does not properly prevent ...)
	TODO: check
CVE-1999-1249 (movemail in HP-UX 10.20 has insecure permissions, which allows local ...)
	TODO: check
CVE-1999-1246 (Direct Mailer feature in Microsoft Site Server 3.0 saves user domain ...)
	TODO: check
CVE-1999-1243 (SGI Desktop Permissions Tool in IRIX 6.0.1 and earlier allows local ...)
	TODO: check
CVE-1999-1233 (IIS 4.0 does not properly restrict access for the initial session ...)
	TODO: check
CVE-1999-1226 (Netscape Communicator 4.7 and earlier allows remote attackers to cause ...)
	TODO: check
CVE-1999-1223 (IIS 3.0 allows remote attackers to cause a denial of service via a ...)
	TODO: check
CVE-1999-1222 (Netbt.sys in Windows NT 4.0 allows remote malicious DNS servers to ...)
	TODO: check
CVE-1999-1217 (The PATH in Windows NT includes the current working directory (.), ...)
	TODO: check
CVE-1999-1215 (LOGIN.EXE program in Novell Netware 4.0 and 4.01 temporarily writes ...)
	TODO: check
CVE-1999-1214 (Vulnerability in asynchronous I/O facility in 4.4 BSD kernel does not ...)
	TODO: check
CVE-1999-1209 (Vulnerability in scoterm in SCO OpenServer 5.0 and SCO Open ...)
	TODO: check
CVE-1999-1208 (Buffer overflow in ping in AIX 4.2 and earlier allows local users to ...)
	TODO: check
CVE-1999-1205 (nettune in HP-UX 10.01 and 10.00 is installed setuid root, which ...)
	TODO: check
CVE-1999-1204 (Check Point Firewall-1 does not properly handle certain restricted ...)
	TODO: check
CVE-1999-1203 (Multilink PPP for ISDN dialup users in Ascend before 4.6 allows remote ...)
	TODO: check
CVE-1999-1201 (Windows 95 and Windows 98 systems, when configured with multiple ...)
	TODO: check
CVE-1999-1199 (Apache WWW server 1.3.1 and earlier allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1198 (BuildDisk program on NeXT systems before 2.0 does not prompt users for ...)
	TODO: check
CVE-1999-1197 (TIOCCONS in SunOS 4.1.1 does not properly check the permissions of a ...)
	TODO: check
CVE-1999-1194 (chroot in Digital Ultrix 4.1 and 4.0 is insecurely installed, which ...)
	TODO: check
CVE-1999-1193 (The &quot;me&quot; user in NeXT NeXTstep 2.1 and earlier has wheel group ...)
	TODO: check
CVE-1999-1192 (Buffer overflow in eeprom in Solaris 2.5.1 and earlier allows local ...)
	TODO: check
CVE-1999-1191 (Buffer overflow in chkey in Solaris 2.5.1 and earlier allows local ...)
	TODO: check
CVE-1999-1189 (Buffer overflow in Netscape Navigator/Communicator 4.7 for Windows 95 ...)
	TODO: check
CVE-1999-1188 (mysqld in MySQL 3.21 creates log files with world-readable ...)
	TODO: check
CVE-1999-1181 (Vulnerability in On-Line Customer Registration software for IRIX 6.2 ...)
	TODO: check
CVE-1999-1177 (Directory traversal vulnerability in nph-publish before 1.2 allows ...)
	TODO: check
CVE-1999-1175 (Web Cache Control Protocol (WCCP) in Cisco Cache Engine for Cisco IOS ...)
	TODO: check
CVE-1999-1167 (Cross-site scripting vulnerability in Third Voice Web annotation ...)
	TODO: check
CVE-1999-1163 (Vulnerability in HP Series 800 S/X/V Class servers allows remote ...)
	TODO: check
CVE-1999-1162 (Vulnerability in passwd in SCO UNIX 4.0 and earlier allows attackers ...)
	TODO: check
CVE-1999-1161 (Vulnerability in ppl in HP-UX 10.x and earlier allows local users to ...)
	TODO: check
CVE-1999-1160 (Vulnerability in ftpd/kftpd in HP-UX 10.x and 9.x allows local and ...)
	TODO: check
CVE-1999-1159 (SSH 2.0.11 and earlier allows local users to request remote forwarding ...)
	TODO: check
CVE-1999-1157 (Tcpip.sys in Windows NT 4.0 before SP4 allows remote attackers to ...)
	TODO: check
CVE-1999-1156 (BisonWare FTP Server 4.1 and earlier allows remote attackers to cause ...)
	TODO: check
CVE-1999-1148 (FTP service in IIS 4.0 and earlier allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1147 (Buffer overflow in Platinum Policy Compliance Manager (PCM) 7.0 allows ...)
	TODO: check
CVE-1999-1146 (Vulnerability in Glance and gpm programs in GlancePlus for HP-UX 9.x ...)
	TODO: check
CVE-1999-1145 (Vulnerability in Glance programs in GlancePlus for HP-UX 10.20 and ...)
	TODO: check
CVE-1999-1144 (Certain files in MPower in HP-UX 10.x are installed with insecure ...)
	TODO: check
CVE-1999-1143 (Vulnerability in runtime linker program rld in SGI IRIX 6.x and ...)
	TODO: check
CVE-1999-1142 (SunOS 4.1.2 and earlier allows local users to gain privileges in ...)
	TODO: check
CVE-1999-1140 (Buffer overflow in CrackLib 2.5 may allow local users to gain root ...)
	TODO: check
CVE-1999-1139 (Character-Terminal User Environment (CUE) in HP-UX 11.0 and earlier ...)
	TODO: check
CVE-1999-1138 (SCO UNIX System V/386 Release 3.2, and other SCO products, installs ...)
	TODO: check
CVE-1999-1137 (The permissions for the /dev/audio device on Solaris 2.2 and earlier, ...)
	TODO: check
CVE-1999-1136 (Vulnerability in Predictive on HP-UX 11.0 and earlier, and MPE/iX 5.5 ...)
	TODO: check
CVE-1999-1132 (Windows NT 4.0 allows remote attackers to cause a denial of service ...)
	TODO: check
CVE-1999-1131 (Buffer overflow in OSF Distributed Computing Environment (DCE) ...)
	TODO: check
CVE-1999-1127 (Windows NT 4.0 does not properly shut down invalid named pipe RPC ...)
	TODO: check
CVE-1999-1122 (Vulnerability in restore in SunOS 4.0.3 and earlier allows local users ...)
	TODO: check
CVE-1999-1121 (The default configuration for UUCP in AIX before 3.2 allows local ...)
	TODO: check
CVE-1999-1120 (netprint in SGI IRIX 6.4 and earlier trusts the PATH environmental ...)
	TODO: check
CVE-1999-1119 (FTP installation script anon.ftp in AIX insecurely configures ...)
	TODO: check
CVE-1999-1118 (ndd in Solaris 2.6 allows local users to cause a denial of service by ...)
	TODO: check
CVE-1999-1117 (lquerypv in AIX 4.1 and 4.2 allows local users to read arbitrary files ...)
	TODO: check
CVE-1999-1116 (Vulnerability in runpriv in Indigo Magic System Administration ...)
	TODO: check
CVE-1999-1115 (Vulnerability in the /etc/suid_exec program in HP Apollo Domain/OS ...)
	TODO: check
CVE-1999-1114 (Buffer overflow in Korn Shell (ksh) suid_exec program on IRIX 6.x and ...)
	TODO: check
CVE-1999-1111 (Vulnerability in StackGuard before 1.21 allows remote attackers to ...)
	TODO: check
CVE-1999-1109 (Sendmail before 8.10.0 allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1105 (Windows 95, when Remote Administration and File Sharing for NetWare ...)
	TODO: check
CVE-1999-1104 (Windows 95 uses weak encryption for the password list (.pwl) file used ...)
	TODO: check
CVE-1999-1103 (dxconsole in DEC OSF/1 3.2C and earlier allows local users to read ...)
	TODO: check
CVE-1999-1102 (lpr on SunOS 4.1.1, BSD 4.3, A/UX 2.0.1, and other BSD-based operating ...)
	TODO: check
CVE-1999-1100 (Cisco PIX Private Link 4.1.6 and earlier does not properly process ...)
	TODO: check
CVE-1999-1099 (Kerberos 4 allows remote attackers to obtain sensitive information via ...)
	TODO: check
CVE-1999-1098 (Vulnerability in BSD Telnet client with encryption and Kerberos 4 ...)
	TODO: check
CVE-1999-1094 (Buffer overflow in Internet Explorer 4.01 and earlier allows remote ...)
	TODO: check
CVE-1999-1093 (Buffer overflow in the Window.External function in the JScript ...)
	TODO: check
CVE-1999-1090 (The default configuration of NCSA Telnet package for Macintosh and PC ...)
	TODO: check
CVE-1999-1087 (Internet Explorer 4 treats a 32-bit number (&quot;dotless IP address&quot;) in ...)
	TODO: check
CVE-1999-1085 (SSH 1.2.25, 1.2.23, and other versions, when used in in CBC (Cipher ...)
	TODO: check
CVE-1999-1080 (rmmount in SunOS 5.7 may mount file systems without the nosuid flag ...)
	TODO: check
CVE-1999-1074 (Webmin before 0.5 does not restrict the number of invalid passwords ...)
	TODO: check
CVE-1999-1059 (Vulnerability in rexec daemon (rexecd) in AT&amp;T TCP/IP 4.0 for various ...)
	TODO: check
CVE-1999-1057 (VMS 4.0 through 5.3 allows local users to gain privileges via the ...)
	TODO: check
CVE-1999-1055 (Microsoft Excel 97 does not warn the user before executing worksheet ...)
	TODO: check
CVE-1999-1048 (Buffer overflow in bash 2.0.0, 1.4.17, and other versions allows local ...)
	TODO: check
CVE-1999-1047 (When BSDI patches for Gauntlet 5.0 BSDI are installed in a particular ...)
	TODO: check
CVE-1999-1045 (pnserver in RealServer 5.0 and earlier allows remote attackers to ...)
	TODO: check
CVE-1999-1044 (Vulnerability in Advanced File System Utility (advfs) in Digital UNIX ...)
	TODO: check
CVE-1999-1037 (rex.satan in SATAN 1.1.1 allows local users to overwrite arbitrary ...)
	TODO: check
CVE-1999-1035 (IIS 3.0 and 4.0 on x86 and Alpha allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1034 (Vulnerability in login in AT&amp;T System V Release 4 allows local users ...)
	TODO: check
CVE-1999-1032 (Vulnerability in LAT/Telnet Gateway (lattelnet) on Ultrix 4.1 and 4.2 ...)
	TODO: check
CVE-1999-1028 (Symantec pcAnywhere 8.0 allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1027 (Solaris 2.6 HW3/98 installs admintool with world-writable permissions, ...)
	TODO: check
CVE-1999-1021 (NFS on SunOS 4.1 through 4.1.2 ignores the high order 16 bits in a 32 ...)
	TODO: check
CVE-1999-1019 (SpectroSERVER in Cabletron Spectrum Enterprise Manager 5.0 installs a ...)
	TODO: check
CVE-1999-1014 (Buffer overflow in mail command in Solaris 2.7 and 2.7 allows local ...)
	TODO: check
CVE-1999-1011 (The Remote Data Service (RDS) DataFactory component of Microsoft Data ...)
	TODO: check
CVE-1999-1010 (An SSH 1.2.27 server allows a client to use the &quot;none&quot; cipher, even if ...)
	TODO: check
CVE-1999-1008 (xsoldier program allows local users to gain root access via a ...)
	TODO: check
CVE-1999-1007 (Buffer overflow in VDO Live Player allows remote attackers to execute ...)
	TODO: check
CVE-1999-1005 (Groupwise web server GWWEB.EXE allows remote attackers to read ...)
	TODO: check
CVE-1999-1004 (Buffer overflow in the POP server POProxy for the Norton Anti-Virus ...)
	TODO: check
CVE-1999-1001 (Cisco Cache Engine allows a remote attacker to gain access via a null ...)
	TODO: check
CVE-1999-1000 (The web administration interface for Cisco Cache Engine allows remote ...)
	TODO: check
CVE-1999-0999 (Microsoft SQL 7.0 server allows a remote attacker to cause a denial of ...)
	TODO: check
CVE-1999-0998 (Cisco Cache Engine allows an attacker to replace content in the cache. ...)
	TODO: check
CVE-1999-0997 (wu-ftp with FTP conversion enabled allows an attacker to execute ...)
	{DSA-377}
	- wu-ftpd 2.6.2-15
CVE-1999-0996 (Buffer overflow in Infoseek Ultraseek search engine allows remote ...)
	TODO: check
CVE-1999-0995 (Windows NT Local Security Authority (LSA) allows remote attackers to ...)
	TODO: check
CVE-1999-0994 (Windows NT with SYSKEY reuses the keystream that is used for ...)
	TODO: check
CVE-1999-0992 (HP VirtualVault with the PHSS_17692 patch allows unprivileged ...)
	TODO: check
CVE-1999-0991 (Buffer overflow in GoodTech Telnet Server NT allows remote users to ...)
	TODO: check
CVE-1999-0989 (Buffer overflow in Internet Explorer 5 directshow filter (MSDXM.OCX) ...)
	TODO: check
CVE-1999-0987 (Windows NT does not properly download a system policy if the domain ...)
	TODO: check
CVE-1999-0986 (The ping command in Linux 2.0.3x allows local users to cause a denial ...)
	TODO: check
CVE-1999-0982 (The Sun Web-Based Enterprise Management (WBEM) installation script ...)
	TODO: check
CVE-1999-0981 (Internet Explorer 5.01 and earlier allows a remote attacker to create ...)
	TODO: check
CVE-1999-0980 (Windows NT Service Control Manager (SCM) allows remote attackers to ...)
	TODO: check
CVE-1999-0979 (The SCO UnixWare privileged process system allows local users to gain ...)
	TODO: check
CVE-1999-0978 (htdig allows remote attackers to execute commands via filenames with ...)
	TODO: check
CVE-1999-0977 (Buffer overflow in Solaris sadmind allows remote attackers to gain ...)
	TODO: check
CVE-1999-0976 (Sendmail allows local users to reinitialize the aliases database via ...)
	TODO: check
CVE-1999-0975 (The Windows help system can allow a local user to execute commands as ...)
	TODO: check
CVE-1999-0974 (Buffer overflow in Solaris snoop allows remote attackers to gain root ...)
	TODO: check
CVE-1999-0973 (Buffer overflow in Solaris snoop program allows remote attackers to ...)
	TODO: check
CVE-1999-0972 (Buffer overflow in Xshipwars xsw program. ...)
	TODO: check
CVE-1999-0971 (Buffer overflow in Exim allows local users to gain root privileges via ...)
	TODO: check
CVE-1999-0969 (The Windows NT RPC service allows remote attackers to conduct a denial ...)
	TODO: check
CVE-1999-0968 (Buffer overflow in BNC IRC proxy allows remote attackers to gain ...)
	TODO: check
CVE-1999-0967 (Buffer overflow in the HTML library used by Internet Explorer, Outlook ...)
	TODO: check
CVE-1999-0966 (Buffer overflow in Solaris getopt in libc allows local users to gain ...)
	TODO: check
CVE-1999-0965 (Race condition in xterm allows local users to modify arbitrary files ...)
	TODO: check
CVE-1999-0964 (Buffer overflow in FreeBSD setlocale in the libc module. ...)
	TODO: check
CVE-1999-0963 (FreeBSD mount_union command allows local users to gain root privileges ...)
	TODO: check
CVE-1999-0962 (Buffer overflow in HPUX passwd command allows local users to gain root ...)
	TODO: check
CVE-1999-0961 (HPUX sysdiag allows local users to gain root privileges via a symlink ...)
	TODO: check
CVE-1999-0960 (IRIX cdplayer allows local users to create directories in arbitrary ...)
	TODO: check
CVE-1999-0959 (IRIX startmidi program allows local users to modify arbitrary files ...)
	TODO: check
CVE-1999-0958 (sudo 1.5.x allows local users to execute arbitrary commands via a ...)
	TODO: check
CVE-1999-0957 (MajorCool mj_key_cache program allows local users to modify files via ...)
	TODO: check
CVE-1999-0956 (The NeXT NetInfo _writers property allows local users to gain root ...)
	TODO: check
CVE-1999-0955 (Race condition in wu-ftpd and BSDI ftpd allows remote attackers gain ...)
	TODO: check
CVE-1999-0954 (WWWBoard has a default username and default password. ...)
	TODO: check
CVE-1999-0953 (WWWBoard stores encrypted passwords in a password file that is ...)
	TODO: check
CVE-1999-0951 (Buffer overflow in OmniHTTPd CGI program imagemap.cgi allows remote ...)
	TODO: check
CVE-1999-0950 (Buffer overflow in WFTPD FTP server allows remote attackers to gain ...)
	TODO: check
CVE-1999-0947 (AN-HTTPd provides example CGI scripts test.bat, input.bat, input2.bat, ...)
	TODO: check
CVE-1999-0946 (Buffer overflow in Yamaha MidiPlug via a Text variable in an EMBED ...)
	TODO: check
CVE-1999-0945 (Buffer overflow in Internet Mail Service (IMS) for Microsoft Exchange ...)
	TODO: check
CVE-1999-0943 (Buffer overflow in OpenLink 3.2 allows remote attackers to gain ...)
	TODO: check
CVE-1999-0942 (UnixWare dos7utils allows a local user to gain root privileges by ...)
	TODO: check
CVE-1999-0940 (Buffer overflow in mutt mail client allows remote attackers to execute ...)
	TODO: check
CVE-1999-0939 (Denial of service in Debian IRC Epic/epic4 client via a long string. ...)
	TODO: check
CVE-1999-0938 (MBone SDR Package allows remote attackers to execute commands via ...)
	TODO: check
CVE-1999-0937 (BNBForm allows remote attackers to read arbitrary files via the ...)
	TODO: check
CVE-1999-0936 (BNBSurvey survey.cgi program allows remote attackers to execute ...)
	TODO: check
CVE-1999-0935 (classifieds.cgi allows remote attackers to execute arbitrary commands ...)
	TODO: check
CVE-1999-0934 (classifieds.cgi allows remote attackers to read arbitrary files via ...)
	TODO: check
CVE-1999-0933 (TeamTrack web server allows remote attackers to read arbitrary files ...)
	TODO: check
CVE-1999-0932 (Mediahouse Statistics Server allows remote attackers to read the ...)
	TODO: check
CVE-1999-0931 (Buffer overflow in Mediahouse Statistics Server allows remote ...)
	TODO: check
CVE-1999-0930 (wwwboard allows a remote attacker to delete message board articles via ...)
	TODO: check
CVE-1999-0928 (Buffer overflow in SmartDesk WebSuite allows remote attackers to cause ...)
	TODO: check
CVE-1999-0927 (NTMail allows remote attackers to read arbitrary files via a .. (dot ...)
	TODO: check
CVE-1999-0924 (The Syntax Checker in ColdFusion Server 4.0 allows remote attackers to ...)
	TODO: check
CVE-1999-0922 (An example application in ColdFusion Server 4.0 allows remote ...)
	TODO: check
CVE-1999-0921 (BMC Patrol allows any remote attacker to flood its UDP port, causing a ...)
	TODO: check
CVE-1999-0920 (Buffer overflow in the pop-2d POP daemon in the IMAP package allows ...)
	TODO: check
CVE-1999-0918 (Denial of service in various Windows systems via malformed, fragmented ...)
	TODO: check
CVE-1999-0917 (The Preloader ActiveX control used by Internet Explorer allows remote ...)
	TODO: check
CVE-1999-0916 (WebTrends software stores account names and passwords in a file which ...)
	TODO: check
CVE-1999-0915 (URL Live! web server allows remote attackers to read arbitrary files ...)
	TODO: check
CVE-1999-0914 (Buffer overflow in the FTP client in the Debian GNU/Linux netstd ...)
	TODO: check
CVE-1999-0912 (FreeBSD VFS cache (vfs_cache) allows local users to cause a denial of ...)
	TODO: check
CVE-1999-0909 (Multihomed Windows systems allow a remote attacker to bypass IP ...)
	TODO: check
CVE-1999-0908 (Denial of service in Solaris TCP streams driver via a malicious ...)
	TODO: check
CVE-1999-0907 (sccw allows local users to read arbitrary files. ...)
	TODO: check
CVE-1999-0906 (Buffer overflow in sccw allows local users to gain root access via the ...)
	TODO: check
CVE-1999-0905 (Denial of service in Axent Raptor firewall via malformed zero-length ...)
	TODO: check
CVE-1999-0904 (Buffer overflow in BFTelnet allows remote attackers to cause a denial ...)
	TODO: check
CVE-1999-0903 (genfilt in the AIX Packet Filtering Module does not properly filter ...)
	TODO: check
CVE-1999-0902 (ypserv allows local administrators to modify password tables. ...)
	TODO: check
CVE-1999-0901 (ypserv allows a local user to modify the GECOS and login shells ...)
	TODO: check
CVE-1999-0900 (Buffer overflow in rpc.yppasswdd allows a local user to gain ...)
	TODO: check
CVE-1999-0899 (The Windows NT 4.0 print spooler allows a local user to execute ...)
	TODO: check
CVE-1999-0898 (Buffer overflows in Windows NT 4.0 print spooler allow remote ...)
	TODO: check
CVE-1999-0897 (iChat ROOMS Webserver allows remote attackers to read arbitrary files ...)
	TODO: check
CVE-1999-0896 (Buffer overflow in RealNetworks RealServer administration utility ...)
	TODO: check
CVE-1999-0895 (Firewall-1 does not properly restrict access to LDAP attributes. ...)
	TODO: check
CVE-1999-0894 (Red Hat Linux screen program does not use Unix98 ptys, allowing ...)
	TODO: check
CVE-1999-0893 (userOsa in SCO OpenServer allows local users to corrupt files via a ...)
	TODO: check
CVE-1999-0892 (Buffer overflow in Netscape Communicator before 4.7 via a dynamic font ...)
	TODO: check
CVE-1999-0891 (The &quot;download behavior&quot; in Internet Explorer 5 allows remote attackers ...)
	TODO: check
CVE-1999-0890 (iHTML Merchant allows remote attackers to obtain sensitive information ...)
	TODO: check
CVE-1999-0889 (Cisco 675 routers running CBOS allow remote attackers to establish ...)
	TODO: check
CVE-1999-0888 (dbsnmp in Oracle Intelligent Agent allows local users to gain ...)
	TODO: check
CVE-1999-0887 (FTGate web interface server allows remote attackers to read files via ...)
	TODO: check
CVE-1999-0886 (The security descriptor for RASMAN allows users to point to an ...)
	TODO: check
CVE-1999-0884 (The Zeus web server administrative interface uses weak encryption for ...)
	TODO: check
CVE-1999-0883 (Zeus web server allows remote attackers to read arbitrary files by ...)
	TODO: check
CVE-1999-0881 (Falcon web server allows remote attackers to read arbitrary files via ...)
	TODO: check
CVE-1999-0880 (Denial of service in WU-FTPD via the SITE NEWER command, which does ...)
	TODO: check
CVE-1999-0879 (Buffer overflow in WU-FTPD and related FTP servers allows remote ...)
	TODO: check
CVE-1999-0878 (Buffer overflow in WU-FTPD and related FTP servers allows remote ...)
	TODO: check
CVE-1999-0877 (Internet Explorer 5 allows remote attackers to read files via an ...)
	TODO: check
CVE-1999-0876 (Buffer overflow in Internet Explorer 4.0 via EMBED tag. ...)
	TODO: check
CVE-1999-0875 (DHCP clients with ICMP Router Discovery Protocol (IRDP) enabled allow ...)
	TODO: check
CVE-1999-0874 (Buffer overflow in IIS 4.0 allows remote attackers to cause a denial ...)
	TODO: check
CVE-1999-0873 (Buffer overflow in Skyfull mail server via MAIL FROM command. ...)
	TODO: check
CVE-1999-0871 (Internet Explorer 4.0 and 4.01 allow a remote attacker to read files ...)
	TODO: check
CVE-1999-0870 (Internet Explorer 4.01 allows remote attackers to read arbitrary files ...)
	TODO: check
CVE-1999-0869 (Internet Explorer 3.x to 4.01 allows a remote attacker to insert ...)
	TODO: check
CVE-1999-0868 (ucbmail allows remote attackers to execute commands via shell ...)
	TODO: check
CVE-1999-0867 (Denial of service in IIS 4.0 via a flood of HTTP requests with ...)
	TODO: check
CVE-1999-0866 (Buffer overflow in UnixWare xauto program allows local users to gain ...)
	TODO: check
CVE-1999-0865 (Buffer overflow in CommuniGatePro via a long string to the HTTP ...)
	TODO: check
CVE-1999-0864 (UnixWare programs that dump core allow a local user to ...)
	TODO: check
CVE-1999-0861 (Race condition in the SSL ISAPI filter in IIS and other servers may ...)
	TODO: check
CVE-1999-0859 (Solaris arp allows local users to read files via the -f parameter, ...)
	TODO: check
CVE-1999-0858 (Internet Explorer 5 allows a remote attacker to modify the IE client's ...)
	TODO: check
CVE-1999-0856 (login in Slackware 7.0 allows remote attackers to identify valid users ...)
	TODO: check
CVE-1999-0854 (Ultimate Bulletin Board stores data files in the cgi-bin directory, ...)
	TODO: check
CVE-1999-0853 (Buffer overflow in Netscape Enterprise Server and Netscape ...)
	TODO: check
CVE-1999-0851 (Denial of service in BIND named via naptr. ...)
	TODO: check
CVE-1999-0849 (Denial of service in BIND named via maxdname. ...)
	TODO: check
CVE-1999-0848 (Denial of service in BIND named via consuming more than &quot;fdmax&quot; file ...)
	TODO: check
CVE-1999-0847 (Buffer overflow in free internet chess server (FICS) program, xboard. ...)
	TODO: check
CVE-1999-0842 (Symantec Mail-Gear 1.0 web interface server allows remote users to ...)
	TODO: check
CVE-1999-0839 (Windows NT Task Scheduler installed with Internet Explorer 5 allows a ...)
	TODO: check
CVE-1999-0838 (Buffer overflow in Serv-U FTP 2.5 allows remote users to conduct a ...)
	TODO: check
CVE-1999-0837 (Denial of service in BIND by improperly closing TCP sessions via ...)
	TODO: check
CVE-1999-0836 (UnixWare uidadmin allows local users to modify arbitrary files via ...)
	TODO: check
CVE-1999-0835 (Denial of service in BIND named via malformed SIG records. ...)
	TODO: check
CVE-1999-0834 (Buffer overflow in RSAREF2 via the encryption and decryption functions ...)
	TODO: check
CVE-1999-0833 (Buffer overflow in BIND 8.2 via NXT records. ...)
	TODO: check
CVE-1999-0832 (Buffer overflow in NFS server on Linux allows attackers to execute ...)
	TODO: check
CVE-1999-0831 (Denial of service in Linux syslogd via a large number of connections. ...)
	TODO: check
CVE-1999-0826 (Buffer overflow in FreeBSD angband allows local users to gain ...)
	TODO: check
CVE-1999-0824 (A Windows NT user can use SUBST to map a drive letter to a folder, ...)
	TODO: check
CVE-1999-0823 (Buffer overflow in FreeBSD xmindpath allows local users to gain ...)
	TODO: check
CVE-1999-0820 (FreeBSD seyon allows users to gain privileges via a modified PATH ...)
	TODO: check
CVE-1999-0819 (NTMail does not disable the VRFY command, even if the administrator ...)
	TODO: check
CVE-1999-0817 (Lynx WWW client allows a remote attacker to specify command-line ...)
	TODO: check
CVE-1999-0815 (Memory leak in SNMP agent in Windows NT 4.0 before SP5 allows remote ...)
	TODO: check
CVE-1999-0814 (Red Hat pump DHCP client allows remote attackers to gain root access ...)
	TODO: check
CVE-1999-0813 (Cfingerd with ALLOW_EXECUTION enabled does not properly drop ...)
	TODO: check
CVE-1999-0812 (Race condition in Samba smbmnt allows local users to mount file ...)
	TODO: check
CVE-1999-0811 (Buffer overflow in Samba smbd program via a malformed message ...)
	TODO: check
CVE-1999-0810 (Denial of service in Samba NETBIOS name service daemon (nmbd). ...)
	TODO: check
CVE-1999-0809 (Netscape Communicator 4.x with Javascript enabled does not warn a user ...)
	TODO: check
CVE-1999-0807 (The Netscape Directory Server installation procedure leaves sensitive ...)
	TODO: check
CVE-1999-0806 (Buffer overflow in Solaris dtprintinfo program. ...)
	TODO: check
CVE-1999-0804 (Denial of service in Linux 2.2.x kernels via malformed ICMP packets ...)
	TODO: check
CVE-1999-0803 (The fwluser script in AIX eNetwork Firewall allows local users to ...)
	TODO: check
CVE-1999-0802 (Buffer overflow in Internet Explorer 5 allows remote attackers to ...)
	TODO: check
CVE-1999-0801 (BMC Patrol allows remote attackers to gain access to an agent by ...)
	TODO: check
CVE-1999-0800 (The GetFile.cfm file in Allaire Forums allows remote attackers to read ...)
	TODO: check
CVE-1999-0799 (Buffer overflow in bootpd 2.4.3 and earlier via a long boot file ...)
	TODO: check
CVE-1999-0797 (NIS finger allows an attacker to conduct a denial of service via a ...)
	TODO: check
CVE-1999-0796 (FreeBSD T/TCP Extensions for Transactions can be subjected to spoofing ...)
	TODO: check
CVE-1999-0794 (Microsoft Excel does not warn a user when a macro is present in a ...)
	TODO: check
CVE-1999-0793 (Internet Explorer allows remote attackers to read files by redirecting ...)
	TODO: check
CVE-1999-0791 (Hybrid Network cable modems do not include an authentication mechanism ...)
	TODO: check
CVE-1999-0790 (A remote attacker can read information from a Netscape user's cache ...)
	TODO: check
CVE-1999-0789 (Buffer overflow in AIX ftpd in the libc library. ...)
	TODO: check
CVE-1999-0788 (Arkiea nlservd allows remote attackers to conduct a denial of service. ...)
	TODO: check
CVE-1999-0787 (The SSH authentication agent follows symlinks via a UNIX domain ...)
	TODO: check
CVE-1999-0786 (The dynamic linker in Solaris allows a local user to create arbitrary ...)
	TODO: check
CVE-1999-0785 (The INN inndstart program allows local users to gain root privileges ...)
	TODO: check
CVE-1999-0783 (FreeBSD allows local users to conduct a denial of service by creating ...)
	TODO: check
CVE-1999-0782 (KDE kppp allows local users to create a directory in an arbitrary ...)
	TODO: check
CVE-1999-0781 (KDE allows local users to execute arbitrary commands by setting the ...)
	TODO: check
CVE-1999-0780 (KDE klock allows local users to kill arbitrary processes by specifying ...)
	TODO: check
CVE-1999-0779 (Denial of service in HP-UX SharedX recserv program. ...)
	TODO: check
CVE-1999-0778 (Buffer overflow in Xi Graphics Accelerated-X server allows local ...)
	TODO: check
CVE-1999-0777 (IIS FTP servers may allow a remote attacker to read or delete files on ...)
	TODO: check
CVE-1999-0775 (Cisco Gigabit Switch routers running IOS allow remote attackers to ...)
	TODO: check
CVE-1999-0774 (Buffer overflows in Mars NetWare Emulation (NWE, mars_nwe) package via ...)
	TODO: check
CVE-1999-0773 (Buffer overflow in Solaris lpset program allows local users to gain ...)
	TODO: check
CVE-1999-0772 (Denial of service in Compaq Management Agents and the Compaq Survey ...)
	TODO: check
CVE-1999-0771 (The web components of Compaq Management Agents and the Compaq Survey ...)
	TODO: check
CVE-1999-0770 (Firewall-1 sets a long timeout for connections that begin with ACK or ...)
	TODO: check
CVE-1999-0769 (Vixie Cron on Linux systems allows local users to set parameters of ...)
	TODO: check
CVE-1999-0768 (Buffer overflow in Vixie Cron on Red Hat systems via the MAILTO ...)
	TODO: check
CVE-1999-0766 (The Microsoft Java Virtual Machine allows a malicious Java applet to ...)
	TODO: check
CVE-1999-0765 (SGI IRIX midikeys program allows local users to modify arbitrary files ...)
	TODO: check
CVE-1999-0764 (NetBSD allows ARP packets to overwrite static ARP entries. ...)
	TODO: check
CVE-1999-0763 (NetBSD on a multi-homed host allows ARP packets on one network to ...)
	TODO: check
CVE-1999-0762 (When Javascript is embedded within the TITLE tag, Netscape ...)
	TODO: check
CVE-1999-0761 (Buffer overflow in FreeBSD fts library routines allows local user to ...)
	TODO: check
CVE-1999-0760 (Undocumented ColdFusion Markup Language (CFML) tags and functions in ...)
	TODO: check
CVE-1999-0759 (Buffer overflow in FuseMAIL POP service via long USER and PASS ...)
	TODO: check
CVE-1999-0758 (Netscape Enterprise 3.5.1 and FastTrack 3.01 servers allow a remote ...)
	TODO: check
CVE-1999-0756 (ColdFusion Administrator with Advanced Security enabled allows remote ...)
	TODO: check
CVE-1999-0755 (Windows NT RRAS and RAS clients cache a user's password even if the ...)
	TODO: check
CVE-1999-0754 (The INN inndstart program allows local users to gain privileges by ...)
	TODO: check
CVE-1999-0753 (The w3-msql CGI script provided with Mini SQL allows remote attackers ...)
	TODO: check
CVE-1999-0752 (Denial of service in Netscape Enterprise Server via a buffer overflow ...)
	TODO: check
CVE-1999-0751 (Buffer overflow in Accept command in Netscape Enterprise Server 3.6 ...)
	TODO: check
CVE-1999-0749 (Buffer overflow in Microsoft Telnet client in Windows 95 and Windows ...)
	TODO: check
CVE-1999-0747 (Denial of service in BSDi Symmetric Multiprocessing (SMP) when an ...)
	TODO: check
CVE-1999-0746 (A default configuration of in.identd in SuSE Linux waits 120 seconds ...)
	TODO: check
CVE-1999-0745 (Buffer overflow in Source Code Browser Program Database Name Server ...)
	TODO: check
CVE-1999-0744 (Buffer overflow in Netscape Enterprise Server and FastTrask Server ...)
	TODO: check
CVE-1999-0743 (Trn allows local users to overwrite other users' files via symlinks. ...)
	TODO: check
CVE-1999-0742 (The Debian mailman package uses weak authentication, which allows ...)
	TODO: check
CVE-1999-0740 (Remote attackers can cause a denial of service on Linux in.telnetd ...)
	TODO: check
CVE-1999-0735 (KDE K-Mail allows local users to gain privileges via a symlink attack ...)
	TODO: check
CVE-1999-0734 (A default configuration of CiscoSecure Access Control Server (ACS) ...)
	TODO: check
CVE-1999-0733 (Buffer overflow in VMWare 1.0.1 for Linux via a long HOME ...)
	TODO: check
CVE-1999-0732 (The logging facilitity of the Debian smtp-refuser package allows local ...)
	TODO: check
CVE-1999-0731 (The KDE klock program allows local users to unlock a session using ...)
	TODO: check
CVE-1999-0730 (The zsoelim program in the Debian man-db package allows local users to ...)
	TODO: check
CVE-1999-0729 (Buffer overflow in Lotus Notes LDAP (NLDAP) allows an attacker to ...)
	TODO: check
CVE-1999-0728 (A Windows NT user can disable the keyboard or mouse by directly ...)
	TODO: check
CVE-1999-0727 (A kernel leak in the OpenBSD kernel allows IPsec packets to be sent ...)
	TODO: check
CVE-1999-0726 (An attacker can conduct a denial of service in Windows NT by executing ...)
	TODO: check
CVE-1999-0725 (When IIS is run with a default language of Chinese, Korean, or ...)
	TODO: check
CVE-1999-0724 (Buffer overflow in OpenBSD procfs and fdescfs file systems via ...)
	TODO: check
CVE-1999-0723 (The Windows NT Client Server Runtime Subsystem (CSRSS) can be ...)
	TODO: check
CVE-1999-0722 (The default configuration of Cobalt RaQ2 servers allows remote ...)
	TODO: check
CVE-1999-0721 (Denial of service in Windows NT Local Security Authority (LSA) through ...)
	TODO: check
CVE-1999-0720 (The pt_chown command in Linux allows local users to modify TTY ...)
	TODO: check
CVE-1999-0719 (The Guile plugin for the Gnumeric spreadsheet package allows attackers ...)
	TODO: check
CVE-1999-0718 (IBM GINA, when used for OS/2 domain authentication of Windows NT ...)
	TODO: check
CVE-1999-0717 (A remote attacker can disable the virus warning mechanism in Microsoft ...)
	TODO: check
CVE-1999-0716 (Buffer overflow in Windows NT 4.0 help file utility via a malformed ...)
	TODO: check
CVE-1999-0715 (Buffer overflow in Remote Access Service (RAS) client allows an ...)
	TODO: check
CVE-1999-0714 (Vulnerability in Compaq Tru64 UNIX edauth command. ...)
	TODO: check
CVE-1999-0713 (The dtlogin program in Compaq Tru64 UNIX allows local users to gain ...)
	TODO: check
CVE-1999-0711 (The oratclsh interpreter in Oracle 8.x Intelligent Agent for Unix ...)
	TODO: check
CVE-1999-0710 (The RedHat squid program installs cachemgr.cgi in a public web ...)
	{DSA-576-1}
	- squid 2.5.7-1
CVE-1999-0708 (Buffer overflow in cfingerd allows local users to gain root privileges ...)
	TODO: check
CVE-1999-0707 (The default FTP configuration in HP Visualize Conference allows ...)
	TODO: check
CVE-1999-0706 (Linux xmonisdn package allows local users to gain root privileges by ...)
	TODO: check
CVE-1999-0705 (Buffer overflow in INN inews program. ...)
	TODO: check
CVE-1999-0704 (Buffer overflow in Berkeley automounter daemon (amd) logging facility ...)
	TODO: check
CVE-1999-0703 (OpenBSD, BSDI, and other Unix operating systems allow users to set ...)
	TODO: check
CVE-1999-0702 (Internet Explorer 5.0 and 5.01 allows remote attackers to modify or ...)
	TODO: check
CVE-1999-0701 (After an unattended installation of Windows NT 4.0, an installation ...)
	TODO: check
CVE-1999-0700 (Buffer overflow in Microsoft Phone Dialer (dialer.exe), via a malformed ...)
	TODO: check
CVE-1999-0699 (The Bluestone Sapphire web server allows session hijacking via easily ...)
	TODO: check
CVE-1999-0697 (SCO Doctor allows local users to gain root privileges through a Tools ...)
	TODO: check
CVE-1999-0696 (Buffer overflow in CDE Calendar Manager Service Daemon (rpc.cmsd) ...)
	TODO: check
CVE-1999-0695 (The Sybase PowerDynamo personal web server allows attackers to ...)
	TODO: check
CVE-1999-0694 (Denial of service in AIX ptrace system call allows local users to ...)
	TODO: check
CVE-1999-0693 (Buffer overflow in TT_SESSION environment variable in ToolTalk shared ...)
	TODO: check
CVE-1999-0692 (The default configuration of the Array Services daemon (arrayd) ...)
	TODO: check
CVE-1999-0691 (Buffer overflow in the AddSuLog function of the CDE dtaction utility ...)
	TODO: check
CVE-1999-0690 (HP CDE program includes the current directory in root's PATH variable. ...)
	TODO: check
CVE-1999-0689 (The CDE dtspcd daemon allows local users to execute arbitrary commands ...)
	TODO: check
CVE-1999-0688 (Buffer overflows in HP Software Distributor (SD) for HPUX 10.x and 11.x. ...)
	TODO: check
CVE-1999-0687 (The ToolTalk ttsession daemon uses weak RPC authentication, which ...)
	TODO: check
CVE-1999-0686 (Denial of service in Netscape Enterprise Server (NES) in HP Virtual ...)
	TODO: check
CVE-1999-0685 (Buffer overflow in Netscape Communicator via EMBED tags in the ...)
	TODO: check
CVE-1999-0683 (Denial of service in Gauntlet Firewall via a malformed ICMP packet. ...)
	TODO: check
CVE-1999-0682 (Microsoft Exchange 5.5 allows a remote attacker to relay email ...)
	TODO: check
CVE-1999-0681 (Buffer overflow in Microsoft FrontPage Server Extensions (PWS) ...)
	TODO: check
CVE-1999-0680 (Windows NT Terminal Server performs extra work when a client opens a ...)
	TODO: check
CVE-1999-0679 (Buffer overflow in hybrid-6 IRC server commonly used on EFnet allows ...)
	TODO: check
CVE-1999-0678 (A default configuration of Apache on Debian Linux sets the ServerRoot ...)
	TODO: check
CVE-1999-0676 (sdtcm_convert in Solaris 2.6 allows a local user to overwrite ...)
	TODO: check
CVE-1999-0675 (Check Point FireWall-1 can be subjected to a denial of service via UDP ...)
	TODO: check
CVE-1999-0674 (The BSD profil system call allows a local user to modify the internal ...)
	TODO: check
CVE-1999-0672 (Buffer overflow in Fujitsu Chocoa IRC client via IRC channel topics. ...)
	TODO: check
CVE-1999-0671 (Buffer overflow in ToxSoft NextFTP client through CWD command. ...)
	TODO: check
CVE-1999-0668 (The scriptlet.typelib ActiveX control is marked as &quot;safe for ...)
	TODO: check
CVE-1999-0628 (The rwho/rwhod service is running, which exposes machine status ...)
	TODO: check
CVE-1999-0627 (The rexd service is running, which uses weak authentication that can ...)
	TODO: check
CVE-1999-0626 (A version of rusers is running that exposes valid user information ...)
	TODO: check
CVE-1999-0612 (A version of finger is running that exposes valid user information ...)
	TODO: check
CVE-1999-0608 (An incorrect configuration of the PDG Shopping Cart CGI program ...)
	TODO: check
CVE-1999-0566 (An attacker can write to syslog files from any location, causing a ...)
	TODO: check
CVE-1999-0551 (HP OpenMail can be misconfigured to allow users to run arbitrary ...)
	TODO: check
CVE-1999-0526 (An X server's access control is disabled (e.g. through an &quot;xhost +&quot; ...)
	TODO: check
CVE-1999-0514 (UDP messages to broadcast addresses are allowed, allowing for a ...)
	TODO: check
CVE-1999-0513 (ICMP messages to broadcast addresses are allowed, allowing for a ...)
	TODO: check
CVE-1999-0496 (A Windows NT 4.0 user can gain administrative rights by forcing ...)
	TODO: check
CVE-1999-0494 (Denial of service in WinGate proxy through a buffer overflow in ...)
	TODO: check
CVE-1999-0493 (rpc.statd allows remote attackers to forward RPC calls to the local ...)
	TODO: check
CVE-1999-0491 (The prompt parsing in bash allows a local user to execute commands as ...)
	TODO: check
CVE-1999-0487 (The DHTML Edit ActiveX control in Internet Explorer allows remote ...)
	TODO: check
CVE-1999-0485 (Remote attackers can cause a system crash through ipintr() in ipq in ...)
	TODO: check
CVE-1999-0484 (Buffer overflow in OpenBSD ping. ...)
	TODO: check
CVE-1999-0483 (OpenBSD crash using nlink value in FFS and EXT2FS filesystems. ...)
	TODO: check
CVE-1999-0482 (OpenBSD kernel crash through TSS handling, as caused by the crashme ...)
	TODO: check
CVE-1999-0481 (Denial of service in &quot;poll&quot; in OpenBSD. ...)
	TODO: check
CVE-1999-0479 (Denial of service Netscape Enterprise Server with VirtualVault on ...)
	TODO: check
CVE-1999-0478 (Denial of service in HP-UX sendmail 8.8.6 related to accepting ...)
	TODO: check
CVE-1999-0475 (A race condition in how procmail handles .procmailrc files allows ...)
	TODO: check
CVE-1999-0474 (The ICQ Webserver allows remote attackers to use .. to access ...)
	TODO: check
CVE-1999-0473 (The rsync command before rsync 2.3.1 may inadvertently change the ...)
	TODO: check
CVE-1999-0472 (The SNMP default community name &quot;public&quot; is not properly removed in ...)
	TODO: check
CVE-1999-0471 (The remote proxy server in Winroute allows a remote attacker to ...)
	TODO: check
CVE-1999-0470 (A weak encryption algorithm is used for passwords in Novell ...)
	TODO: check
CVE-1999-0468 (Internet Explorer 5.0 allows a remote server to read arbitrary files ...)
	TODO: check
CVE-1999-0466 (The SVR4 /dev/wabi special device file in NetBSD 1.3.3 and earlier ...)
	TODO: check
CVE-1999-0464 (Local users can perform a denial of service in Tripwire 1.2 and ...)
	TODO: check
CVE-1999-0463 (Remote attackers can perform a denial of service using IRIX fcagent. ...)
	TODO: check
CVE-1999-0458 (L0phtcrack 2.5 used temporary files in the system TEMP directory which ...)
	TODO: check
CVE-1999-0457 (Linux ftpwatch program allows local users to gain root privileges. ...)
	TODO: check
CVE-1999-0449 (Denial of service in IIS 4 with scripts from the ExAir sample site. ...)
	TODO: check
CVE-1999-0448 (IIS 4.0 and Apache log HTTP request methods, regardless of how long ...)
	TODO: check
CVE-1999-0447 (Local users can gain privileges using the debug utility in the MPE/iX ...)
	TODO: check
CVE-1999-0446 (Local users can perform a denial of service in NetBSD 1.3.3 and ...)
	TODO: check
CVE-1999-0445 (In Cisco routers under some versions of IOS 12.0 running NAT, some ...)
	TODO: check
CVE-1999-0442 (Solaris ff.core allows local users to modify files. ...)
	TODO: check
CVE-1999-0441 (Remote attackers can perform a denial of service in WinGate machines ...)
	TODO: check
CVE-1999-0440 (The byte code verifier component of the Java Virtual Machine (JVM) ...)
	TODO: check
CVE-1999-0439 (Buffer overflow in procmail before version 3.12 allows remote or local ...)
	TODO: check
CVE-1999-0438 (Remote attackers can perform a denial of service in WebRamp systems by ...)
	TODO: check
CVE-1999-0437 (Remote attackers can perform a denial of service in WebRamp systems by ...)
	TODO: check
CVE-1999-0436 (Domain Enterprise Server Management System (DESMS) in HP-UX allows ...)
	TODO: check
CVE-1999-0433 (XFree86 startx command is vulnerable to a symlink attack, allowing local ...)
	TODO: check
CVE-1999-0432 (ftp on HP-UX 11.00 allows local users to gain privileges. ...)
	TODO: check
CVE-1999-0430 (Cisco Catalyst LAN switches running Catalyst 5000 supervisor software ...)
	TODO: check
CVE-1999-0429 (The Lotus Notes 4.5 client may send a copy of encrypted mail in the ...)
	TODO: check
CVE-1999-0428 (OpenSSL and SSLeay allow remote attackers to reuse SSL sessions and ...)
	TODO: check
CVE-1999-0425 (talkback in Netscape 4.5 allows a local user to kill an arbitrary ...)
	TODO: check
CVE-1999-0424 (talkback in Netscape 4.5 allows a local user to overwrite ...)
	TODO: check
CVE-1999-0423 (Vulnerability in hpterm on HP-UX 10.20 allows local users to gain ...)
	TODO: check
CVE-1999-0422 (In some cases, NetBSD 1.3.3 mount allows local users to execute ...)
	TODO: check
CVE-1999-0421 (During a reboot after an installation of Linux Slackware 3.6, a remote ...)
	TODO: check
CVE-1999-0420 (umapfs allows local users to gain root privileges by changing their ...)
	TODO: check
CVE-1999-0417 (64 bit Solaris 7 procfs allows local users to perform a denial of ...)
	TODO: check
CVE-1999-0416 (Vulnerability in Cisco 7xx series routers allows a remote attacker to ...)
	TODO: check
CVE-1999-0415 (The HTTP server in Cisco 7xx series routers 3.2 through 4.2 is enabled ...)
	TODO: check
CVE-1999-0414 (In Linux before version 2.0.36, remote attackers can spoof a TCP ...)
	TODO: check
CVE-1999-0413 (A buffer overflow in the SGI X server allows local users to gain root ...)
	TODO: check
CVE-1999-0412 (In IIS and other web servers, an attacker can attack commands as ...)
	TODO: check
CVE-1999-0410 (The cancel command in Solaris 2.6 (i386) has a buffer overflow that ...)
	TODO: check
CVE-1999-0409 (Buffer overflow in gnuplot in Linux version 3.5 allows local users to ...)
	TODO: check
CVE-1999-0408 (Files created from interactive shell sessions in Cobalt RaQ ...)
	TODO: check
CVE-1999-0407 (By default, IIS 4.0 has a virtual directory /IISADMPWD which contains ...)
	TODO: check
CVE-1999-0405 (A buffer overflow in lsof allows local users to obtain root ...)
	TODO: check
CVE-1999-0404 (Buffer overflow in the Mail-Max SMTP server for Windows systems allows ...)
	TODO: check
CVE-1999-0403 (A bug in Cyrix CPUs on Linux allows local users to perform a denial ...)
	TODO: check
CVE-1999-0402 (wget 1.5.3 follows symlinks to change permissions of the target file ...)
	TODO: check
CVE-1999-0396 (A race condition between the select() and accept() calls in NetBSD TCP ...)
	TODO: check
CVE-1999-0395 (A race condition in the BackWeb Polite Agent Protocol allows an ...)
	TODO: check
CVE-1999-0393 (Remote attackers can cause a denial of service in Sendmail 8.8.x and ...)
	TODO: check
CVE-1999-0392 (Buffer overflow in Thomas Boutell's cgic library version up to 1.05. ...)
	TODO: check
CVE-1999-0391 (The cryptographic challenge of SMB authentication in Windows 95 and ...)
	TODO: check
CVE-1999-0390 (Buffer overflow in Dosemu Slang library in Linux. ...)
	TODO: check
CVE-1999-0388 (DataLynx suGuard trusts the PATH environment variable to execute the ...)
	TODO: check
CVE-1999-0387 (A legacy credential caching mechanism used in Windows 95 and Windows ...)
	TODO: check
CVE-1999-0386 (Microsoft Personal Web Server and FrontPage Personal Web Server in ...)
	TODO: check
CVE-1999-0385 (The LDAP bind function in Exchange 5.5 has a buffer overflow that ...)
	TODO: check
CVE-1999-0384 (The Forms 2.0 ActiveX control (included with Visual Basic for ...)
	TODO: check
CVE-1999-0383 (ACC Tigris allows public access without a login. ...)
	TODO: check
CVE-1999-0382 (The screen saver in Windows NT does not verify that its security ...)
	TODO: check
CVE-1999-0380 (SLMail 3.1 and 3.2 allows local users to access any file in the NTFS ...)
	TODO: check
CVE-1999-0379 (Microsoft Taskpads feature allows remote web sites to execute commands ...)
	TODO: check
CVE-1999-0378 (InterScan VirusWall for Solaris doesn't scan files for viruses when ...)
	TODO: check
CVE-1999-0377 (Process table attack in Unix systems allows a remote attacker to ...)
	TODO: check
CVE-1999-0376 (Local users in Windows NT can obtain administrator privileges by ...)
	TODO: check
CVE-1999-0375 (Buffer overflow in webd in Network Flight Recorder (NFR) ...)
	TODO: check
CVE-1999-0374 (Debian Linux cfengine package is susceptible to a symlink attack. ...)
	TODO: check
CVE-1999-0373 (Buffer overflow in the &quot;Super&quot; utility in Debian Linux and other ...)
	TODO: check
CVE-1999-0372 (The installer for BackOffice Server includes account names and ...)
	TODO: check
CVE-1999-0371 (Lynx allows a local user to overwrite sensitive files through /tmp ...)
	TODO: check
CVE-1999-0369 (The Sun sdtcm_convert calendar utility for OpenWindows has a buffer ...)
	TODO: check
CVE-1999-0368 (Buffer overflows in wuarchive ftpd (wu-ftpd) and ProFTPD lead to ...)
	TODO: check
CVE-1999-0367 (NetBSD netstat command allows local users to access kernel memory. ...)
	TODO: check
CVE-1999-0366 (In some cases, Service Pack 4 for Windows NT 4.0 can allow access to ...)
	TODO: check
CVE-1999-0365 (The metamail package allows remote command execution using shell ...)
	TODO: check
CVE-1999-0363 (SuSE 5.2 PLP lpc program has a buffer overflow that leads to root ...)
	TODO: check
CVE-1999-0362 (WS_FTP server remote denial of service through cwd command. ...)
	TODO: check
CVE-1999-0358 (Digital Unix 4.0 has a buffer overflow in the inc program of the mh ...)
	TODO: check
CVE-1999-0357 (Denial of service in Windows systems using malformed oshare packets. ...)
	TODO: check
CVE-1999-0355 (Local or remote users can force ControlIT 4.5 to reboot or force a ...)
	TODO: check
CVE-1999-0353 (rpc.pcnfsd in HP gives remote root access by changing the permissions ...)
	TODO: check
CVE-1999-0351 (FTP PASV &quot;Pizza Thief&quot; denial of service and unauthorized data ...)
	TODO: check
CVE-1999-0350 (Race condition in the db_loader program in ClearCase gives local ...)
	TODO: check
CVE-1999-0349 (A buffer overflow in the FTP list (ls) command in IIS allows remote ...)
	TODO: check
CVE-1999-0348 (IIS ASP caching problem releases sensitive information when two ...)
	TODO: check
CVE-1999-0346 (CGI PHP mlog script allows an attacker to read any file on the target ...)
	TODO: check
CVE-1999-0344 (NT users can gain debug-level access on a system process using the ...)
	TODO: check
CVE-1999-0343 (A malicious Palace server can force a client to execute arbitrary ...)
	TODO: check
CVE-1999-0342 (Linux PAM modules allow local users to gain root access using ...)
	TODO: check
CVE-1999-0341 (Buffer overflow in the Linux mail program &quot;deliver&quot; allows local users ...)
	TODO: check
CVE-1999-0340 (Buffer overflow in Linux Slackware crond program allows local users ...)
	TODO: check
CVE-1999-0339 (Buffer overflow in the libauth library in Solaris allows local users ...)
	TODO: check
CVE-1999-0338 (AIX Licensed Program Product performance tools allow local users to ...)
	TODO: check
CVE-1999-0337 (AIX batch queue (bsh) allows local and remote users to gain additional ...)
	TODO: check
CVE-1999-0335 (Buffer overflow in BSD and linux lpr command allows local users to ...)
	TODO: check
CVE-1999-0334 (In Solaris 2.2 and 2.3, when fsck fails on startup, it allows a local ...)
	TODO: check
CVE-1999-0332 (Buffer overflow in NetMeeting allows denial of service and remote ...)
	TODO: check
CVE-1999-0329 (SGI mediad program allows local users to gain root access. ...)
	TODO: check
CVE-1999-0328 (SGI permissions program allows local users to gain root privileges. ...)
	TODO: check
CVE-1999-0327 (SGI syserr program allows local users to corrupt files. ...)
	TODO: check
CVE-1999-0326 (Vulnerability in HP-UX mediainit program. ...)
	TODO: check
CVE-1999-0325 (vhe_u_mnt program in HP-UX allows local users to create root files through ...)
	TODO: check
CVE-1999-0324 (ppl program in HP-UX allows local users to create root files through ...)
	TODO: check
CVE-1999-0323 (FreeBSD mmap function allows users to modify append-only or immutable ...)
	TODO: check
CVE-1999-0322 (The open() function in FreeBSD allows local attackers to write ...)
	TODO: check
CVE-1999-0321 (Buffer overflow in Solaris kcms_configure command allows local users ...)
	TODO: check
CVE-1999-0320 (SunOS rpc.cmsd allows attackers to obtain root access by overwriting ...)
	TODO: check
CVE-1999-0318 (Buffer overflow in xmcd 2.0p12 allows local users to gain access ...)
	TODO: check
CVE-1999-0316 (Buffer overflow in Linux splitvt command gives root access to local ...)
	TODO: check
CVE-1999-0315 (Buffer overflow in Solaris fdformat command gives root access to local ...)
	TODO: check
CVE-1999-0314 (IRIX ioconfig program allows local users to gain root access ...)
	TODO: check
CVE-1999-0313 (IRIX disk_bandwidth program allows local users to gain root access ...)
	TODO: check
CVE-1999-0312 (HP ypbind allows attackers with root privileges to modify NIS data. ...)
	TODO: check
CVE-1999-0311 (fpkg2swpk in HP-UX allows local users to gain root access. ...)
	TODO: check
CVE-1999-0310 (SSH 1.2.25 on HP-UX allows access to new user accounts. ...)
	TODO: check
CVE-1999-0309 (HP-UX vgdisplay program gives root access to local users. ...)
	TODO: check
CVE-1999-0308 (HP-UX gwind program allows users to modify arbitrary files. ...)
	TODO: check
CVE-1999-0305 (BSD sysctl control does not properly restrict source routing. ...)
	TODO: check
CVE-1999-0304 (mmap function in BSD allows local attackers in the kmem group to ...)
	TODO: check
CVE-1999-0303 (Buffer overflow in BNU UUCP daemon (uucpd) through long hostnames. ...)
	TODO: check
CVE-1999-0302 (SunOS/Solaris FTP clients can be forced to execute arbitrary commands ...)
	TODO: check
CVE-1999-0301 (Buffer overflow in SunOS/Solaris ps command. ...)
	TODO: check
CVE-1999-0300 (nis_cachemgr for Solaris NIS+ allows attackers to add malicious ...)
	TODO: check
CVE-1999-0299 (Buffer overflow in FreeBSD lpd through long DNS hostnames. ...)
	TODO: check
CVE-1999-0297 (Buffer overflow in Vixie Cron library up to version 3.0 allows local ...)
	TODO: check
CVE-1999-0296 (Solaris volrmmount program allows attackers to read any file. ...)
	TODO: check
CVE-1999-0295 (Solaris sysdef command allows local users to read kernel memory, ...)
	TODO: check
CVE-1999-0294 (All records in a WINS database can be deleted through SNMP for ...)
	TODO: check
CVE-1999-0293 (AAA authentication on Cisco systems allows attackers to execute ...)
	TODO: check
CVE-1999-0292 (Denial of service through Winpopup using large user names. ...)
	TODO: check
CVE-1999-0291 (The WinGate proxy is installed without a password, which allows ...)
	TODO: check
CVE-1999-0290 (The WinGate telnet proxy allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-0289 (The Apache web server for Win32 may provide access to restricted ...)
	TODO: check
CVE-1999-0288 (Denial of service in WINS with malformed data to port 137 (NETBIOS ...)
	TODO: check
CVE-1999-0281 (Denial of service in IIS using long URLs. ...)
	TODO: check
CVE-1999-0280 (Remote command execution in Microsoft Internet Explorer using .lnk and ...)
	TODO: check
CVE-1999-0279 (Excite for Web Servers (EWS) allows remote command execution via ...)
	TODO: check
CVE-1999-0278 (In IIS, remote attackers can obtain source code for ASP files by appending ...)
	TODO: check
CVE-1999-0277 (The WorkMan program can be used to overwrite any file to get root access. ...)
	TODO: check
CVE-1999-0276 (mSQL v2.0.1 and below allows remote execution through a buffer overflow. ...)
	TODO: check
CVE-1999-0275 (Denial of service in Windows NT DNS servers by flooding port 53 with ...)
	TODO: check
CVE-1999-0274 (Denial of service in Windows NT DNS servers through malicious packet ...)
	TODO: check
CVE-1999-0273 (Denial of service through Solaris 2.5.1 telnet by sending ^D characters. ...)
	TODO: check
CVE-1999-0272 (Denial of service in Slmail v2.5 through the POP3 port. ...)
	TODO: check
CVE-1999-0270 (pfdispaly CGI program for SGI's Performer API Search Tool allows read ...)
	TODO: check
CVE-1999-0269 (Netscape Enterprise servers may list files through the PageServices query. ...)
	TODO: check
CVE-1999-0268 (MetaInfo MetaWeb web server allows users to upload and execute scripts. ...)
	TODO: check
CVE-1999-0267 (Buffer overflow in NCSA HTTP daemon v1.3 allows remote command execution. ...)
	TODO: check
CVE-1999-0266 (The info2www CGI script allows remote file access or remote ...)
	TODO: check
CVE-1999-0265 (ICMP redirect messages may crash or lock up a host. ...)
	TODO: check
CVE-1999-0264 (htmlscript CGI program allows remote read access to files. ...)
	TODO: check
CVE-1999-0263 (Solaris SUNWadmap can be exploited to obtain root access. ...)
	TODO: check
CVE-1999-0262 (faxsurvey CGI script on Linux allows remote command execution via ...)
	TODO: check
CVE-1999-0260 (The jj CGI program allows command execution via shell metacharacters. ...)
	TODO: check
CVE-1999-0259 (cfingerd lists all users on a system via search.**@target. ...)
	TODO: check
CVE-1999-0256 (Buffer overflow in War FTP allows remote execution of commands. ...)
	TODO: check
CVE-1999-0252 (Buffer overflow in listserv allows arbitrary command execution. ...)
	TODO: check
CVE-1999-0251 (Denial of service in talk program allows remote attackers to ...)
	TODO: check
CVE-1999-0248 (A race condition in the authentication agent mechanism of sshd 1.2.17 ...)
	TODO: check
CVE-1999-0247 (Buffer overflow in nnrpd program in INN up to version 1.6 allows ...)
	TODO: check
CVE-1999-0245 (Some configurations of NIS+ in Linux allowed attackers ...)
	TODO: check
CVE-1999-0244 (Livingston RADIUS code has a buffer overflow which can allow remote ...)
	TODO: check
CVE-1999-0239 (Netscape FastTrack Web server lists files when a lowercase &quot;get&quot; ...)
	TODO: check
CVE-1999-0237 (Remote execution of arbitrary commands through Guestbook CGI program. ...)
	TODO: check
CVE-1999-0236 (ScriptAlias directory in NCSA and Apache httpd allowed attackers to ...)
	TODO: check
CVE-1999-0234 (Bash treats any character with a value of 255 as a command separator. ...)
	TODO: check
CVE-1999-0233 (IIS allows users to execute arbitrary commands using .bat or .cmd ...)
	TODO: check
CVE-1999-0230 (Buffer overflow in Cisco 7xx routers through the telnet service. ...)
	TODO: check
CVE-1999-0228 (Denial of service in RPCSS.EXE program (RPC Locator) in Windows NT. ...)
	TODO: check
CVE-1999-0227 (Access violation in LSASS.EXE (LSA/LSARPC) program in Windows NT ...)
	TODO: check
CVE-1999-0225 (Windows NT 4.0 allows remote attackers to cause a denial of service ...)
	TODO: check
CVE-1999-0224 (Denial of service in Windows NT messenger service through a long ...)
	TODO: check
CVE-1999-0223 (Solaris syslogd crashes when receiving a message from a host that ...)
	TODO: check
CVE-1999-0221 (Denial of service of Ascend routers through port 150 (remote ...)
	TODO: check
CVE-1999-0219 (Buffer overflow in Serv-U FTP server when user performs a cwd to a ...)
	TODO: check
CVE-1999-0218 (Livingston portmaster machines could be rebooted via a series ...)
	TODO: check
CVE-1999-0217 (Malicious option settings in UDP packets could force a reboot in SunOS ...)
	TODO: check
CVE-1999-0215 (Routed allows attackers to append data to files. ...)
	TODO: check
CVE-1999-0214 (Denial of service by sending forged ICMP unreachable packets. ...)
	TODO: check
CVE-1999-0212 (Solaris rpc.mountd generates error messages that allow a remote ...)
	TODO: check
CVE-1999-0211 (Extra long export lists over 256 characters in some mount daemons ...)
	TODO: check
CVE-1999-0210 (Automount daemon automountd allows local or remote users to gain ...)
	TODO: check
CVE-1999-0209 (The SunView (SunTools) selection_svc facility allows remote users to ...)
	TODO: check
CVE-1999-0208 (rpc.ypupdated (NIS) allows remote users to execute arbitrary commands. ...)
	TODO: check
CVE-1999-0207 (Remote attacker can execute commands through Majordomo using the ...)
	TODO: check
CVE-1999-0206 (MIME buffer overflow in Sendmail 8.8.0 and 8.8.1 gives root access. ...)
	TODO: check
CVE-1999-0204 (Sendmail 8.6.9 allows remote attackers to execute root commands, using ...)
	TODO: check
CVE-1999-0203 (In Sendmail, attackers can gain root privileges via SMTP by specifying ...)
	TODO: check
CVE-1999-0202 (The GNU tar command, when used in FTP sessions, may allow an attacker ...)
	TODO: check
CVE-1999-0201 (A quote cwd command on FTP servers can reveal the full path of the ...)
	TODO: check
CVE-1999-0196 (The websendmail program in the Webgais program allows a remote user to ...)
	TODO: check
CVE-1999-0194 (Denial of service in in.comsat allows attackers to generate messages. ...)
	TODO: check
CVE-1999-0192 (Buffer overflow in telnet daemon tgetent routing allows remote ...)
	TODO: check
CVE-1999-0191 (IIS newdsn.exe CGI script allows remote users to overwrite files. ...)
	TODO: check
CVE-1999-0190 (Solaris rpcbind can be exploited to overwrite arbitrary files and gain ...)
	TODO: check
CVE-1999-0189 (Solaris rpcbind listens on a high numbered UDP port, which may not be ...)
	TODO: check
CVE-1999-0188 (The passwd command in Solaris can be subjected to a denial of service. ...)
	TODO: check
CVE-1999-0185 (In SunOS or Solaris, a remote user could connect from an FTP server's ...)
	TODO: check
CVE-1999-0184 (When compiled with the -DALLOW_UPDATES option, bind allows dynamic ...)
	TODO: check
CVE-1999-0183 (Linux implementations of TFTP would allow access to files outside the ...)
	TODO: check
CVE-1999-0182 (Samba has a buffer overflow which allows a remote attacker to obtain ...)
	TODO: check
CVE-1999-0181 (The wall daemon can be used for denial of service, social engineering ...)
	TODO: check
CVE-1999-0180 (in.rshd allows users to login with a NULL username and execute commands. ...)
	TODO: check
CVE-1999-0179 (Windows NT crashes or locks up when a Samba client executes a &quot;cd ..&quot; ...)
	TODO: check
CVE-1999-0178 (The win-c-sample program in the WebSite web server has a buffer ...)
	TODO: check
CVE-1999-0177 (The uploader program in the WebSite web server allows a remote ...)
	TODO: check
CVE-1999-0176 (The Webgais program allows a remote user to execute arbitrary ...)
	TODO: check
CVE-1999-0175 (The convert.bas program in the Novell web server allows a remote ...)
	TODO: check
CVE-1999-0174 (The view-source CGI program allows remote attackers to read arbitrary ...)
	TODO: check
CVE-1999-0173 (FormMail CGI program can be used by web servers other than the ...)
	TODO: check
CVE-1999-0172 (FormMail CGI program allows remote execution of commands. ...)
	TODO: check
CVE-1999-0170 (Remote attackers can mount an NFS file system in Ultrix or OSF, even ...)
	TODO: check
CVE-1999-0168 (The portmapper may act as a proxy and redirect service requests from ...)
	TODO: check
CVE-1999-0167 (In SunOS, NFS file handles could be guessed, giving unauthorized ...)
	TODO: check
CVE-1999-0166 (NFS allows users to use a &quot;cd ..&quot; command to access other directories ...)
	TODO: check
CVE-1999-0164 (A race condition in the Solaris ps command allows an attacker to ...)
	TODO: check
CVE-1999-0162 (The &quot;established&quot; keyword in some Cisco IOS software allowed ...)
	TODO: check
CVE-1999-0161 (In Cisco IOS 10.3, with the tacacs-ds or tacacs keyword, an extended ...)
	TODO: check
CVE-1999-0160 (Some classic Cisco IOS devices have a vulnerability in the PPP CHAP ...)
	TODO: check
CVE-1999-0159 (Attackers can crash a Cisco IOS router or device, provided they can ...)
	TODO: check
CVE-1999-0158 (Cisco PIX firewall manager (PFM) on Windows NT allows attackers to ...)
	TODO: check
CVE-1999-0157 (Cisco PIX firewall and CBAC IP fragmentation attack results in a ...)
	TODO: check
CVE-1999-0155 (The ghostscript command with the -dSAFER option allows remote ...)
	TODO: check
CVE-1999-0153 (Windows 95/NT out of band (OOB) data denial of service through NETBIOS ...)
	TODO: check
CVE-1999-0152 (The DG/UX finger daemon allows remote command execution through shell ...)
	TODO: check
CVE-1999-0151 (The SATAN session key may be disclosed if the user points the web ...)
	TODO: check
CVE-1999-0150 (The Perl fingerd program allows arbitrary command execution from ...)
	TODO: check
CVE-1999-0149 (The wrap CGI program in IRIX allows remote attackers to view ...)
	TODO: check
CVE-1999-0148 (The handler CGI program in IRIX allows arbitrary command execution. ...)
	TODO: check
CVE-1999-0147 (The aglimpse CGI program of the Glimpse package allows remote ...)
	TODO: check
CVE-1999-0146 (The campas CGI program provided with some NCSA web servers allows an ...)
	TODO: check
CVE-1999-0145 (Sendmail WIZ command enabled, allowing root access. ...)
	TODO: check
CVE-1999-0143 (Kerberos 4 key servers allow a user to masquerade as another by ...)
	TODO: check
CVE-1999-0142 (The Java Applet Security Manager implementation in Netscape Navigator ...)
	TODO: check
CVE-1999-0141 (Java Bytecode Verifier allows malicious applets to execute ...)
	TODO: check
CVE-1999-0139 (Buffer overflow in Solaris x86 mkcookie allows local users to ...)
	TODO: check
CVE-1999-0138 (The suidperl and sperl program do not give up root privileges when ...)
	TODO: check
CVE-1999-0137 (The dip program on many Linux systems allows local users to gain root ...)
	TODO: check
CVE-1999-0136 (Kodak Color Management System (KCMS) on Solaris allows a local user to ...)
	TODO: check
CVE-1999-0135 (admintool in Solaris allows a local user to write to arbitrary files ...)
	TODO: check
CVE-1999-0134 (vold in Solaris 2.x allows local users to gain root access. ...)
	TODO: check
CVE-1999-0133 (fm_fls license server for Adobe Framemaker allows local users to ...)
	TODO: check
CVE-1999-0132 (Expreserve, used in vi and ex, allows local users to overwrite ...)
	TODO: check
CVE-1999-0131 (Buffer overflow and denial of service in Sendmail 8.7.5 and ...)
	TODO: check
CVE-1999-0130 (Local users can start Sendmail in daemon mode and gain root privileges. ...)
	TODO: check
CVE-1999-0129 (Sendmail allows local users to write to a file and gain group ...)
	TODO: check
CVE-1999-0128 (Oversized ICMP ping packets can result in a denial of service, ...)
	TODO: check
CVE-1999-0126 (SGI IRIX buffer overflow in xterm and Xaw allows root access. ...)
	TODO: check
CVE-1999-0125 (Buffer overflow in SGI IRIX mailx program. ...)
	TODO: check
CVE-1999-0124 (Vulnerabilities in UMN gopher and gopher+ versions 1.12 and 2.0x allow ...)
	TODO: check
CVE-1999-0122 (Buffer overflow in AIX lchangelv gives root access. ...)
	TODO: check
CVE-1999-0120 (Sun/Solaris utmp file allows local users to gain root access if it ...)
	TODO: check
CVE-1999-0118 (AIX infod allows local users to gain root access through an X display. ...)
	TODO: check
CVE-1999-0117 (AIX passwd allows local users to gain root access. ...)
	TODO: check
CVE-1999-0116 (Denial of service when an attacker sends many SYN packets to create ...)
	TODO: check
CVE-1999-0115 (AIX bugfiler program allows local users to gain root access. ...)
	TODO: check
CVE-1999-0113 (Some implementations of rlogin allow root access if given a ...)
	TODO: check
CVE-1999-0112 (Buffer overflow in AIX dtterm program for the CDE ...)
	TODO: check
CVE-1999-0111 (RIP v1 is susceptible to spoofing. ...)
	TODO: check
CVE-1999-0109 (Buffer overflow in ffbconfig in Solaris 2.5.1 ...)
	TODO: check
CVE-1999-0108 (The printers program in IRIX has a buffer overflow that gives root ...)
	TODO: check
CVE-1999-0103 (Echo and chargen, or other combinations of UDP services, can be used ...)
	TODO: check
CVE-1999-0102 (Buffer overflow in SLmail 3.x allows attackers to execute commands ...)
	TODO: check
CVE-1999-0101 (Buffer overflow in AIX and Solaris &quot;gethostbyname&quot; library call allows ...)
	TODO: check
CVE-1999-0100 (Remote access in AIX innd 1.5.1, using control messages. ...)
	TODO: check
CVE-1999-0099 (Buffer overflow in syslog utility allows local or remote attackers to ...)
	TODO: check
CVE-1999-0097 (The AIX FTP client can be forced to execute commands from a malicious ...)
	TODO: check
CVE-1999-0096 (Sendmail decode alias can be used to overwrite sensitive files ...)
	TODO: check
CVE-1999-0095 (The debug command in Sendmail is enabled, allowing attackers to ...)
	TODO: check
CVE-1999-0094 (AIX piodmgrsu command allows local users to gain additional ...)
	TODO: check
CVE-1999-0093 (AIX nslookup command allows local users to obtain root access by not ...)
	TODO: check
CVE-1999-0091 (Buffer overflow in AIX writesrv command allows local users to obtain ...)
	TODO: check
CVE-1999-0090 (Buffer overflow in AIX rcp command allows local users to obtain ...)
	TODO: check
CVE-1999-0087 (Denial of service in AIX telnet can freeze a system and prevent ...)
	TODO: check
CVE-1999-0085 (rwhod buffer overflow in AIX ...)
	TODO: check
CVE-1999-0084 (NFS mknod bug ...)
	TODO: check
CVE-1999-0083 (getcwd() file descriptor leak in FTP ...)
	TODO: check
CVE-1999-0082 (CWD ~root command in ftpd allows root access. ...)
	TODO: check
CVE-1999-0081 (wu-ftp allows files to be overwritten via the rnfr command. ...)
	TODO: check
CVE-1999-0080 (wu-ftp FTP server allows root access via &quot;site exec&quot; command. ...)
	TODO: check
CVE-1999-0079 (Remote attackers can cause a denial of service in FTP by issuing ...)
	TODO: check
CVE-1999-0077 (Predictable TCP sequence numbers allow spoofing. ...)
	TODO: check
CVE-1999-0075 (PASV core dump in wu-ftpd daemon when attacker uses a QUOTE PASV ...)
	TODO: check
CVE-1999-0074 (Listening TCP ports are sequentially allocated, allowing spoofing ...)
	TODO: check
CVE-1999-0073 (Telnet allows a remote client to specify environment variables including ...)
	TODO: check
CVE-1999-0072 (Buffer overflow in AIX xdat gives root access to local users. ...)
	TODO: check
CVE-1999-0071 (Apache httpd cookie buffer overflow for versions 1.1.1 and earlier. ...)
	TODO: check
CVE-1999-0070 (test-cgi program allows an attacker to list files on the server ...)
	TODO: check
CVE-1999-0069 (Solaris ufsrestore buffer overflow. ...)
	TODO: check
CVE-1999-0068 (CGI PHP mylog script allows an attacker to read any file on the ...)
	TODO: check
CVE-1999-0067 (CGI phf program allows remote command execution through shell ...)
	TODO: check
CVE-1999-0066 (AnyForm CGI remote execution ...)
	TODO: check
CVE-1999-0065 (Multiple buffer overflows in how dtmail handles attachments allows a ...)
	TODO: check
CVE-1999-0064 (Buffer overflow in AIX lquerylv program gives root access to local users. ...)
	TODO: check
CVE-1999-0063 (Cisco IOS 12.0 and other versions can be crashed by malicious UDP ...)
	TODO: check
CVE-1999-0062 (The chpass command in OpenBSD allows a local user to gain root access ...)
	TODO: check
CVE-1999-0060 (Attackers can cause a denial of service in Ascend MAX and Pipeline ...)
	TODO: check
CVE-1999-0059 (IRIX fam service allows an attacker to obtain a list of all files ...)
	TODO: check
CVE-1999-0058 (Buffer overflow in PHP cgi program, php.cgi allows shell access. ...)
	TODO: check
CVE-1999-0057 (Vacation program allows command execution by remote users through ...)
	TODO: check
CVE-1999-0056 (Buffer overflow in Sun's ping program can give root access to local users. ...)
	TODO: check
CVE-1999-0055 (Buffer overflows in Sun libnsl allow root access. ...)
	TODO: check
CVE-1999-0054 (Sun's ftpd daemon can be subjected to a denial of service. ...)
	TODO: check
CVE-1999-0053 (TCP RST denial of service in FreeBSD ...)
	TODO: check
CVE-1999-0052 (IP fragmentation denial of service in FreeBSD allows a remote attacker ...)
	TODO: check
CVE-1999-0051 (Arbitrary file creation and program execution using FLEXlm ...)
	TODO: check
CVE-1999-0050 (Buffer overflow in HP-UX newgrp program ...)
	TODO: check
CVE-1999-0049 (Csetup under IRIX allows arbitrary file creation or overwriting. ...)
	TODO: check
CVE-1999-0048 (Talkd, when given corrupt DNS information, can be used to execute ...)
	TODO: check
CVE-1999-0047 (MIME conversion buffer overflow in sendmail versions 8.8.3 and 8.8.4. ...)
	TODO: check
CVE-1999-0046 (Buffer overflow of rlogin program using TERM environmental variable. ...)
	TODO: check
CVE-1999-0045 (List of arbitrary files on Web host via nph-test-cgi script ...)
	TODO: check
CVE-1999-0044 (fsdump command in IRIX allows local users to obtain root access ...)
	TODO: check
CVE-1999-0043 (Command execution via shell metachars in INN daemon (innd) 1.5 ...)
	TODO: check
CVE-1999-0042 (Buffer overflow in University of Washington's implementation of ...)
	TODO: check
CVE-1999-0041 (Buffer overflow in NLS (Natural Language Service) ...)
	TODO: check
CVE-1999-0040 (Buffer overflow in Xt library of X Windowing System allows local ...)
	TODO: check
CVE-1999-0039 (Arbitrary command execution using webdist CGI program in IRIX. ...)
	TODO: check
CVE-1999-0038 (Buffer overflow in xlock program allows local users to execute ...)
	TODO: check
CVE-1999-0037 (Arbitrary command execution via metamail package using message ...)
	TODO: check
CVE-1999-0036 (IRIX login program with a nonzero LOCKOUT parameter allows creation or ...)
	TODO: check
CVE-1999-0035 (Race condition in signal handling routine in ftpd, allowing read/write ...)
	TODO: check
CVE-1999-0034 (Buffer overflow in suidperl (sperl), Perl 4.x and 5.x ...)
	TODO: check
CVE-1999-0032 (Buffer overflow in BSD-based lpr package allows local users to gain ...)
	TODO: check
CVE-1999-0031 (JavaScript in Internet Explorer 3.x and 4.x, and Netscape 2.x, 3.x and ...)
	TODO: check
CVE-1999-0029 (root privileges via buffer overflow in ordist command on SGI IRIX ...)
	TODO: check
CVE-1999-0028 (root privileges via buffer overflow in login/scheme command on SGI ...)
	TODO: check
CVE-1999-0027 (root privileges via buffer overflow in eject command on SGI IRIX ...)
	TODO: check
CVE-1999-0026 (root privileges via buffer overflow in pset command on SGI IRIX ...)
	TODO: check
CVE-1999-0025 (root privileges via buffer overflow in df command on SGI IRIX ...)
	TODO: check
CVE-1999-0024 (DNS cache poisoning via BIND, by predictable query IDs. ...)
	TODO: check
CVE-1999-0023 (Local user gains root privileges via buffer overflow in rdist, via ...)
	TODO: check
CVE-1999-0022 (Local user gains root privileges via buffer overflow in rdist, via ...)
	TODO: check
CVE-1999-0021 (Arbitrary command execution via buffer overflow in Count.cgi ...)
	TODO: check
CVE-1999-0019 (Delete or create a file via rpc.statd, due to invalid information. ...)
	TODO: check
CVE-1999-0018 (Buffer overflow in statd allows root privileges. ...)
	TODO: check
CVE-1999-0017 (FTP servers can allow an attacker to connect to arbitrary ports on ...)
	TODO: check
CVE-1999-0016 (Land IP denial of service ...)
	TODO: check
CVE-1999-0014 (Unauthorized privileged access or denial of service via dtappgather ...)
	TODO: check
CVE-1999-0013 (Stolen credentials from SSH clients via ssh-agent program, allowing ...)
	TODO: check
CVE-1999-0012 (Some web servers under Microsoft Windows allow remote attackers ...)
	TODO: check
CVE-1999-0011 (Denial of Service vulnerabilities in BIND 4.9 and BIND 8 Releases ...)
	TODO: check
CVE-1999-0010 (Denial of Service vulnerability in BIND 8 Releases via maliciously ...)
	TODO: check
CVE-1999-0009 (Inverse query buffer overflow in BIND 4.9 and BIND 8 Releases. ...)
	TODO: check
CVE-1999-0008 (Buffer overflow in NIS+, in Sun's rpc.nisd program ...)
	TODO: check
CVE-1999-0007 (Information from SSL-encrypted sessions via PKCS #1 ...)
	TODO: check
CVE-1999-0006 (Buffer overflow in POP servers based on BSD/Qualcomm's qpopper allows ...)
	TODO: check
CVE-1999-0005 (Arbitrary command execution via IMAP buffer overflow in authenticate ...)
	TODO: check
CVE-1999-0003 (Execute commands as root via buffer overflow in Tooltalk database ...)
	TODO: check
CVE-1999-0002 (Buffer overflow in NFS mountd gives root access to remote attackers, ...)
	TODO: check
CVE-1999-1572 (cpio on FreeBSD 2.1.0, Debian GNU/Linux 3.0, and possibly other ...)
	{DSA-664-1}
	- cpio 2.5-1.2 (bug #293379)
CVE-1999-1571 (Buffer overflow in sar for SCO OpenServer 5.0.0 through 5.0.5 may ...)
	TODO: check
CVE-1999-1570 (Buffer overflow in sar for OpenServer 5.0.5 allows local users to gain ...)
	TODO: check
CVE-1999-1569 (Quake 1 and NetQuake servers allow remote attackers to cause a denial ...)
	TODO: check
CVE-1999-1567 (Seapine Software TestTrack server allows a remote attacker to cause a ...)
	TODO: check
CVE-1999-1566 (Buffer overflow in iParty server 1.2 and earlier allows remote ...)
	TODO: check
CVE-1999-1564 (FreeBSD 3.2 and possibly other versions allows a local user to cause a ...)
	TODO: check
CVE-1999-1563 (Nachuatec D435 and D445 printer allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1562 (gFTP FTP client 1.13, and other versions before 2.0.0, records a ...)
	TODO: check
CVE-1999-1561 (Nullsoft SHOUTcast server stores the administrative password in ...)
	TODO: check
CVE-1999-1560 (Vulnerability in a script in Texas A&amp;M University (TAMU) Tiger allows ...)
	TODO: check
CVE-1999-1559 (Xylan OmniSwitch before 3.2.6 allows remote attackers to bypass the ...)
	TODO: check
CVE-1999-1558 (Vulnerability in loginout in Digital OpenVMS 7.1 and earlier allows ...)
	TODO: check
CVE-1999-1557 (Buffer overflow in the login functions in IMAP server (imapd) in ...)
	TODO: check
CVE-1999-1555 (Cheyenne InocuLAN Anti-Virus Server in Inoculan 4.0 before Service ...)
	TODO: check
CVE-1999-1554 (/usr/sbin/Mail on SGI IRIX 3.3 and 3.3.1 does not properly set the ...)
	TODO: check
CVE-1999-1553 (Buffer overflow in XCmail 0.99.6 with autoquote enabled allows remote ...)
	TODO: check
CVE-1999-1552 (dpsexec (DPS Server) when running under XDM in IBM AIX 3.2.5 and ...)
	TODO: check
CVE-1999-1551 (Buffer overflow in Ipswitch IMail Service 5.0 allows an attacker to ...)
	TODO: check
CVE-1999-1549 (Lynx 2.x does not properly distinguish between internal and external ...)
	TODO: check
CVE-1999-1548 (Cabletron SmartSwitch Router (SSR) 8000 firmware 2.x can only handle ...)
	TODO: check
CVE-1999-1547 (Oracle Web Listener 2.1 allows remote attackers to bypass access ...)
	TODO: check
CVE-1999-1546 (netstation.navio-com.rte 1.1.0.1 configuration script for Navio NC on ...)
	TODO: check
CVE-1999-1545 (Joe's Own Editor (joe) 2.8 sets the world-readable permission on its ...)
	TODO: check
CVE-1999-1544 (Buffer overflow in FTP server in Microsoft IIS 3.0 and 4.0 allows ...)
	TODO: check
CVE-1999-1543 (MacOS uses weak encryption for passwords that are stored in the Users ...)
	TODO: check
CVE-1999-1541 (shell-lock in Cactus Software Shell Lock allows local users to read or ...)
	TODO: check
CVE-1999-1540 (shell-lock in Cactus Software Shell Lock uses weak encryption (trivial ...)
	TODO: check
CVE-1999-1539 (Buffer overflow in FTP server in QPC Software's QVT/Term Plus versions ...)
	TODO: check
CVE-1999-1538 (When IIS 2 or 3 is upgraded to IIS 4, ism.dll is inadvertently left in ...)
	TODO: check
CVE-1999-1536 (.sbstart startup script in AcuShop Salesbuilder is world writable, ...)
	TODO: check
CVE-1999-1534 (Buffer overflow in (1) nlservd and (2) rnavc in Knox Software Arkeia ...)
	TODO: check
CVE-1999-1533 (Eicon Technology Diva LAN ISDN modem allows a remote attacker to cause ...)
	TODO: check
CVE-1999-1532 (Netscape Messaging Server 3.54, 3.55, and 3.6 allows a remote attacker ...)
	TODO: check
CVE-1999-1529 (A buffer overflow exists in the HELO command in Trend Micro ...)
	TODO: check
CVE-1999-1528 (ProSoft Netware Client 5.12 on Macintosh MacOS 9 does not ...)
	TODO: check
CVE-1999-1527 (Internal HTTP server in Sun Netbeans Java IDE in Netbeans Developer ...)
	TODO: check
CVE-1999-1526 (Auto-update feature of Macromedia Shockwave 7 transmits a user's ...)
	TODO: check
CVE-1999-1525 (Macromedia Shockwave before 6.0 allows a malicious webmaster to read a ...)
	TODO: check
CVE-1999-1524 (FlowPoint DSL router firmware versions prior to 3.0.8 allows a remote ...)
	TODO: check
CVE-1999-1523 (Buffer overflow in Sambar Web Server 4.2.1 allows remote attackers to ...)
	TODO: check
CVE-1999-1522 (Vulnerability in htmlparse.pike in Roxen Web Server 1.3.11 and ...)
	TODO: check
CVE-1999-1521 (Computalynx CMail 2.4 and CMail 2.3 SP2 SMTP servers are vulnerable to ...)
	TODO: check
CVE-1999-1519 (Gene6 G6 FTP Server 2.0 allows a remote attacker to cause a denial of ...)
	TODO: check
CVE-1999-1518 (Operating systems with shared memory implementations based on BSD 4.4 ...)
	TODO: check
CVE-1999-1517 (runtar in the Amanda backup system used in various UNIX operating ...)
	TODO: check
CVE-1999-1516 (A buffer overflow in TenFour TFS Gateway SMTP mail server 3.2 allows ...)
	TODO: check
CVE-1999-1515 (A non-default configuration in TenFour TFS Gateway 4.0 allows an ...)
	TODO: check
CVE-1999-1514 (Buffer overflow in Celtech ExpressFS FTP server 2.x allows remote ...)
	TODO: check
CVE-1999-1513 (Management information base (MIB) for a 3Com SuperStack II hub running ...)
	TODO: check
CVE-1999-1511 (Buffer overflows in Xtramail 1.11 allow attackers to cause a denial of ...)
	TODO: check
CVE-1999-1510 (Buffer overflows in Bisonware FTP server prior to 4.1 allow remote ...)
	TODO: check
CVE-1999-1509 (Directory traversal vulnerability in Etype Eserv 2.50 web server ...)
	TODO: check
CVE-1999-1508 (Web server in Tektronix PhaserLink Printer 840.0 and earlier allows a ...)
	TODO: check
CVE-1999-1506 (Vulnerability in SMI Sendmail 4.0 and earlier, on SunOS up to 4.0.3, ...)
	TODO: check
CVE-1999-1505 (Buffer overflow in QuakeWorld 2.10 allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1504 (Stalker Internet Mail Server 1.6 allows a remote attacker to cause a ...)
	TODO: check
CVE-1999-1503 (Network Flight Recorder (NFR) 1.5 and 1.6 allows remote attackers to ...)
	TODO: check
CVE-1999-1502 (Buffer overflows in Quake 1.9 client allows remote malicious servers ...)
	TODO: check
CVE-1999-1501 ((1) ipxchk and (2) ipxlink in SGI OS2 IRIX 6.3 does not properly clear ...)
	TODO: check
CVE-1999-1500 (Internet Anywhere POP3 Mail Server 2.3.1 allows remote attackers to ...)
	TODO: check
CVE-1999-1499 (named in ISC BIND 4.9 and 8.1 allows local users to destroy files via ...)
	TODO: check
CVE-1999-1498 (Slackware Linux 3.4 pkgtool allows local attacker to read and write to ...)
	TODO: check
CVE-1999-1497 (Ipswitch IMail 5.0 and 6.0 uses weak encryption to store passwords in ...)
	TODO: check
CVE-1999-1496 (Sudo 1.5 in Debian Linux 2.1 and Red Hat 6.0 allows local users to ...)
	TODO: check
CVE-1999-1495 (xtvscreen in SuSE Linux 6.0 allows local users to overwrite arbitrary ...)
	TODO: check
CVE-1999-1493 (Vulnerability in crp in Hewlett Packard Apollo Domain OS SR10 through ...)
	TODO: check
CVE-1999-1492 (Vulnerability in (1) diskperf and (2) diskalign in IRIX 6.4 allows ...)
	TODO: check
CVE-1999-1491 (abuse.console in Red Hat 2.1 uses relative pathnames to find and ...)
	TODO: check
CVE-1999-1489 (Buffer overflow in TestChip function in XFree86 SuperProbe in ...)
	TODO: check
CVE-1999-1487 (Vulnerability in digest in AIX 4.3 allows printq users to gain root ...)
	TODO: check
CVE-1999-1485 (nsd in IRIX 6.5 through 6.5.2 exports a virtual filesystem on a UDP ...)
	TODO: check
CVE-1999-1484 (Buffer overflow in MSN Setup BBS 4.71.0.10 ActiveX control ...)
	TODO: check
CVE-1999-1483 (Buffer overflow in zgv in svgalib 1.2.10 and earlier allows local ...)
	TODO: check
CVE-1999-1482 (SVGAlib zgv 3.0-7 and earlier allows local users to gain root access ...)
	TODO: check
CVE-1999-1480 ((1) acledit and (2) aclput in AIX 4.3 allow local users to create or ...)
	TODO: check
CVE-1999-1479 (The textcounter.pl by Matt Wright allows remote attackers to execute ...)
	TODO: check
CVE-1999-1477 (Buffer overflow in GNOME libraries 1.0.8 allows local user to gain ...)
	TODO: check
CVE-1999-1475 (ProFTPd 1.2 compiled with the mod_sqlpw module records user passwords ...)
	TODO: check
CVE-1999-1474 (PowerPoint 95 and 97 allows remote attackers to cause an application ...)
	TODO: check
CVE-1999-1471 (Buffer overflow in passwd in BSD based operating systems 4.3 and ...)
	TODO: check
CVE-1999-1470 (Eastman Work Management 3.21 stores passwords in cleartext in the ...)
	TODO: check
CVE-1999-1469 (Buffer overflow in w3-auth CGI program in miniSQL package allows ...)
	TODO: check
CVE-1999-1467 (Vulnerability in rcp on SunOS 4.0.x allows remote attackers from ...)
	TODO: check
CVE-1999-1466 (Vulnerability in Cisco routers versions 8.2 through 9.1 allows remote ...)
	TODO: check
CVE-1999-1465 (Vulnerability in Cisco IOS 11.1 through 11.3 with distributed fast ...)
	TODO: check
CVE-1999-1464 (Vulnerability in Cisco IOS 11.1CC and 11.1CT with distributed fast ...)
	TODO: check
CVE-1999-1463 (Windows NT 4.0 before SP3 allows remote attackers to bypass firewall ...)
	TODO: check
CVE-1999-1462 (Vulnerability in bb-hist.sh CGI History module in Big Brother 1.09b ...)
	TODO: check
CVE-1999-1461 (inpview in InPerson on IRIX 5.3 through IRIX 6.5.10 trusts the PATH ...)
	TODO: check
CVE-1999-1460 (BMC PATROL SNMP Agent before 3.2.07 allows local users to create ...)
	TODO: check
CVE-1999-1459 (BMC PATROL Agent before 3.2.07 allows local users to gain root ...)
	TODO: check
CVE-1999-1458 (Buffer overflow in at program in Digital UNIX 4.0 allows local users ...)
	TODO: check
CVE-1999-1457 (Buffer overflow in thttpd HTTP server before 2.04-31 allows remote ...)
	TODO: check
CVE-1999-1454 (Macromedia &quot;The Matrix&quot; screen saver on Windows 95 with the &quot;Password ...)
	TODO: check
CVE-1999-1453 (Internet Explorer 4 allows remote attackers (malicious web site ...)
	TODO: check
CVE-1999-1451 (The Winmsdp.exe sample file in IIS 4.0 and Site Server 3.0 allows ...)
	TODO: check
CVE-1999-1450 (Vulnerability in (1) rlogin daemon rshd and (2) scheme on SCO UNIX ...)
	TODO: check
CVE-1999-1449 (SunOS 4.1.4 on a Sparc 20 machine allows local users to cause a denial ...)
	TODO: check
CVE-1999-1448 (Eudora and Eudora Light before 3.05 allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1447 (Internet Explorer 4.0 allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1446 (Internet Explorer 3 records a history of all URL's that are visited by ...)
	TODO: check
CVE-1999-1445 (Vulnerability in imapd and ipop3d in Slackware 3.4 and 3.3 with ...)
	TODO: check
CVE-1999-1444 (genkey utility in Alibaba 2.0 generates RSA key pairs with an exponent ...)
	TODO: check
CVE-1999-1443 (Micah Software Full Armor Network Configurator and Zero Administration ...)
	TODO: check
CVE-1999-1442 (Bug in AMD K6 processor on Linux 2.0.x and 2.1.x kernels allows local ...)
	TODO: check
CVE-1999-1441 (Linux 2.0.34 does not properly prevent users from sending SIGIO ...)
	TODO: check
CVE-1999-1440 (Win32 ICQ 98a 1.30, and possibly other versions, does not display the ...)
	TODO: check
CVE-1999-1439 (gcc 2.7.2 allows local users to overwrite arbitrary files via a ...)
	TODO: check
CVE-1999-1438 (Vulnerability in /bin/mail in SunOS 4.1.1 and earlier allows local ...)
	TODO: check
CVE-1999-1436 (Ray Chan WWW Authorization Gateway 0.1 CGI program allows remote ...)
	TODO: check
CVE-1999-1435 (Buffer overflow in libsocks5 library of Socks 5 (socks5) 1.0r5 allows ...)
	TODO: check
CVE-1999-1434 (login in Slackware Linux 3.2 through 3.5 does not properly check for ...)
	TODO: check
CVE-1999-1431 (ZAK in Appstation mode allows users to bypass the &quot;Run only allowed ...)
	TODO: check
CVE-1999-1430 (PIM software for Royal daVinci does not properly password-protext ...)
	TODO: check
CVE-1999-1429 (DIT TransferPro installs devices with world-readable and ...)
	TODO: check
CVE-1999-1428 (Solaris Solstice AdminSuite (AdminSuite) 2.1 and 2.2 allows local ...)
	TODO: check
CVE-1999-1427 (Solaris Solstice AdminSuite (AdminSuite) 2.1 and 2.2 create lock files ...)
	TODO: check
CVE-1999-1426 (Solaris Solstice AdminSuite (AdminSuite) 2.1 follows symbolic links ...)
	TODO: check
CVE-1999-1425 (Solaris Solstice AdminSuite (AdminSuite) 2.1 incorrectly sets write ...)
	TODO: check
CVE-1999-1424 (Solaris Solstice AdminSuite (AdminSuite) 2.1 uses unsafe permissions ...)
	TODO: check
CVE-1999-1422 (The default configuration of Slackware 3.4, and possibly other ...)
	TODO: check
CVE-1999-1421 (NBase switches NH208 and NH215 run a TFTP server which allows remote ...)
	TODO: check
CVE-1999-1420 (NBase switches NH2012, NH2012R, NH2015, and NH2048 have a back door ...)
	TODO: check
CVE-1999-1418 (ICQ99 ICQ web server build 1701 with &quot;Active Homepage&quot; enabled ...)
	TODO: check
CVE-1999-1417 (Format string vulnerability in AnswerBook2 (AB2) web server dwhttpd ...)
	TODO: check
CVE-1999-1416 (AnswerBook2 (AB2) web server dwhttpd 3.1a4 allows remote attackers to ...)
	TODO: check
CVE-1999-1415 (Vulnerability in /usr/bin/mail in DEC ULTRIX before 4.2 allows local ...)
	TODO: check
CVE-1999-1413 (Solaris 2.4 before kernel jumbo patch -35 allows set-gid programs to ...)
	TODO: check
CVE-1999-1412 (A possible interaction between Apple MacOS X release 1.0 and Apache ...)
	TODO: check
CVE-1999-1410 (addnetpr in IRIX 5.3 and 6.2 allows local users to overwrite arbitrary ...)
	TODO: check
CVE-1999-1408 (Vulnerability in AIX 4.1.4 and HP-UX 10.01 and 9.05 allows local users ...)
	TODO: check
CVE-1999-1406 (dumpreg in Red Hat Linux 5.1 opens /dev/mem with O_RDWR access, which ...)
	TODO: check
CVE-1999-1405 (snap command in AIX before 4.3.2 creates the /tmp/ibmsupt directory ...)
	TODO: check
CVE-1999-1404 (IBM/Tivoli OPC Tracker Agent version 2 release 1 allows remote ...)
	TODO: check
CVE-1999-1403 (IBM/Tivoli OPC Tracker Agent version 2 release 1 creates files, ...)
	TODO: check
CVE-1999-1401 (Vulnerability in Desktop searchbook program in IRIX 5.0.x through 6.2 ...)
	TODO: check
CVE-1999-1400 (The Economist screen saver 1999 with the &quot;Password Protected&quot; option ...)
	TODO: check
CVE-1999-1399 (spaceball program in SpaceWare 7.3 v1.0 in IRIX 6.2 allows local users ...)
	TODO: check
CVE-1999-1398 (Vulnerability in xfsdump in SGI IRIX may allow local users to obtain ...)
	TODO: check
CVE-1999-1396 (Vulnerability in integer multiplication emulation code on SPARC ...)
	TODO: check
CVE-1999-1395 (Vulnerability in Monitor utility (SYS$SHARE:SPISHR.EXE) in VMS 5.0 ...)
	TODO: check
CVE-1999-1394 (BSD 4.4 based operating systems, when running at security level 1, ...)
	TODO: check
CVE-1999-1393 (Control Panel &quot;Password Security&quot; option for Apple Powerbooks allows ...)
	TODO: check
CVE-1999-1392 (Vulnerability in restore0.9 installation script in NeXT 1.0a and 1.0 ...)
	TODO: check
CVE-1999-1391 (Vulnerability in NeXT 1.0a and 1.0 with publicly accessible printers ...)
	TODO: check
CVE-1999-1390 (suidexec in suidmanager 0.18 on Debian 2.0 allows local users to gain ...)
	TODO: check
CVE-1999-1389 (US Robotics/3Com Total Control Chassis with Frame Relay between 3.6.22 ...)
	TODO: check
CVE-1999-1388 (passwd in SunOS 4.1.x allows local users to overwrite arbitrary files ...)
	TODO: check
CVE-1999-1387 (Windows NT 4.0 SP2 allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1383 ((1) bash before 1.14.7, and (2) tcsh 6.05 allow local users to gain ...)
	TODO: check
CVE-1999-1381 (Buffer overflow in dbadmin CGI program 1.0.1 on Linux allows remote ...)
	TODO: check
CVE-1999-1378 (dbmlparser.exe CGI guestbook program does not perform a chroot ...)
	TODO: check
CVE-1999-1377 (Matt Wright's download.cgi 1.0 allows remote attackers to read ...)
	TODO: check
CVE-1999-1376 (Buffer overflow in fpcount.exe in IIS 4.0 with FrontPage Server ...)
	TODO: check
CVE-1999-1375 (FileSystemObject (FSO) in the showfile.asp Active Server Page (ASP) ...)
	TODO: check
CVE-1999-1374 (perlshop.cgi shopping cart program stores sensitive customer ...)
	TODO: check
CVE-1999-1373 (FORE PowerHub before 5.0.1 allows remote attackers to cause a denial ...)
	TODO: check
CVE-1999-1372 (Triactive Remote Manager with Basic authentication enabled stores the ...)
	TODO: check
CVE-1999-1371 (Buffer overflow in /usr/bin/write in Solaris 2.6 and 7 allows local ...)
	TODO: check
CVE-1999-1370 (The setup wizard (ie5setup.exe) for Internet Explorer 5.0 disables (1) ...)
	TODO: check
CVE-1999-1369 (Real Media RealServer (rmserver) 6.0.3.353 stores a password in ...)
	TODO: check
CVE-1999-1368 (AV Option for MS Exchange Server option for InoculateIT 4.53, and ...)
	TODO: check
CVE-1999-1367 (Internet Explorer 5.0 does not properly reset the username/password ...)
	TODO: check
CVE-1999-1366 (Pegasus e-mail client 3.0 and earlier uses weak encryption to store ...)
	TODO: check
CVE-1999-1364 (Windows NT 4.0 allows local users to cause a denial of service (crash) ...)
	TODO: check
CVE-1999-1361 (Windows NT 3.51 and 4.0 running WINS (Windows Internet Name Service) ...)
	TODO: check
CVE-1999-1357 (Netscape Communicator 4.04 through 4.7 (and possibly other versions) ...)
	TODO: check
CVE-1999-1355 (BMC Patrol component, when installed with Compaq Insight Management ...)
	TODO: check
CVE-1999-1354 (E-mail client in Softarc FirstClass Internet Server 5.506 and earlier ...)
	TODO: check
CVE-1999-1353 (Nosque MsgCore 2.14 stores passwords in cleartext: (1) the ...)
	TODO: check
CVE-1999-1352 (mknod in Linux 2.2 follows symbolic links, which could allow local ...)
	TODO: check
CVE-1999-1350 (ARCAD Systemhaus 0.078-5 installs critical programs and files with ...)
	TODO: check
CVE-1999-1349 (NFS daemon (nfsd.exe) for Omni-NFS/X 6.1 allows remote attackers to ...)
	TODO: check
CVE-1999-1348 (Linuxconf on Red Hat Linux 6.0 and earlier does not properly disable ...)
	TODO: check
CVE-1999-1347 (Xsession in Red Hat Linux 6.1 and earlier can allow local users with ...)
	TODO: check
CVE-1999-1346 (PAM configuration file for rlogin in Red Hat Linux 6.1 and earlier ...)
	TODO: check
CVE-1999-1345 (Auto_FTP.pl script in Auto_FTP 0.2 uses the /tmp/ftp_tmp as a shared ...)
	TODO: check
CVE-1999-1344 (Auto_FTP.pl script in Auto_FTP 0.2 stores usernames and passwords in ...)
	TODO: check
CVE-1999-1343 (HTTP server for Xerox DocuColor 4 LP allows remote attackers to cause ...)
	TODO: check
CVE-1999-1342 (ICQ ActiveList Server allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1340 (Buffer overflow in faxalter in hylafax 4.0.2 allows local users to ...)
	TODO: check
CVE-1999-1338 (Delegate proxy 5.9.3 and earlier creates files and directories in the ...)
	TODO: check
CVE-1999-1334 (Multiple buffer overflows in filter command in Elm 2.4 allows ...)
	TODO: check
CVE-1999-1323 (Norton AntiVirus for Internet Email Gateways (NAVIEG) 1.0.1.7 and ...)
	TODO: check
CVE-1999-1322 (The installation of 1ArcServe Backup and Inoculan AV client modules ...)
	TODO: check
CVE-1999-1319 (Vulnerability in object server program in SGI IRIX 5.2 through 6.1 ...)
	TODO: check
CVE-1999-1315 (Vulnerabilities in DECnet/OSI for OpenVMS before 5.8 on DEC Alpha AXP ...)
	TODO: check
CVE-1999-1314 (Vulnerability in union file system in FreeBSD 2.2 and earlier, and ...)
	TODO: check
CVE-1999-1313 (Manual page reader (man) in FreeBSD 2.2 and earlier allows local users ...)
	TODO: check
CVE-1999-1312 (Vulnerability in DEC OpenVMS VAX 5.5-2 through 5.0, and OpenVMS AXP ...)
	TODO: check
CVE-1999-1311 (Vulnerability in dtlogin and dtsession in HP-UX 10.20 and 10.10 allows ...)
	TODO: check
CVE-1999-1310
	REJECTED
CVE-1999-1308 (Certain programs in HP-UX 10.20 do not properly handle large user IDs ...)
	TODO: check
CVE-1999-1307 (Vulnerability in urestore in Novell UnixWare 1.1 allows local users to ...)
	TODO: check
CVE-1999-1306 (Cisco IOS 9.1 and earlier does not properly handle extended IP access ...)
	TODO: check
CVE-1999-1305 (Vulnerability in &quot;at&quot; program in SCO UNIX 4.2 and earlier allows local ...)
	TODO: check
CVE-1999-1304 (Vulnerability in login in SCO UNIX 4.2 and earlier allows local users ...)
	TODO: check
CVE-1999-1303 (Vulnerability in prwarn in SCO UNIX 4.2 and earlier allows local users ...)
	TODO: check
CVE-1999-1302 (Vulnerability in pt_chmod in SCO UNIX 4.2 and earlier allows local ...)
	TODO: check
CVE-1999-1300 (Vulnerability in accton in Cray UNICOS 6.1 and 6.0 allows local users ...)
	TODO: check
CVE-1999-1299 (rcp on various Linux systems including Red Hat 4.0 allows a &quot;nobody&quot; ...)
	TODO: check
CVE-1999-1296 (Buffer overflow in Kerberos IV compatibility libraries as used in ...)
	TODO: check
CVE-1999-1295 (Transarc DCE Distributed File System (DFS) 1.1 for Solaris 2.4 and 2.5 ...)
	TODO: check
CVE-1999-1293 (mod_proxy in Apache 1.2.5 and earlier allows remote attackers to cause ...)
	TODO: check
CVE-1999-1292 (Buffer overflow in web administration feature of Kolban Webcam32 4.8.3 ...)
	TODO: check
CVE-1999-1291 (TCP/IP implementation in Microsoft Windows 95, Windows NT 4.0, and ...)
	TODO: check
CVE-1999-1289 (ICQ 98 beta on Windows NT leaks the internal IP address of a client in ...)
	TODO: check
CVE-1999-1287 (Vulnerability in Analog 3.0 and earlier allows remote attackers to ...)
	TODO: check
CVE-1999-1286 (addnetpr in SGI IRIX 6.2 and earlier allows local users to modify ...)
	TODO: check
CVE-1999-1285 (Linux 2.1.132 and earlier allows local users to cause a denial of ...)
	TODO: check
CVE-1999-1283 (Opera 3.2.1 allows remote attackers to cause a denial of service ...)
	TODO: check
CVE-1999-1282 (RealSystem G2 server stores the administrator password in cleartext in ...)
	TODO: check
CVE-1999-1281 (Development version of Breeze Network Server allows remote attackers ...)
	TODO: check
CVE-1999-1280 (Hummingbird Exceed 6.0.1.0 inadvertently includes a DLL that was meant ...)
	TODO: check
CVE-1999-1278 (nlog CGI scripts do not properly filter shell metacharacters from the ...)
	TODO: check
CVE-1999-1277 (BackWeb client stores the username and password in cleartext for proxy ...)
	TODO: check
CVE-1999-1275 (Lotus cc:Mail release 8 stores the postoffice password in plaintext in ...)
	TODO: check
CVE-1999-1274 (iPass RoamServer 3.1 creates temporary files with world-writable ...)
	TODO: check
CVE-1999-1273 (Squid Internet Object Cache 1.1.20 allows users to bypass access ...)
	TODO: check
CVE-1999-1272 (Buffer overflows in CDROM Confidence Test program (cdrom) allow local ...)
	TODO: check
CVE-1999-1271 (Macromedia Dreamweaver uses weak encryption to store FTP passwords, ...)
	TODO: check
CVE-1999-1270 (KMail in KDE 1.0 provides a PGP passphrase as a command line argument ...)
	TODO: check
CVE-1999-1269 (Screen savers in KDE beta 3 allows local users to overwrite arbitrary ...)
	TODO: check
CVE-1999-1268 (Vulnerability in KDE konsole allows local users to hijack or observe ...)
	TODO: check
CVE-1999-1267 (KDE file manager (kfm) uses a TCP server for certain file operations, ...)
	TODO: check
CVE-1999-1266 (rsh daemon (rshd) generates different error messages when a valid ...)
	TODO: check
CVE-1999-1265 (SMTP server in SLmail 3.1 and earlier allows remote attackers to cause ...)
	TODO: check
CVE-1999-1264 (WebRamp M3 router does not disable remote telnet or HTTP access to ...)
	TODO: check
CVE-1999-1261 (Buffer overflow in Rainbow Six Multiplayer allows remote attackers to ...)
	TODO: check
CVE-1999-1260 (mSQL (Mini SQL) 2.0.6 allows remote attackers to obtain sensitive ...)
	TODO: check
CVE-1999-1257 (Xyplex terminal server 6.0.1S1, and possibly other versions, allows ...)
	TODO: check
CVE-1999-1256 (Oracle Database Assistant 1.0 in Oracle 8.0.3 Enterprise Edition ...)
	TODO: check
CVE-1999-1255 (Hyperseek allows remote attackers to modify the hyperseek ...)
	TODO: check
CVE-1999-1254 (Windows 95, 98, and NT 4.0 allow remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1253 (Vulnerability in a kernel error handling routine in SCO OpenServer ...)
	TODO: check
CVE-1999-1252 (Vulnerability in a certain system call in SCO UnixWare 2.0.x and 2.1.0 ...)
	TODO: check
CVE-1999-1251 (Vulnerability in direct audio user space code on HP-UX 10.20 and 10.10 ...)
	TODO: check
CVE-1999-1250 (Vulnerability in CGI program in the Lasso application by Blue World, ...)
	TODO: check
CVE-1999-1248 (Vulnerability in Support Watch (aka SupportWatch) in HP-UX 8.0 through ...)
	TODO: check
CVE-1999-1247 (Vulnerability in HP Camera component of HP DCE/9000 in HP-UX 9.x ...)
	TODO: check
CVE-1999-1245 (vacm ucd-snmp SNMP server, version 3.52, does not properly disable ...)
	TODO: check
CVE-1999-1244 (IPFilter 3.2.3 through 3.2.10 allows local users to modify arbitrary ...)
	TODO: check
CVE-1999-1242 (Vulnerability in subnetconfig in HP-UX 9.01 and 9.0 allows local users ...)
	TODO: check
CVE-1999-1241 (Internet Explorer, with a security setting below Medium, allows remote ...)
	TODO: check
CVE-1999-1240 (Buffer overflow in cddbd CD database server allows remote attackers to ...)
	TODO: check
CVE-1999-1239 (HP-UX 9.x does not properly enable the Xauthority mechanism in certain ...)
	TODO: check
CVE-1999-1238 (Vulnerability in CORE-DIAG fileset in HP message catalog in HP-UX 9.05 ...)
	TODO: check
CVE-1999-1237 (Multiple buffer overflows in smbvalid/smbval SMB authentication ...)
	TODO: check
CVE-1999-1236 (Internet Anywhere Mail Server 2.3.1 stores passwords in plaintext in ...)
	TODO: check
CVE-1999-1235 (Internet Explorer 5.0 records the username and password for FTP ...)
	TODO: check
CVE-1999-1234 (LSA (LSASS.EXE) in Windows NT 4.0 allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1232 (day5datacopier in SGI IRIX 6.2 trusts the PATH environmental variable ...)
	TODO: check
CVE-1999-1231 (ssh 2.0.12, and possibly other versions, allows valid user names to ...)
	TODO: check
CVE-1999-1230 (Quake 2 server allows remote attackers to cause a denial of service ...)
	TODO: check
CVE-1999-1229 (Quake 2 server 3.13 on Linux does not properly check file permissions ...)
	TODO: check
CVE-1999-1228 (Various modems that do not implement a guard time, or are configured ...)
	TODO: check
CVE-1999-1227 (Ethereal allows local users to overwrite arbitrary files via a symlink ...)
	TODO: check
CVE-1999-1225 (rpc.mountd on Linux, Ultrix, and possibly other operating systems, ...)
	TODO: check
CVE-1999-1224 (IMAP 4.1 BETA, and possibly other versions, does not properly handle ...)
	TODO: check
CVE-1999-1221 (dxchpwd in Digital Unix (OSF/1) 3.x allows local users to modify ...)
	TODO: check
CVE-1999-1220 (Majordomo 1.94.3 and earlier allows remote attackers to execute ...)
	TODO: check
CVE-1999-1219 (Vulnerability in sgihelp in the SGI help system and print manager in ...)
	TODO: check
CVE-1999-1218 (Vulnerability in finger in Commodore Amiga UNIX 2.1p2a and earlier ...)
	TODO: check
CVE-1999-1216 (Cisco routers 9.17 and earlier allow remote attackers to bypass ...)
	TODO: check
CVE-1999-1213 (Vulnerability in telnet service in HP-UX 10.30 allows attackers to ...)
	TODO: check
CVE-1999-1212 (Vulnerability in in.rlogind in SunOS 4.0.3 and 4.0.3c allows local ...)
	TODO: check
CVE-1999-1211 (Vulnerability in in.telnetd in SunOS 4.1.1 and earlier allows local ...)
	TODO: check
CVE-1999-1210 (xterm in Digital UNIX 4.0B *with* patch kit 5 allows local users to ...)
	TODO: check
CVE-1999-1207 (Buffer overflow in web-admin tool in NetXRay 2.6 allows remote ...)
	TODO: check
CVE-1999-1206 (SystemSoft SystemWizard package in HP Pavilion PC with Windows 98, and ...)
	TODO: check
CVE-1999-1202 (StarTech (1) POP3 proxy server and (2) telnet server allows remote ...)
	TODO: check
CVE-1999-1200 (Vintra SMTP MailServer allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1196 (Hummingbird Exceed X version 5 allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1195 (NAI VirusScan NT 4.0.2 does not properly modify the scan.dat virus ...)
	TODO: check
CVE-1999-1190 (Buffer overflow in POP3 server of Admiral Systems EmailClub 1.05 ...)
	TODO: check
CVE-1999-1187 (Pine before version 3.94 allows local users to gain privileges via a ...)
	TODO: check
CVE-1999-1186 (rxvt, when compiled with the PRINT_PIPE option in various Linux ...)
	TODO: check
CVE-1999-1185 (Buffer overflow in SCO mscreen allows local users to gain root ...)
	TODO: check
CVE-1999-1184 (Buffer overflow in Elm 2.4 and earlier allows local users to gain ...)
	TODO: check
CVE-1999-1183 (System Manager sysmgr GUI in SGI IRIX 6.4 and 6.3 allows remote ...)
	TODO: check
CVE-1999-1182 (Buffer overflow in run-time linkers (1) ld.so or (2) ld-linux.so for ...)
	TODO: check
CVE-1999-1180 (O'Reilly WebSite 1.1e and Website Pro 2.0 allows remote attackers to ...)
	TODO: check
CVE-1999-1179 (Vulnerability in man.sh CGI script, included in May 1998 issue of ...)
	TODO: check
CVE-1999-1178 (Sambar Server 4.1 beta allows remote attackers to obtain sensitive ...)
	TODO: check
CVE-1999-1176 (Buffer overflow in cidentd ident daemon allows local users to gain ...)
	TODO: check
CVE-1999-1174 (ZIP drive for Iomega ZIP-100 disks allows attackers with physical ...)
	TODO: check
CVE-1999-1173 (Corel Word Perfect 8 for Linux creates a temporary working directory ...)
	TODO: check
CVE-1999-1172 (By design, Maximizer Enterprise 4 calendar and address book program ...)
	TODO: check
CVE-1999-1171 (IPswitch WS_FTP allows local users to gain additional privileges and ...)
	TODO: check
CVE-1999-1170 (IPswitch IMail allows local users to gain additional privileges and ...)
	TODO: check
CVE-1999-1169 (nobo 1.2 allows remote attackers to cause a denial of service (crash) ...)
	TODO: check
CVE-1999-1168 (install.iss installation script for Internet Security Scanner (ISS) ...)
	TODO: check
CVE-1999-1166 (Linux 2.0.37 does not properly encode the Custom segment limit, which ...)
	TODO: check
CVE-1999-1165 (GNU fingerd 1.37 does not properly drop privileges before accessing ...)
	TODO: check
CVE-1999-1164 (Microsoft Outlook client allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1158 (Buffer overflow in (1) pluggable authentication module (PAM) on ...)
	TODO: check
CVE-1999-1155 (LakeWeb Mail List CGI script allows remote attackers to execute ...)
	TODO: check
CVE-1999-1154 (LakeWeb Filemail CGI script allows remote attackers to execute ...)
	TODO: check
CVE-1999-1153 (HAMcards Postcard CGI script 1.0 allows remote attackers to execute ...)
	TODO: check
CVE-1999-1152 (Compaq/Microcom 6000 Access Integrator does not disconnect a client ...)
	TODO: check
CVE-1999-1151 (Compaq/Microcom 6000 Access Integrator does not cause a session ...)
	TODO: check
CVE-1999-1150 (Livingston Portmaster routers running ComOS use the same initial ...)
	TODO: check
CVE-1999-1149 (Buffer overflow in CSM Proxy 4.1 allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1141 (Ascom Timeplex router allows remote attackers to obtain sensitive ...)
	TODO: check
CVE-1999-1135 (Vulnerability in VUE 3.0 in HP 9.x allows local users to gain root ...)
	TODO: check
CVE-1999-1134 (Vulnerability in Vue 3.0 in HP 9.x allows local users to gain root ...)
	TODO: check
CVE-1999-1133 (HP-UX 9.x and 10.x running X windows may allow local attackers to gain ...)
	TODO: check
CVE-1999-1130 (Default configuration of the search engine in Netscape Enterprise ...)
	TODO: check
CVE-1999-1129 (Cisco Catalyst 2900 Virtual LAN (VLAN) switches allow remote attackers ...)
	TODO: check
CVE-1999-1128 (Internet Explorer 3.01 on Windows 95 allows remote malicious web sites ...)
	TODO: check
CVE-1999-1126 (Cisco Resource Manager (CRM) 1.1 and earlier creates certain files ...)
	TODO: check
CVE-1999-1125 (Oracle Webserver 2.1 and earlier runs setuid root, but the ...)
	TODO: check
CVE-1999-1124 (HTTP Client application in ColdFusion allows remote attackers to ...)
	TODO: check
CVE-1999-1123 (The installation of Sun Source (sunsrc) tapes allows local users to ...)
	TODO: check
CVE-1999-1113 (Buffer overflow in Eudora Internet Mail Server (EIMS) 2.01 and earlier ...)
	TODO: check
CVE-1999-1112 (Buffer overflow in IrfanView32 3.07 and earlier allows attackers to ...)
	TODO: check
CVE-1999-1110 (Windows Media Player ActiveX object as used in Internet Explorer 5.0 ...)
	TODO: check
CVE-1999-1108
	REJECTED
CVE-1999-1107 (Buffer overflow in kppp in KDE allows local users to gain root access ...)
	TODO: check
CVE-1999-1106 (Buffer overflow in kppp in KDE allows local users to gain root access ...)
	TODO: check
CVE-1999-1101 (Kabsoftware Lydia utility uses weak encryption to store user passwords ...)
	TODO: check
CVE-1999-1097 (Microsoft NetMeeting 2.1 allows one client to read the contents of ...)
	TODO: check
CVE-1999-1096 (Buffer overflow in kscreensaver in KDE klock allows local users to ...)
	TODO: check
CVE-1999-1095 (sort creates temporary files and follows symbolic links, which allows ...)
	TODO: check
CVE-1999-1092 (tin 1.40 creates the .tin directory with insecure permissions, which ...)
	TODO: check
CVE-1999-1091 (UNIX news readers tin and rtin create the /tmp/.tin_log file with ...)
	TODO: check
CVE-1999-1089 (Buffer overflow in chfn command in HP-UX 9.X through 10.20 allows ...)
	TODO: check
CVE-1999-1088 (Vulnerability in chsh command in HP-UX 9.X through 10.20 allows local ...)
	TODO: check
CVE-1999-1086 (Novell 5 and earlier, when running over IPX with a packet signature ...)
	TODO: check
CVE-1999-1084 (The &quot;AEDebug&quot; registry key is installed with insecure permissions, ...)
	TODO: check
CVE-1999-1083 (Directory traversal vulnerability in Jana proxy web server 1.45 allows ...)
	TODO: check
CVE-1999-1082 (Directory traversal vulnerability in Jana proxy web server 1.40 allows ...)
	TODO: check
CVE-1999-1081 (Vulnerability in files.pl script in Novell WebServer Examples Toolkit ...)
	TODO: check
CVE-1999-1079 (Vulnerability in ptrace in AIX 4.3 allows local users to gain ...)
	TODO: check
CVE-1999-1078 (WS_FTP Pro 6.0 uses weak encryption for passwords in its ...)
	TODO: check
CVE-1999-1077 (Idle locking function in MacOS 9 allows local attackers to bypass the ...)
	TODO: check
CVE-1999-1076 (Idle locking function in MacOS 9 allows local users to bypass the ...)
	TODO: check
CVE-1999-1075 (inetd in AIX 4.1.5 dynamically assigns a port N when starting ...)
	TODO: check
CVE-1999-1073 (Excite for Web Servers (EWS) 1.1 records the first two characters of a ...)
	TODO: check
CVE-1999-1072 (Excite for Web Servers (EWS) 1.1 allows local users to gain privileges ...)
	TODO: check
CVE-1999-1071 (Excite for Web Servers (EWS) 1.1 installs the Architext.conf ...)
	TODO: check
CVE-1999-1070 (Buffer overflow in ping CGI program in Xylogics Annex terminal service ...)
	TODO: check
CVE-1999-1069 (Directory traversal vulnerability in carbo.dll in iCat Carbo Server ...)
	TODO: check
CVE-1999-1068 (Oracle Webserver 2.1, when serving PL/SQL stored procedures, allows ...)
	TODO: check
CVE-1999-1067 (SGI MachineInfo CGI program, installed by default on some web servers, ...)
	TODO: check
CVE-1999-1066 (Quake 1 server responds to an initial UDP game connection request with ...)
	TODO: check
CVE-1999-1065 (Palm Pilot HotSync Manager 3.0.4 in Windows 98 allows remote attackers ...)
	TODO: check
CVE-1999-1064 (Multiple buffer overflows in WindowMaker 0.52 through 0.60.0 allow ...)
	TODO: check
CVE-1999-1063 (CDomain whois_raw.cgi whois CGI script allows remote attackers to ...)
	TODO: check
CVE-1999-1062 (HP Laserjet printers with JetDirect cards, when configured with ...)
	TODO: check
CVE-1999-1061 (HP Laserjet printers with JetDirect cards, when configured with ...)
	TODO: check
CVE-1999-1060 (Buffer overflow in Tetrix TetriNet daemon 1.13.16 allows remote ...)
	TODO: check
CVE-1999-1058 (Buffer overflow in Vermillion FTP Daemon VFTPD 1.23 allows remote ...)
	TODO: check
CVE-1999-1056
	REJECTED
CVE-1999-1054 (The default configuration of FLEXlm license manager 6.0d, and possibly ...)
	TODO: check
CVE-1999-1053 (guestbook.pl cleanses user-inserted SSI commands by removing text ...)
	TODO: check
CVE-1999-1052 (Microsoft FrontPage stores form results in a default location in ...)
	TODO: check
CVE-1999-1051 (Default configuration in Matt Wright FormHandler.cgi script allows ...)
	TODO: check
CVE-1999-1050 (Directory traversal vulnerability in Matt Wright FormHandler.cgi ...)
	TODO: check
CVE-1999-1049 (ARCserve NT agents use weak encryption (XOR) for passwords, which ...)
	TODO: check
CVE-1999-1046 (Buffer overflow in IMonitor in IMail 5.0 allows remote attackers to ...)
	TODO: check
CVE-1999-1043 (Microsoft Exchange Server 5.5 and 5.0 does not properly handle (1) ...)
	TODO: check
CVE-1999-1042 (Cisco Resource Manager (CRM) 1.0 and 1.1 creates world-readable log ...)
	TODO: check
CVE-1999-1041 (Buffer overflow in mscreen on SCO OpenServer 5.0 and SCO UNIX 3.2v4 ...)
	TODO: check
CVE-1999-1040 (Vulnerabilities in (1) ipxchk and (2) ipxlink in NetWare Client 1.0 on ...)
	TODO: check
CVE-1999-1039 (Vulnerability in (1) diskalign and (2) diskperf in IRIX 6.4 patches ...)
	TODO: check
CVE-1999-1038 (Tiger 2.2.3 allows local users to overwrite arbitrary files via a ...)
	TODO: check
CVE-1999-1036 (COPS 1.04 allows local users to overwrite or create arbitrary files ...)
	TODO: check
CVE-1999-1033 (Microsoft Outlook Express before 4.72.3612.1700 allows a malicious ...)
	TODO: check
CVE-1999-1031 (counter.exe 2.70 allows a remote attacker to cause a denial of service ...)
	TODO: check
CVE-1999-1030 (counter.exe 2.70 allows a remote attacker to cause a denial of ...)
	TODO: check
CVE-1999-1029 (SSH server (sshd2) before 2.0.12 does not properly record login ...)
	TODO: check
CVE-1999-1026 (aspppd on Solaris 2.5 x86 allows local users to modify arbitrary files ...)
	TODO: check
CVE-1999-1025 (CDE screen lock program (screenlock) on Solaris 2.6 does not properly ...)
	TODO: check
CVE-1999-1024 (ip_print procedure in Tcpdump 3.4a allows remote attackers to cause a ...)
	TODO: check
CVE-1999-1023 (useradd in Solaris 7.0 does not properly interpret certain date ...)
	TODO: check
CVE-1999-1022 (serial_ports administrative program in IRIX 4.x and 5.x trusts the ...)
	TODO: check
CVE-1999-1020 (The installation of Novell Netware NDS 5.99 provides an ...)
	TODO: check
CVE-1999-1018 (IPChains in Linux kernels 2.2.10 and earlier does not reassemble IP ...)
	TODO: check
CVE-1999-1017 (Seattle Labs Emurl 2.0, and possibly earlier versions, stores e-mail ...)
	TODO: check
CVE-1999-1016 (Microsoft HTML control as used in (1) Internet Explorer 5.0, (2) ...)
	TODO: check
CVE-1999-1015 (Buffer overflow in Apple AppleShare Mail Server 5.0.3 on MacOS 8.1 and ...)
	TODO: check
CVE-1999-1013 (named-xfer in AIX 4.1.5 and 4.2.1 allows members of the system group ...)
	TODO: check
CVE-1999-1012 (SMTP component of Lotus Domino 4.6.1 on AS/400, and possibly other ...)
	TODO: check
CVE-1999-1009 (The Disney Go Express Search allows remote attackers to access and ...)
	TODO: check
CVE-1999-1006 (Groupwise web server GWWEB.EXE allows remote attackers to determine ...)
	TODO: check
CVE-1999-1003 (War FTP Daemon 1.70 allows remote attackers to cause a denial of ...)
	TODO: check
CVE-1999-1002 (Netscape Navigator uses weak encryption for storing a user's Netscape ...)
	TODO: check
CVE-1999-0993 (Modifications to ACLs (Access Control Lists) in Microsoft Exchange  ...)
	TODO: check
CVE-1999-0990 (Error messages generated by gdm with the VerboseAuth setting allows an ...)
	TODO: check
CVE-1999-0988 (UnixWare pkgtrans allows local users to read arbitrary files via a ...)
	TODO: check
CVE-1999-0985 (CC Whois program whois.cgi allows remote attackers to execute commands ...)
	TODO: check
CVE-1999-0984 (Matt's Whois program whois.cgi allows remote attackers to ...)
	TODO: check
CVE-1999-0983 (Whois Internic Lookup program whois.cgi allows remote attackers to ...)
	TODO: check
CVE-1999-0970 (The OmniHTTPD visadmin.exe program allows a remote attacker to conduct ...)
	TODO: check
CVE-1999-0952 (Buffer overflow in Solaris lpstat via class argument allows local ...)
	TODO: check
CVE-1999-0949 (Buffer overflow in canuum program for Canna input system allows local ...)
	TODO: check
CVE-1999-0948 (Buffer overflow in uum program for Canna input system allows local ...)
	TODO: check
CVE-1999-0944 (IBM WebSphere ikeyman tool uses weak encryption to store ...)
	TODO: check
CVE-1999-0941 (Mutt mail client allows a remote attacker to execute commands via ...)
	TODO: check
CVE-1999-0929 (Novell NetWare with Novell-HTTP-Server or YAWN web servers allows ...)
	TODO: check
CVE-1999-0926 (Apache allows remote attackers to conduct a denial of service via a ...)
	TODO: check
CVE-1999-0925 (UnityMail allows remote attackers to conduct a denial of service via a ...)
	TODO: check
CVE-1999-0923 (Sample runnable code snippets in ColdFusion Server 4.0 allow remote ...)
	TODO: check
CVE-1999-0919 (A memory leak in a Motorola CableRouter allows remote attackers to ...)
	TODO: check
CVE-1999-0913 (dfire.cgi script in Dragon-Fire IDS allows remote users to execute ...)
	TODO: check
CVE-1999-0911 (Buffer overflow in ProFTPD, wu-ftpd, and beroftpd allows remote ...)
	TODO: check
CVE-1999-0910 (Microsoft Site Server and Commercial Internet System (MCIS) do not set ...)
	TODO: check
CVE-1999-0885 (Alibaba web server allows remote attackers to execute commands via a ...)
	TODO: check
CVE-1999-0882 (Falcon web server allows remote attackers to determine the absolute ...)
	TODO: check
CVE-1999-0872 (Buffer overflow in Vixie cron allows local users to gain root access ...)
	TODO: check
CVE-1999-0863 (Buffer overflow in FreeBSD seyon via HOME environmental variable, ...)
	TODO: check
CVE-1999-0862 (Insecure directory permissions in RPM distribution for PostgreSQL ...)
	TODO: check
CVE-1999-0860 (Solaris chkperm allows local users to read files owned by bin via ...)
	TODO: check
CVE-1999-0857 (FreeBSD gdc program allows local users to modify files via a symlink ...)
	TODO: check
CVE-1999-0855 (Buffer overflow in FreeBSD gdc program. ...)
	TODO: check
CVE-1999-0852 (IBM WebSphere sets permissions that allow a local user to modify a ...)
	TODO: check
CVE-1999-0850 (The default permissions for Endymion MailMan allow local users to read ...)
	TODO: check
CVE-1999-0846 (Denial of service in MDaemon 2.7 via a large number of connection ...)
	TODO: check
CVE-1999-0845 (Buffer overflow in SCO su program allows local users to gain root ...)
	TODO: check
CVE-1999-0844 (Denial of service in MDaemon WorldClient and WebConfig services via ...)
	TODO: check
CVE-1999-0843 (Denial of service in Cisco routers running NAT via a PORT command from ...)
	TODO: check
CVE-1999-0841 (Buffer overflow in CDE mailtool allows local users to gain root ...)
	TODO: check
CVE-1999-0840 (Buffer overflow in CDE dtmail and dtmailpr programs allows local users ...)
	TODO: check
CVE-1999-0830 (Buffer overflow in SCO UnixWare Xsco command via a long argument. ...)
	TODO: check
CVE-1999-0829 (HP Secure Web Console uses weak encryption. ...)
	TODO: check
CVE-1999-0828 (UnixWare pkg commands such as pkginfo, pkgcat, and pkgparam ...)
	TODO: check
CVE-1999-0827 (By default, Internet Explorer 5.0 and other versions enables the ...)
	TODO: check
CVE-1999-0825 (The default permissions for UnixWare /var/mail allow local users to ...)
	TODO: check
CVE-1999-0822 (Buffer overflow in Qpopper (qpop) 3.0 allows remote root access via ...)
	TODO: check
CVE-1999-0821 (FreeBSD seyon allows local users to gain privileges by providing a ...)
	TODO: check
CVE-1999-0818 (Buffer overflow in Solaris kcms_configure via a long NETPATH ...)
	TODO: check
CVE-1999-0816 (The Motorola CableRouter allows any remote user to connect to and ...)
	TODO: check
CVE-1999-0808 (Multiple buffer overflows in ISC DHCP Distribution server (dhcpd) 1.0 ...)
	TODO: check
CVE-1999-0805 (Novell NetWare Transaction Tracking System (TTS) in Novell 4.11 and ...)
	TODO: check
CVE-1999-0798 (Buffer overflow in bootpd on OpenBSD, FreeBSD, and Linux systems via ...)
	TODO: check
CVE-1999-0795 (The NIS+ rpc.nisd server allows remote attackers to execute certain ...)
	TODO: check
CVE-1999-0792 (ROUTERmate has a default SNMP community name which allows remote ...)
	TODO: check
CVE-1999-0784 (Denial of service in Oracle TNSLSNR SQL*Net Listener via a malformed ...)
	TODO: check
CVE-1999-0776 (Alibaba HTTP server allows remote attackers to read files via a ...)
	TODO: check
CVE-1999-0767 (Buffer overflow in Solaris libc, ufsrestore, and rcp via LC_MESSAGES ...)
	TODO: check
CVE-1999-0757 (The ColdFusion CFCRYPT program for encrypting CFML templates has weak ...)
	TODO: check
CVE-1999-0750 (Hotmail allows Javascript to be executed via the HTML STYLE tag, ...)
	TODO: check
CVE-1999-0748 (Buffer overflows in Red Hat net-tools package. ...)
	TODO: check
CVE-1999-0741 (QMS CrownNet Unix Utilities for 2060 allows root to log on without a ...)
	TODO: check
CVE-1999-0739 (The codebrws.asp sample file in IIS and Site Server allows remote ...)
	TODO: check
CVE-1999-0738 (The code.asp sample file in IIS and Site Server allows remote ...)
	TODO: check
CVE-1999-0737 (The viewcode.asp sample file in IIS and Site Server allows remote ...)
	TODO: check
CVE-1999-0736 (The showcode.asp sample file in IIS and Site Server allows remote ...)
	TODO: check
CVE-1999-0712 (A vulnerability in Caldera Open Administration System (COAS) allows ...)
	TODO: check
CVE-1999-0698 (Denial of service in IP protocol logger (ippl) on Red Hat and Debian ...)
	TODO: check
CVE-1999-0684 (Denial of service in Sendmail 8.8.6 in HPUX. ...)
	TODO: check
CVE-1999-0677 (The WebRamp web administration utility has a default password. ...)
	TODO: check
CVE-1999-0673 (Buffer overflow in ALMail32 POP3 client via From: or To: headers. ...)
	TODO: check
CVE-1999-0670 (Buffer overflow in the Eyedog ActiveX control allows a remote attacker ...)
	TODO: check
CVE-1999-0669 (The Eyedog ActiveX control is marked as &quot;safe for scripting&quot; for ...)
	TODO: check
CVE-1999-0667 (The ARP protocol allows any host to spoof ARP replies and poison the ...)
	TODO: check
CVE-1999-0665 (An application-critical Windows NT registry key has an inappropriate ...)
	TODO: check
CVE-1999-0664 (An application-critical Windows NT registry key has inappropriate ...)
	TODO: check
CVE-1999-0663 (A system-critical program, library, or file has a checksum or other ...)
	TODO: check
CVE-1999-0662 (A system-critical program or library does not have the appropriate ...)
	TODO: check
CVE-1999-0661 (A system is running a version of software that was replaced with a ...)
	TODO: check
CVE-1999-0660 (A hacker utility, back door, or Trojan Horse is installed on a system, ...)
	TODO: check
CVE-1999-0659 (A Windows NT Primary Domain Controller (PDC) or Backup Domain ...)
	TODO: check
CVE-1999-0658 (DCOM is running. ...)
	TODO: check
CVE-1999-0657 (WinGate is being used. ...)
	TODO: check
CVE-1999-0656 (The ugidd service is running. ...)
	TODO: check
CVE-1999-0655 (A service may include useful information in its banner or help ...)
	TODO: check
CVE-1999-0654 (The OS/2 or POSIX subsystem in NT is enabled. ...)
	TODO: check
CVE-1999-0653 (A component service related to NIS+ is running. ...)
	TODO: check
CVE-1999-0652 (A database service is running, e.g. a SQL server, Oracle, or mySQL. ...)
	TODO: check
CVE-1999-0651 (The rsh/rlogin service is running. ...)
	TODO: check
CVE-1999-0650 (The netstat service is running. ...)
	TODO: check
CVE-1999-0649 (The FSP service is running. ...)
	TODO: check
CVE-1999-0648 (The X25 service is running. ...)
	TODO: check
CVE-1999-0647 (The bootparam (bootparamd) service is running. ...)
	TODO: check
CVE-1999-0646 (The LDAP service is running. ...)
	TODO: check
CVE-1999-0645 (The IRC service is running. ...)
	TODO: check
CVE-1999-0644 (The NNTP news service is running. ...)
	TODO: check
CVE-1999-0643 (The IMAP service is running. ...)
	TODO: check
CVE-1999-0642 (A POP service is running. ...)
	TODO: check
CVE-1999-0641 (The UUCP service is running. ...)
	TODO: check
CVE-1999-0640 (The Gopher service is running. ...)
	TODO: check
CVE-1999-0639 (The chargen service is running. ...)
	TODO: check
CVE-1999-0638 (The daytime service is running. ...)
	TODO: check
CVE-1999-0637 (The systat service is running. ...)
	TODO: check
CVE-1999-0636 (The discard service is running. ...)
	TODO: check
CVE-1999-0635 (The echo service is running. ...)
	TODO: check
CVE-1999-0634 (The SSH service is running. ...)
	TODO: check
CVE-1999-0633 (The HTTP/WWW service is running. ...)
	TODO: check
CVE-1999-0632 (The RPC portmapper service is running. ...)
	TODO: check
CVE-1999-0631 (The NFS service is running. ...)
	TODO: check
CVE-1999-0630 (The NT Alerter and Messenger services are running. ...)
	TODO: check
CVE-1999-0629 (The ident/identd service is running. ...)
	TODO: check
CVE-1999-0625 (The rpc.rquotad service is running. ...)
	TODO: check
CVE-1999-0624 (The rstat/rstatd service is running. ...)
	TODO: check
CVE-1999-0623 (The X Windows service is running. ...)
	TODO: check
CVE-1999-0622 (A component service related to DNS service is running. ...)
	TODO: check
CVE-1999-0621 (A component service related to NETBIOS is running. ...)
	TODO: check
CVE-1999-0620 (A component service related to NIS is running. ...)
	TODO: check
CVE-1999-0619 (The Telnet service is running. ...)
	TODO: check
CVE-1999-0618 (The rexec service is running. ...)
	TODO: check
CVE-1999-0617 (The SMTP service is running. ...)
	TODO: check
CVE-1999-0616 (The TFTP service is running. ...)
	TODO: check
CVE-1999-0615 (The SNMP service is running. ...)
	TODO: check
CVE-1999-0614 (The FTP service is running. ...)
	TODO: check
CVE-1999-0613 (The rpc.sprayd service is running. ...)
	TODO: check
CVE-1999-0611 (A system-critical Windows NT registry key has an inappropriate value. ...)
	TODO: check
CVE-1999-0610 (An incorrect configuration of the Webcart CGI program ...)
	TODO: check
CVE-1999-0609 (An incorrect configuration of the SoftCart CGI program ...)
	TODO: check
CVE-1999-0607 (An incorrect configuration of the QuikStore shopping cart  ...)
	TODO: check
CVE-1999-0606 (An incorrect configuration of the EZMall 2000 shopping cart  ...)
	TODO: check
CVE-1999-0605 (An incorrect configuration of the Order Form 1.0 shopping cart  ...)
	TODO: check
CVE-1999-0604 (An incorrect configuration of the WebStore 1.0 shopping cart ...)
	TODO: check
CVE-1999-0603 (In Windows NT, an inappropriate user is a member of a group, ...)
	TODO: check
CVE-1999-0602 (A network intrusion detection system (IDS) does not properly ...)
	TODO: check
CVE-1999-0601 (A network intrusion detection system (IDS) does not properly handle ...)
	TODO: check
CVE-1999-0600 (A network intrusion detection system (IDS) does not verify the ...)
	TODO: check
CVE-1999-0599 (A network intrusion detection system (IDS) does not properly handle ...)
	TODO: check
CVE-1999-0598 (A network intrusion detection system (IDS) does not properly handle ...)
	TODO: check
CVE-1999-0597 (A Windows NT account policy does not forcibly disconnect remote users ...)
	TODO: check
CVE-1999-0596 (A Windows NT log file has an inappropriate maximum size or retention ...)
	TODO: check
CVE-1999-0595 (A Windows NT system does not clear the system page file during ...)
	TODO: check
CVE-1999-0594 (A Windows NT system does not restrict access to removable media drives ...)
	TODO: check
CVE-1999-0593 (A user is allowed to shut down a Windows NT system without logging in. ...)
	TODO: check
CVE-1999-0592 (The Logon box of a Windows NT system displays the name of the last ...)
	TODO: check
CVE-1999-0591 (An event log in Windows NT has inappropriate access permissions. ...)
	TODO: check
CVE-1999-0590 (A system does not present an appropriate legal message or warning to a ...)
	TODO: check
CVE-1999-0589 (A system-critical Windows NT registry key has inappropriate ...)
	TODO: check
CVE-1999-0588 (A filter in a router or firewall allows unusual fragmented packets. ...)
	TODO: check
CVE-1999-0587 (A WWW server is not running in a restricted file system, e.g. through ...)
	TODO: check
CVE-1999-0586 (A network service is running on a nonstandard port. ...)
	TODO: check
CVE-1999-0585 (A Windows NT administrator account has the default name of ...)
	TODO: check
CVE-1999-0584 (A Windows NT file system is not NTFS. ...)
	TODO: check
CVE-1999-0583 (There is a one-way or two-way trust relationship between Windows NT ...)
	TODO: check
CVE-1999-0582 (A Windows NT account policy has inappropriate, security-critical ...)
	TODO: check
CVE-1999-0581 (The HKEY_CLASSES_ROOT key in a Windows NT system has inappropriate, ...)
	TODO: check
CVE-1999-0580 (The HKEY_LOCAL_MACHINE key in a Windows NT system has inappropriate, ...)
	TODO: check
CVE-1999-0579 (A Windows NT system's registry audit policy does not log an event ...)
	TODO: check
CVE-1999-0578 (A Windows NT system's registry audit policy does not log an event ...)
	TODO: check
CVE-1999-0577 (A Windows NT system's file audit policy does not log an event success ...)
	TODO: check
CVE-1999-0576 (A Windows NT system's file audit policy does not log an event success ...)
	TODO: check
CVE-1999-0575 (A Windows NT system's user audit policy does not log an event success ...)
	TODO: check
CVE-1999-0572 (.reg files are associated with the Windows NT registry editor ...)
	TODO: check
CVE-1999-0571 (A router's configuration service or management interface (such as a ...)
	TODO: check
CVE-1999-0570 (Windows NT is not using a password filter utility, e.g. PASSFILT.DLL. ...)
	TODO: check
CVE-1999-0569 (A URL for a WWW directory allows auto-indexing, which provides a list ...)
	TODO: check
CVE-1999-0568 (rpc.admind in Solaris is not running in a secure mode. ...)
	TODO: check
CVE-1999-0565 (A Sendmail alias allows input to be piped to a program. ...)
	TODO: check
CVE-1999-0564 (An attacker can force a printer to print arbitrary documents (e.g. if ...)
	TODO: check
CVE-1999-0562 (The registry in Windows NT can be accessed remotely by users who are ...)
	TODO: check
CVE-1999-0561 (IIS has the #exec function enabled for Server Side Include (SSI) files. ...)
	TODO: check
CVE-1999-0560 (A system-critical Windows NT file or directory has inappropriate ...)
	TODO: check
CVE-1999-0559 (A system-critical Unix file or directory has inappropriate ...)
	- webmin 1.160-1
CVE-1999-0556 (Two or more Unix accounts have the same UID. ...)
	TODO: check
CVE-1999-0555 (A Unix account with a name other than &quot;root&quot; has UID 0, i.e. root ...)
	TODO: check
CVE-1999-0554 (NFS exports system-critical data to the world, e.g. / or a password ...)
	TODO: check
CVE-1999-0550 (A router's routing tables can be obtained from arbitrary hosts. ...)
	TODO: check
CVE-1999-0549 (Windows NT automatically logs in an administrator upon rebooting. ...)
	TODO: check
CVE-1999-0548 (A superfluous NFS server is running, but it is not importing or exporting ...)
	TODO: check
CVE-1999-0547 (An SSH server allows authentication through the .rhosts file. ...)
	TODO: check
CVE-1999-0546 (The Windows NT guest account is enabled. ...)
	TODO: check
CVE-1999-0541 (A password for accessing a WWW URL is guessable. ...)
	TODO: check
CVE-1999-0539 (A trust relationship exists between two Unix hosts. ...)
	TODO: check
CVE-1999-0537 (A configuration in a web browser such as Internet Explorer or Netscape ...)
	TODO: check
CVE-1999-0535 (A Windows NT account policy for passwords has inappropriate, ...)
	TODO: check
CVE-1999-0534 (A Windows NT user has inappropriate rights or privileges, e.g. Act as ...)
	TODO: check
CVE-1999-0533 (A DNS server allows inverse queries. ...)
	TODO: check
CVE-1999-0532 (A DNS server allows zone transfers. ...)
	TODO: check
CVE-1999-0531 (An SMTP service supports EXPN, VRFY, HELP, ESMTP, and/or EHLO. ...)
	TODO: check
CVE-1999-0530 (A system is operating in &quot;promiscuous&quot; mode which allows it to perform ...)
	TODO: check
CVE-1999-0529 (A router or firewall forwards packets that claim to come from IANA ...)
	TODO: check
CVE-1999-0528 (A router or firewall forwards external packets that claim to come from ...)
	TODO: check
CVE-1999-0527 (The permissions for system-critical data in an anonymous FTP account ...)
	TODO: check
CVE-1999-0525 (IP traceroute is allowed from arbitrary hosts. ...)
	TODO: check
CVE-1999-0524 (ICMP information such as netmask and timestamp is allowed from ...)
	TODO: check
CVE-1999-0523 (ICMP echo (ping) is allowed from arbitrary hosts. ...)
	TODO: check
CVE-1999-0522 (The permissions for a system-critical NIS+ table (e.g. passwd) are ...)
	TODO: check
CVE-1999-0521 (An NIS domain name is easily guessable. ...)
	TODO: check
CVE-1999-0520 (A system-critical NETBIOS/SMB share has inappropriate access control. ...)
	TODO: check
CVE-1999-0519 (A NETBIOS/SMB share password is the default, null, or missing. ...)
	TODO: check
CVE-1999-0518 (A NETBIOS/SMB share password is guessable. ...)
	TODO: check
CVE-1999-0517 (An SNMP community name is the default (e.g. public), null, or ...)
	TODO: check
CVE-1999-0516 (An SNMP community name is guessable. ...)
	TODO: check
CVE-1999-0515 (An unrestricted remote trust relationship for Unix systems has been ...)
	TODO: check
CVE-1999-0512 (A mail server is explicitly configured to allow SMTP mail relay, which ...)
	TODO: check
CVE-1999-0511 (IP forwarding is enabled on a machine which is not a router or ...)
	TODO: check
CVE-1999-0510 (A router or firewall allows source routed packets from arbitrary ...)
	TODO: check
CVE-1999-0509 (Perl, sh, csh, or other shell interpreters are installed in the ...)
	TODO: check
CVE-1999-0508 (An account on a router, firewall, or other network device has a ...)
	TODO: check
CVE-1999-0507 (An account on a router, firewall, or other network device has a guessable ...)
	TODO: check
CVE-1999-0506 (A Windows NT domain user or administrator account has a default, null, ...)
	TODO: check
CVE-1999-0505 (A Windows NT domain user or administrator account has a guessable ...)
	TODO: check
CVE-1999-0504 (A Windows NT local user or administrator account has a default, null, ...)
	TODO: check
CVE-1999-0503 (A Windows NT local user or administrator account has a guessable ...)
	TODO: check
CVE-1999-0502 (A Unix account has a default, null, blank, or missing password. ...)
	TODO: check
CVE-1999-0501 (A Unix account has a guessable password. ...)
	TODO: check
CVE-1999-0499 (NETBIOS share information may be published through SNMP registry keys ...)
	TODO: check
CVE-1999-0498 (TFTP is not running in a restricted directory, allowing a remote ...)
	TODO: check
CVE-1999-0497 (Anonymous FTP is enabled. ...)
	TODO: check
CVE-1999-0495 (A remote attacker can gain access to a file system using ..  (dot dot) ...)
	TODO: check
CVE-1999-0492 (The ffingerd 1.19 allows remote attackers to identify users on the ...)
	TODO: check
CVE-1999-0490 (MSHTML.DLL in Internet Explorer 5.0 allows a remote attacker to learn ...)
	TODO: check
CVE-1999-0489 (MSHTML.DLL in Internet Explorer 5.0 allows a remote attacker to paste ...)
	TODO: check
CVE-1999-0488 (Internet Explorer 4.0 and 5.0 allows a remote attacker to execute ...)
	TODO: check
CVE-1999-0486 (Denial of service in AOL Instant Messenger when a remote attacker ...)
	TODO: check
CVE-1999-0480 (Local attackers can conduct a denial of service in Midnight Commander ...)
	TODO: check
CVE-1999-0477 (The Expression Evaluator in the ColdFusion Application Server allows a ...)
	TODO: check
CVE-1999-0476 (A weak encryption algorithm is used for passwords in SCO TermVision, ...)
	TODO: check
CVE-1999-0469 (Internet Explorer 5.0 allows window spoofing, allowing a remote ...)
	TODO: check
CVE-1999-0467 (The Webcom CGI Guestbook programs wguest.exe and rguest.exe allow a ...)
	TODO: check
CVE-1999-0465 (Remote attackers can crash Lynx and Internet Explorer using an IMG tag ...)
	TODO: check
CVE-1999-0462 (suidperl in Linux Perl does not check the nosuid mount option on file ...)
	TODO: check
CVE-1999-0461 (Versions of rpcbind including Linux, IRIX, and Wietse Venema's rpcbind ...)
	TODO: check
CVE-1999-0460 (Buffer overflow in Linux autofs module through long directory names ...)
	TODO: check
CVE-1999-0459 (Local users can perform a denial of service in Alpha Linux, using MILO ...)
	TODO: check
CVE-1999-0455 (The Expression Evaluator sample application in ColdFusion allows ...)
	TODO: check
CVE-1999-0454 (A remote attacker can sometimes identify the operating system of a ...)
	TODO: check
CVE-1999-0453 (An attacker can identify a CISCO device by sending a SYN packet to ...)
	TODO: check
CVE-1999-0452 (A service or application has a backdoor password that was placed there ...)
	TODO: check
CVE-1999-0451 (Denial of service in Linux 2.0.36 allows local users to prevent ...)
	TODO: check
CVE-1999-0450 (In IIS, an attacker could determine a real path using a request for a ...)
	TODO: check
CVE-1999-0444 (Remote attackers can perform a denial of service in Windows machines ...)
	TODO: check
CVE-1999-0443 (Patrol management software allows a remote attacker to conduct a ...)
	TODO: check
CVE-1999-0435 (MC/ServiceGuard and MC/LockManager in HP-UX allows local users to gain ...)
	TODO: check
CVE-1999-0434 (XFree86 xfs command is vulnerable to a symlink attack, allowing ...)
	TODO: check
CVE-1999-0431 (Linux 2.2.3 and earlier allow a remote attacker to perform an IP ...)
	TODO: check
CVE-1999-0427 (Eudora 4.1 allows remote attackers to perform a denial of service by ...)
	TODO: check
CVE-1999-0426 (The default permissions of /dev/kmem in Linux versions before 2.0.36 ...)
	TODO: check
CVE-1999-0419 (When the Microsoft SMTP service attempts to send a message to a server ...)
	TODO: check
CVE-1999-0418 (Denial of service in SMTP applications such as Sendmail, when a ...)
	TODO: check
CVE-1999-0411 (Several startup scripts in SCO OpenServer Enterprise System v 5.0.4p, ...)
	TODO: check
CVE-1999-0406 (Digital Unix Networker program nsralist has a buffer overflow which ...)
	TODO: check
CVE-1999-0401 (A race condition in Linux 2.2.1 allows local users to read arbitrary ...)
	TODO: check
CVE-1999-0400 (Denial of service in Linux 2.2.0 running the ldd command on a core ...)
	TODO: check
CVE-1999-0399 (The DCC server command in the Mirc 5.5 client doesn't filter ...)
	TODO: check
CVE-1999-0398 (In some instances of SSH 1.2.27 and 2.0.11 on Linux systems, SSH will ...)
	TODO: check
CVE-1999-0397 (The demo version of the Quakenbush NT Password Appraiser sends ...)
	TODO: check
CVE-1999-0394 (DPEC Online Courseware allows an attacker to change another user's ...)
	TODO: check
CVE-1999-0389 (Buffer overflow in the bootp server in the Debian Linux netstd ...)
	TODO: check
CVE-1999-0381 (super 3.11.6 and other versions have a buffer overflow in the syslog ...)
	TODO: check
CVE-1999-0370 (In Sun Solaris and SunOS, man and catman contain vulnerabilities ...)
	TODO: check
CVE-1999-0364 (Microsoft Access 97 stores a database password as plaintext in a ...)
	TODO: check
CVE-1999-0361 (NetWare version of LaserFiche stores usernames and passwords ...)
	TODO: check
CVE-1999-0360 (MS Site Server 2.0 with IIS 4 can allow users to upload content, ...)
	TODO: check
CVE-1999-0359 (ptylogin in Unix systems allows users to perform a denial of service ...)
	TODO: check
CVE-1999-0356 (ControlIT v4.5 and earlier uses weak encryption to store ...)
	TODO: check
CVE-1999-0354 (Internet Explorer 4.x or 5.x with Word 97 allows arbitrary execution ...)
	TODO: check
CVE-1999-0352 (ControlIT 4.5 and earlier (aka Remotely Possible) has weak password ...)
	TODO: check
CVE-1999-0347 (Internet Explorer 4.01 allows remote attackers to read local files and ...)
	TODO: check
CVE-1999-0345 (Jolt ICMP attack causes a denial of service in Windows 95 and Windows ...)
	TODO: check
CVE-1999-0336 (Buffer overflow in mstm in HP-UX allows local users to gain root ...)
	TODO: check
CVE-1999-0333 (HP OpenView Omniback allows remote execution of commands as root via ...)
	TODO: check
CVE-1999-0331 (Buffer overflow in Internet Explorer 4.0(1). ...)
	TODO: check
CVE-1999-0330 (Linux bdash game has a buffer overflow that allows local users to ...)
	TODO: check
CVE-1999-0319 (Buffer overflow in xmcd 2.1 allows local users to gain access ...)
	TODO: check
CVE-1999-0317 (Buffer overflow in Linux su command gives root access to local ...)
	TODO: check
CVE-1999-0307 (Buffer overflow in HP-UX cstm program allows local users to gain ...)
	TODO: check
CVE-1999-0306 (buffer overflow in HP xlock program. ...)
	TODO: check
CVE-1999-0298 (ypbind with -ypset and -ypsetme options activated in Linux Slackware ...)
	TODO: check
CVE-1999-0287 (Vulnerability in the Wguest CGI program. ...)
	TODO: check
CVE-1999-0286 (In some NT web servers, appending a space at the end of a URL may ...)
	TODO: check
CVE-1999-0285 (Denial of service in telnet from the Windows NT Resource Kit, by ...)
	TODO: check
CVE-1999-0284 (Denial of service to NT mail servers including Ipswitch, Mdaemon, and ...)
	TODO: check
CVE-1999-0283 (The Java Web Server would allow remote users to obtain the source ...)
	TODO: check
CVE-1999-0282
	REJECTED
CVE-1999-0271 (Progressive Networks Real Video server (pnserver) can be crashed remotely. ...)
	TODO: check
CVE-1999-0261 (Netmanager Chameleon SMTPd has several buffer overflows that cause a crash. ...)
	TODO: check
CVE-1999-0258 (Bonk variation of teardrop IP fragmentation denial of service. ...)
	TODO: check
CVE-1999-0257 (Nestea variation of teardrop IP fragmentation denial of service. ...)
	TODO: check
CVE-1999-0255 (Buffer overflow in ircd allows arbitrary command execution. ...)
	TODO: check
CVE-1999-0254 (A hidden SNMP community string in HP OpenView allows remote attackers ...)
	TODO: check
CVE-1999-0253 (IIS 3.0 with the iis-fix hotfix installed allows remote intruders to ...)
	TODO: check
CVE-1999-0250 (Denial of service in Qmail through long SMTP commands. ...)
	TODO: check
CVE-1999-0249 (Windows NT RSHSVC program allows remote users to execute arbitrary ...)
	TODO: check
CVE-1999-0246 (HP Remote Watch allows a remote user to gain root access. ...)
	TODO: check
CVE-1999-0243 (Linux cfingerd could be exploited to gain root access. ...)
	TODO: check
CVE-1999-0242 (Remote attackers can access mail files via POP3 in some Linux systems ...)
	TODO: check
CVE-1999-0241 (Guessable magic cookies in X Windows allows remote attackers to ...)
	TODO: check
CVE-1999-0240 (Some filters or firewalls allow fragmented SYN packets with IP ...)
	TODO: check
CVE-1999-0238 (php.cgi allows attackers to read any file on the system. ...)
	TODO: check
CVE-1999-0235 (Buffer overflow in NCSA WebServer (1.4.1 and below) gives remote access. ...)
	TODO: check
CVE-1999-0232 (Buffer overflow in NCSA WebServer (version 1.5c) gives remote access. ...)
	TODO: check
CVE-1999-0231 (Buffer overflow in IP-Switch IMail and Seattle Labs Slmail 2.6 ...)
	TODO: check
CVE-1999-0229 (Denial of service in Windows NT IIS server using ..\.. ...)
	TODO: check
CVE-1999-0226 (Windows NT TCP/IP processes fragmented IP packets improperly, causing ...)
	TODO: check
CVE-1999-0222 (Denial of service in Cisco IOS web server allows attackers to reboot ...)
	TODO: check
CVE-1999-0220 (Attackers can do a denial of service of IRC by crashing the server. ...)
	TODO: check
CVE-1999-0216 (Denial of service of inetd on Linux through SYN and RST packets. ...)
	TODO: check
CVE-1999-0213 (libnsl in Solaris allowed an attacker to perform a denial of service ...)
	TODO: check
CVE-1999-0205 (Denial of service in Sendmail 8.6.11 and 8.6.12. ...)
	TODO: check
CVE-1999-0200 (Windows NT FTP server (WFTP) with the guest account enabled without a ...)
	TODO: check
CVE-1999-0198 (finger .@host on some systems may print information on some user accounts. ...)
	TODO: check
CVE-1999-0197 (finger 0@host on some systems may print information on some user accounts. ...)
	TODO: check
CVE-1999-0195 (Denial of service in RPC portmapper allows attackers to register or ...)
	TODO: check
CVE-1999-0193 (Denial of service in Ascend and 3com routers, which can be rebooted by ...)
	TODO: check
CVE-1999-0187
	REJECTED
CVE-1999-0186 (In Solaris, an SNMP subagent has a default community string that allows remote ...)
	TODO: check
CVE-1999-0171 (Denial of service in syslog by sending it a large number of ...)
	TODO: check
CVE-1999-0169 (NFS allows attackers to read and write any file on the system by ...)
	TODO: check
CVE-1999-0165 (NFS cache poisoning. ...)
	TODO: check
CVE-1999-0163 (In older versions of Sendmail, an attacker could use a pipe character ...)
	TODO: check
CVE-1999-0156 (wu-ftpd FTP daemon allows any user and password combination. ...)
	TODO: check
CVE-1999-0154 (IIS 2.0 and 3.0 allows remote attackers to read the source code for ...)
	TODO: check
CVE-1999-0144 (Denial of service in Qmail by specifying a large number of recipients ...)
	TODO: check
CVE-1999-0140 (Denial of service in RAS/PPTP on NT systems. ...)
	TODO: check
CVE-1999-0127 (swinstall and swmodify commands in SD-UX package in HP-UX systems ...)
	TODO: check
CVE-1999-0123 (Race condition in Linux mailx command allows local users to ...)
	TODO: check
CVE-1999-0121 (Buffer overflow in dtaction command gives root access. ...)
	TODO: check
CVE-1999-0119 (Windows NT 4.0 beta allows users to read and delete shares. ...)
	TODO: check
CVE-1999-0114 (Local users can execute commands as other users, and read other users' ...)
	TODO: check
CVE-1999-0110
	REJECTED
CVE-1999-0107 (Buffer overflow in Apache 1.2.5 and earlier allows a remote attacker ...)
	TODO: check
CVE-1999-0106 (Finger redirection allows finger bombs. ...)
	TODO: check
CVE-1999-0105 (finger allows recursive searches by using a long string of @ symbols. ...)
	TODO: check
CVE-1999-0104 (A later variation on the Teardrop IP denial of service attack, ...)
	TODO: check
CVE-1999-0098 (Buffer overflow in SMTP HELO command in Sendmail allows a remote ...)
	TODO: check
CVE-1999-0092 (Various vulnerabilities in the AIX portmir command allows ...)
	TODO: check
CVE-1999-0089 (Buffer overflow in AIX libDtSvc library can allow local users ...)
	TODO: check
CVE-1999-0088 (IRIX and AIX automountd services (autofsd) allow remote users to ...)
	TODO: check
CVE-1999-0086 (AIX routed allows remote users to modify sensitive files. ...)
	TODO: check
CVE-1999-0078 (pcnfsd (aka rpc.pcnfsd) allows local users to change file permissions, ...)
	TODO: check
CVE-1999-0076 (Buffer overflow in wu-ftp from PASV command causes a core dump. ...)
	TODO: check
CVE-1999-0061 (File creation and deletion, and remote execution, in the BSD ...)
	TODO: check
CVE-1999-0033 (Command execution in Sun systems via buffer overflow in the at ...)
	TODO: check
CVE-1999-0030 (root privileges via buffer overflow in xlock command on SGI IRIX ...)
	TODO: check
CVE-1999-0020
	REJECTED
CVE-1999-0015 (Teardrop IP denial of service. ...)
	TODO: check
CVE-1999-0004 (MIME buffer overflow in email clients, e.g. Solaris mailtool ...)
	TODO: check
CVE-1999-0001 (Denial of service in BSD-derived TCP/IP implementations, as described ...)
	TODO: check

© 2014-2024 Faster IT GmbH | imprint | privacy policy