-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path1999.tsv
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 42.
1540 lines (1540 loc) · 249 KB
/
1999.tsv
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
CVE-1999-0001 2000-02-04 n/a ip_input.c in BSD-derived TCP/IP implementations allows remote attackers to cause a denial of service (crash or hang) via crafted packets.
CVE-1999-0002 1999-09-29 n/a Buffer overflow in NFS mountd gives root access to remote attackers, mostly in Linux systems.
CVE-1999-0003 1999-09-29 n/a Execute commands as root via buffer overflow in Tooltalk database server (rpc.ttdbserverd).
CVE-1999-0004 2000-02-04 n/a MIME buffer overflow in email clients, e.g. Solaris mailtool and Outlook.
CVE-1999-0005 1999-09-29 n/a Arbitrary command execution via IMAP buffer overflow in authenticate command.
CVE-1999-0006 1999-09-29 n/a Buffer overflow in POP servers based on BSD/Qualcomm's qpopper allows remote attackers to gain root access using a long PASS command.
CVE-1999-0007 1999-09-29 n/a Information from SSL-encrypted sessions via PKCS #1.
CVE-1999-0008 1999-09-29 n/a Buffer overflow in NIS+, in Sun's rpc.nisd program.
CVE-1999-0009 1999-09-29 n/a Inverse query buffer overflow in BIND 4.9 and BIND 8 Releases.
CVE-1999-0010 1999-09-29 n/a Denial of Service vulnerability in BIND 8 Releases via maliciously formatted DNS messages.
CVE-1999-0011 1999-09-29 n/a Denial of Service vulnerabilities in BIND 4.9 and BIND 8 Releases via CNAME record and zone transfer.
CVE-1999-0012 1999-09-29 n/a Some web servers under Microsoft Windows allow remote attackers to bypass access restrictions for files with long file names.
CVE-1999-0013 1999-09-29 n/a Stolen credentials from SSH clients via ssh-agent program, allowing other local users to access remote accounts belonging to the ssh-agent user.
CVE-1999-0014 1999-09-29 n/a Unauthorized privileged access or denial of service via dtappgather program in CDE.
CVE-1999-0015 2000-02-04 n/a Teardrop IP denial of service.
CVE-1999-0016 1999-09-29 n/a Land IP denial of service.
CVE-1999-0017 1999-09-29 n/a FTP servers can allow an attacker to connect to arbitrary ports on machines other than the FTP client, aka FTP bounce.
CVE-1999-0018 1999-09-29 n/a Buffer overflow in statd allows root privileges.
CVE-1999-0019 1999-09-29 n/a Delete or create a file via rpc.statd, due to invalid information.
CVE-1999-0021 1999-09-29 n/a Arbitrary command execution via buffer overflow in Count.cgi (wwwcount) cgi-bin program.
CVE-1999-0022 1999-09-29 n/a Local user gains root privileges via buffer overflow in rdist, via expstr() function.
CVE-1999-0023 1999-09-29 n/a Local user gains root privileges via buffer overflow in rdist, via lookup() function.
CVE-1999-0024 1999-09-29 n/a DNS cache poisoning via BIND, by predictable query IDs.
CVE-1999-0025 1999-09-29 n/a root privileges via buffer overflow in df command on SGI IRIX systems.
CVE-1999-0026 1999-09-29 n/a root privileges via buffer overflow in pset command on SGI IRIX systems.
CVE-1999-0027 1999-09-29 n/a root privileges via buffer overflow in eject command on SGI IRIX systems.
CVE-1999-0028 1999-09-29 n/a root privileges via buffer overflow in login/scheme command on SGI IRIX systems.
CVE-1999-0029 1999-09-29 n/a root privileges via buffer overflow in ordist command on SGI IRIX systems.
CVE-1999-0030 2000-02-04 n/a root privileges via buffer overflow in xlock command on SGI IRIX systems.
CVE-1999-0031 2000-06-02 n/a JavaScript in Internet Explorer 3.x and 4.x, and Netscape 2.x, 3.x and 4.x, allows remote attackers to monitor a user's web activities, aka the Bell Labs vulnerability.
CVE-1999-0032 1999-09-29 n/a Buffer overflow in lpr, as used in BSD-based systems including Linux, allows local users to execute arbitrary code as root via a long -C (classification) command line option.
CVE-1999-0033 2000-02-04 n/a Command execution in Sun systems via buffer overflow in the at program.
CVE-1999-0034 1999-09-29 n/a Buffer overflow in suidperl (sperl), Perl 4.x and 5.x.
CVE-1999-0035 1999-09-29 n/a Race condition in signal handling routine in ftpd, allowing read/write arbitrary files.
CVE-1999-0036 1999-09-29 n/a IRIX login program with a nonzero LOCKOUT parameter allows creation or damage to files.
CVE-1999-0037 1999-09-29 n/a Arbitrary command execution via metamail package using message headers, when user processes attacker's message using metamail.
CVE-1999-0038 1999-09-29 n/a Buffer overflow in xlock program allows local users to execute commands as root.
CVE-1999-0039 1999-09-29 n/a webdist CGI program (webdist.cgi) in SGI IRIX allows remote attackers to execute arbitrary commands via shell metacharacters in the distloc parameter.
CVE-1999-0040 1999-09-29 n/a Buffer overflow in Xt library of X Windowing System allows local users to execute commands with root privileges.
CVE-1999-0041 1999-09-29 n/a Buffer overflow in NLS (Natural Language Service).
CVE-1999-0042 1999-09-29 n/a Buffer overflow in University of Washington's implementation of IMAP and POP servers.
CVE-1999-0043 1999-09-29 n/a Command execution via shell metachars in INN daemon (innd) 1.5 using "newgroup" and "rmgroup" control messages, and others.
CVE-1999-0044 1999-09-29 n/a fsdump command in IRIX allows local users to obtain root access by modifying sensitive files.
CVE-1999-0045 1999-09-29 n/a List of arbitrary files on Web host via nph-test-cgi script.
CVE-1999-0046 1999-09-29 n/a Buffer overflow of rlogin program using TERM environmental variable.
CVE-1999-0047 1999-09-29 n/a MIME conversion buffer overflow in sendmail versions 8.8.3 and 8.8.4.
CVE-1999-0048 1999-09-29 n/a Talkd, when given corrupt DNS information, can be used to execute arbitrary commands with root privileges.
CVE-1999-0049 1999-09-29 n/a Csetup under IRIX allows arbitrary file creation or overwriting.
CVE-1999-0050 1999-09-29 n/a Buffer overflow in HP-UX newgrp program.
CVE-1999-0051 1999-09-29 n/a Arbitrary file creation and program execution using FLEXlm LicenseManager, from versions 4.0 to 5.0, in IRIX.
CVE-1999-0052 1999-09-29 n/a IP fragmentation denial of service in FreeBSD allows a remote attacker to cause a crash.
CVE-1999-0053 1999-09-29 n/a TCP RST denial of service in FreeBSD.
CVE-1999-0054 1999-09-29 n/a Sun's ftpd daemon can be subjected to a denial of service.
CVE-1999-0055 1999-09-29 n/a Buffer overflows in Sun libnsl allow root access.
CVE-1999-0056 1999-09-29 n/a Buffer overflow in Sun's ping program can give root access to local users.
CVE-1999-0057 1999-09-29 n/a Vacation program allows command execution by remote users through a sendmail command.
CVE-1999-0058 1999-09-29 n/a Buffer overflow in PHP cgi program, php.cgi allows shell access.
CVE-1999-0059 1999-09-29 n/a IRIX fam service allows an attacker to obtain a list of all files on the server.
CVE-1999-0060 1999-09-29 n/a Attackers can cause a denial of service in Ascend MAX and Pipeline routers with a malformed packet to the discard port, which is used by the Java Configurator tool.
CVE-1999-0061 2000-02-04 n/a File creation and deletion, and remote execution, in the BSD line printer daemon (lpd).
CVE-1999-0062 1999-09-29 n/a The chpass command in OpenBSD allows a local user to gain root access through file descriptor leakage.
CVE-1999-0063 1999-09-29 n/a Cisco IOS 12.0 and other versions can be crashed by malicious UDP packets to the syslog port.
CVE-1999-0064 1999-09-29 n/a Buffer overflow in AIX lquerylv program gives root access to local users.
CVE-1999-0065 1999-09-29 n/a Multiple buffer overflows in how dtmail handles attachments allows a remote attacker to execute commands.
CVE-1999-0066 1999-09-29 n/a AnyForm CGI remote execution.
CVE-1999-0067 1999-09-29 n/a phf CGI program allows remote command execution through shell metacharacters.
CVE-1999-0068 1999-09-29 n/a CGI PHP mylog script allows an attacker to read any file on the target server.
CVE-1999-0069 1999-09-29 n/a Solaris ufsrestore buffer overflow.
CVE-1999-0070 1999-09-29 n/a test-cgi program allows an attacker to list files on the server.
CVE-1999-0071 1999-09-29 n/a Apache httpd cookie buffer overflow for versions 1.1.1 and earlier.
CVE-1999-0072 1999-09-29 n/a Buffer overflow in AIX xdat gives root access to local users.
CVE-1999-0073 1999-09-29 n/a Telnet allows a remote client to specify environment variables including LD_LIBRARY_PATH, allowing an attacker to bypass the normal system libraries and gain root access.
CVE-1999-0074 1999-09-29 n/a Listening TCP ports are sequentially allocated, allowing spoofing attacks.
CVE-1999-0075 1999-09-29 n/a PASV core dump in wu-ftpd daemon when attacker uses a QUOTE PASV command after specifying a username and password.
CVE-1999-0076 2000-02-04 n/a Buffer overflow in wu-ftp from PASV command causes a core dump.
CVE-1999-0077 1999-09-29 n/a Predictable TCP sequence numbers allow spoofing.
CVE-1999-0078 2000-02-04 n/a pcnfsd (aka rpc.pcnfsd) allows local users to change file permissions, or execute arbitrary commands through arguments in the RPC call.
CVE-1999-0079 1999-09-29 n/a Remote attackers can cause a denial of service in FTP by issuing multiple PASV commands, causing the server to run out of available ports.
CVE-1999-0080 1999-09-29 n/a Certain configurations of wu-ftp FTP server 2.4 use a _PATH_EXECPATH setting to a directory with dangerous commands, such as /bin, which allows remote authenticated users to gain root access via the "site exec" command.
CVE-1999-0081 1999-09-29 n/a wu-ftp allows files to be overwritten via the rnfr command.
CVE-1999-0082 1999-09-29 n/a CWD ~root command in ftpd allows root access.
CVE-1999-0083 1999-09-29 n/a getcwd() file descriptor leak in FTP.
CVE-1999-0084 1999-09-29 n/a Certain NFS servers allow users to use mknod to gain privileges by creating a writable kmem device and setting the UID to 0.
CVE-1999-0085 1999-09-29 n/a Buffer overflow in rwhod on AIX and other operating systems allows remote attackers to execute arbitrary code via a UDP packet with a long hostname.
CVE-1999-0086 2000-02-04 n/a AIX routed allows remote users to modify sensitive files.
CVE-1999-0087 1999-09-29 n/a Denial of service in AIX telnet can freeze a system and prevent users from accessing the server.
CVE-1999-0088 2000-02-04 n/a IRIX and AIX automountd services (autofsd) allow remote users to execute root commands.
CVE-1999-0089 2000-02-04 n/a Buffer overflow in AIX libDtSvc library can allow local users to gain root access.
CVE-1999-0090 1999-09-29 n/a Buffer overflow in AIX rcp command allows local users to obtain root access.
CVE-1999-0091 1999-09-29 n/a Buffer overflow in AIX writesrv command allows local users to obtain root access.
CVE-1999-0092 2000-02-04 n/a Various vulnerabilities in the AIX portmir command allows local users to obtain root access.
CVE-1999-0093 1999-09-29 n/a AIX nslookup command allows local users to obtain root access by not dropping privileges correctly.
CVE-1999-0094 1999-09-29 n/a AIX piodmgrsu command allows local users to gain additional group privileges.
CVE-1999-0095 1999-09-29 n/a The debug command in Sendmail is enabled, allowing attackers to execute commands as root.
CVE-1999-0096 1999-09-29 n/a Sendmail decode alias can be used to overwrite sensitive files.
CVE-1999-0097 1999-09-29 n/a The AIX FTP client can be forced to execute commands from a malicious server through shell metacharacters (e.g. a pipe character).
CVE-1999-0098 2000-02-04 n/a Buffer overflow in SMTP HELO command in Sendmail allows a remote attacker to hide activities.
CVE-1999-0099 1999-09-29 n/a Buffer overflow in syslog utility allows local or remote attackers to gain root privileges.
CVE-1999-0100 1999-09-29 n/a Remote access in AIX innd 1.5.1, using control messages.
CVE-1999-0101 2000-01-18 n/a Buffer overflow in AIX and Solaris "gethostbyname" library call allows root access through corrupt DNS host names.
CVE-1999-0102 1999-09-29 n/a Buffer overflow in SLmail 3.x allows attackers to execute commands using a large FROM line.
CVE-1999-0103 1999-09-29 n/a Echo and chargen, or other combinations of UDP services, can be used in tandem to flood the server, a.k.a. UDP bomb or UDP packet storm.
CVE-1999-0104 2000-02-04 n/a A later variation on the Teardrop IP denial of service attack, a.k.a. Teardrop-2.
CVE-1999-0105 2000-02-04 n/a finger allows recursive searches by using a long string of @ symbols.
CVE-1999-0106 2000-02-04 n/a Finger redirection allows finger bombs.
CVE-1999-0107 2000-02-04 n/a Buffer overflow in Apache 1.2.5 and earlier allows a remote attacker to cause a denial of service with a large number of GET requests containing a large number of / characters.
CVE-1999-0108 1999-09-29 n/a The printers program in IRIX has a buffer overflow that gives root access to local users.
CVE-1999-0109 1999-09-29 n/a Buffer overflow in ffbconfig in Solaris 2.5.1.
CVE-1999-0111 1999-09-29 n/a RIP v1 is susceptible to spoofing.
CVE-1999-0112 1999-09-29 n/a Buffer overflow in AIX dtterm program for the CDE.
CVE-1999-0113 1999-09-29 n/a Some implementations of rlogin allow root access if given a -froot parameter.
CVE-1999-0114 2000-02-04 n/a Local users can execute commands as other users, and read other users' files, through the filter command in the Elm elm-2.4 mail package using a symlink attack.
CVE-1999-0115 2001-05-07 n/a AIX bugfiler program allows local users to gain root access.
CVE-1999-0116 1999-09-29 n/a Denial of service when an attacker sends many SYN packets to create multiple connections without ever sending an ACK to complete the connection, aka SYN flood.
CVE-1999-0117 1999-09-29 n/a AIX passwd allows local users to gain root access.
CVE-1999-0118 2000-06-02 n/a AIX infod allows local users to gain root access through an X display.
CVE-1999-0119 2000-02-04 n/a Windows NT 4.0 beta allows users to read and delete shares.
CVE-1999-0120 1999-09-29 n/a Sun/Solaris utmp file allows local users to gain root access if it is writable by users other than root.
CVE-1999-0121 2000-02-04 n/a Buffer overflow in dtaction command gives root access.
CVE-1999-0122 1999-09-29 n/a Buffer overflow in AIX lchangelv gives root access.
CVE-1999-0123 2000-02-04 n/a Race condition in Linux mailx command allows local users to read user files.
CVE-1999-0124 2000-06-02 n/a Vulnerabilities in UMN gopher and gopher+ versions 1.12 and 2.0x allow an intruder to read any files that can be accessed by the gopher daemon.
CVE-1999-0125 1999-09-29 n/a Buffer overflow in SGI IRIX mailx program.
CVE-1999-0126 1999-09-29 n/a SGI IRIX buffer overflow in xterm and Xaw allows root access.
CVE-1999-0127 2000-02-04 n/a swinstall and swmodify commands in SD-UX package in HP-UX systems allow local users to create or overwrite arbitrary files to gain root access.
CVE-1999-0128 1999-09-29 n/a Oversized ICMP ping packets can result in a denial of service, aka Ping o' Death.
CVE-1999-0129 1999-09-29 n/a Sendmail allows local users to write to a file and gain group permissions via a .forward or :include: file.
CVE-1999-0130 1999-09-29 n/a Local users can start Sendmail in daemon mode and gain root privileges.
CVE-1999-0131 1999-09-29 n/a Buffer overflow and denial of service in Sendmail 8.7.5 and earlier through GECOS field gives root access to local users.
CVE-1999-0132 1999-09-29 n/a Expreserve, as used in vi and ex, allows local users to overwrite arbitrary files and gain root access.
CVE-1999-0133 1999-09-29 n/a fm_fls license server for Adobe Framemaker allows local users to overwrite arbitrary files and gain root access.
CVE-1999-0134 1999-09-29 n/a vold in Solaris 2.x allows local users to gain root access.
CVE-1999-0135 1999-09-29 n/a admintool in Solaris allows a local user to write to arbitrary files and gain root access.
CVE-1999-0136 1999-09-29 n/a Kodak Color Management System (KCMS) on Solaris allows a local user to write to arbitrary files and gain root access.
CVE-1999-0137 1999-09-29 n/a The dip program on many Linux systems allows local users to gain root access via a buffer overflow.
CVE-1999-0138 1999-09-29 n/a The suidperl and sperl program do not give up root privileges when changing UIDs back to the original users, allowing root access.
CVE-1999-0139 1999-09-29 n/a Buffer overflow in Solaris x86 mkcookie allows local users to obtain root access.
CVE-1999-0140 2000-02-04 n/a Denial of service in RAS/PPTP on NT systems.
CVE-1999-0141 1999-09-29 n/a Java Bytecode Verifier allows malicious applets to execute arbitrary commands as the user of the applet.
CVE-1999-0142 2000-06-02 n/a The Java Applet Security Manager implementation in Netscape Navigator 2.0 and Java Developer's Kit 1.0 allows an applet to connect to arbitrary hosts.
CVE-1999-0143 1999-09-29 n/a Kerberos 4 key servers allow a user to masquerade as another by breaking and generating session keys.
CVE-1999-0144 2000-02-04 n/a Denial of service in Qmail by specifying a large number of recipients with the RCPT command.
CVE-1999-0145 2000-10-13 n/a Sendmail WIZ command enabled, allowing root access.
CVE-1999-0146 1999-09-29 n/a The campas CGI program provided with some NCSA web servers allows an attacker to execute arbitrary commands via encoded carriage return characters in the query string, as demonstrated by reading the password file.
CVE-1999-0147 1999-09-29 n/a The aglimpse CGI program of the Glimpse package allows remote execution of arbitrary commands.
CVE-1999-0148 1999-09-29 n/a The handler CGI program in IRIX allows arbitrary command execution.
CVE-1999-0149 1999-09-29 n/a The wrap CGI program in IRIX allows remote attackers to view arbitrary directory listings via a .. (dot dot) attack.
CVE-1999-0150 1999-09-29 n/a The Perl fingerd program allows arbitrary command execution from remote users.
CVE-1999-0151 2000-01-04 n/a The SATAN session key may be disclosed if the user points the web browser to other sites, possibly allowing root access.
CVE-1999-0152 1999-09-29 n/a The DG/UX finger daemon allows remote command execution through shell metacharacters.
CVE-1999-0153 1999-09-29 n/a Windows 95/NT out of band (OOB) data denial of service through NETBIOS port, aka WinNuke.
CVE-1999-0154 2001-09-12 n/a IIS 2.0 and 3.0 allows remote attackers to read the source code for ASP pages by appending a . (dot) to the end of the URL.
CVE-1999-0155 1999-09-29 n/a The ghostscript command with the -dSAFER option allows remote attackers to execute commands.
CVE-1999-0156 2000-02-04 n/a wu-ftpd FTP daemon allows any user and password combination.
CVE-1999-0157 1999-09-29 n/a Cisco PIX firewall and CBAC IP fragmentation attack results in a denial of service.
CVE-1999-0158 1999-09-29 n/a Cisco PIX firewall manager (PFM) on Windows NT allows attackers to connect to port 8080 on the PFM server and retrieve any file whose name and location is known.
CVE-1999-0159 1999-09-29 n/a Attackers can crash a Cisco IOS router or device, provided they can get to an interactive prompt (such as a login). This applies to some IOS 9.x, 10.x, and 11.x releases.
CVE-1999-0160 1999-09-29 n/a Some classic Cisco IOS devices have a vulnerability in the PPP CHAP authentication to establish unauthorized PPP connections.
CVE-1999-0161 1999-09-29 n/a In Cisco IOS 10.3, with the tacacs-ds or tacacs keyword, an extended IP access control list could bypass filtering.
CVE-1999-0162 1999-09-29 n/a The "established" keyword in some Cisco IOS software allowed an attacker to bypass filtering.
CVE-1999-0163 2000-02-04 n/a In older versions of Sendmail, an attacker could use a pipe character to execute root commands.
CVE-1999-0164 1999-09-29 n/a A race condition in the Solaris ps command allows an attacker to overwrite critical files.
CVE-1999-0165 2000-02-04 n/a NFS cache poisoning.
CVE-1999-0166 1999-09-29 n/a NFS allows users to use a "cd .." command to access other directories besides the exported file system.
CVE-1999-0167 1999-09-29 n/a In SunOS, NFS file handles could be guessed, giving unauthorized access to the exported file system.
CVE-1999-0168 1999-09-29 n/a The portmapper may act as a proxy and redirect service requests from an attacker, making the request appear to come from the local host, possibly bypassing authentication that would otherwise have taken place. For example, NFS file systems could be mounted through the portmapper despite export restrictions.
CVE-1999-0169 2000-02-04 n/a NFS allows attackers to read and write any file on the system by specifying a false UID.
CVE-1999-0170 1999-09-29 n/a Remote attackers can mount an NFS file system in Ultrix or OSF, even if it is denied on the access list.
CVE-1999-0171 2000-02-04 n/a Denial of service in syslog by sending it a large number of superfluous messages.
CVE-1999-0172 1999-09-29 n/a FormMail CGI program allows remote execution of commands.
CVE-1999-0173 1999-09-29 n/a FormMail CGI program can be used by web servers other than the host server that the program resides on.
CVE-1999-0174 1999-09-29 n/a The view-source CGI program allows remote attackers to read arbitrary files via a .. (dot dot) attack.
CVE-1999-0175 1999-09-29 n/a The convert.bas program in the Novell web server allows a remote attackers to read any file on the system that is internally accessible by the web server.
CVE-1999-0176 1999-09-29 n/a The Webgais program allows a remote user to execute arbitrary commands.
CVE-1999-0177 1999-09-29 n/a The uploader program in the WebSite web server allows a remote attacker to execute arbitrary programs.
CVE-1999-0178 1999-09-29 n/a Buffer overflow in the win-c-sample program (win-c-sample.exe) in the WebSite web server 1.1e allows remote attackers to execute arbitrary code via a long query string.
CVE-1999-0179 1999-09-29 n/a Windows NT crashes or locks up when a Samba client executes a "cd .." command on a file share.
CVE-1999-0180 1999-09-29 n/a in.rshd allows users to login with a NULL username and execute commands.
CVE-1999-0181 1999-09-29 n/a The wall daemon can be used for denial of service, social engineering attacks, or to execute remote commands.
CVE-1999-0182 1999-09-29 n/a Samba has a buffer overflow which allows a remote attacker to obtain root access by specifying a long password.
CVE-1999-0183 1999-09-29 n/a Linux implementations of TFTP would allow access to files outside the restricted directory.
CVE-1999-0184 1999-09-29 n/a When compiled with the -DALLOW_UPDATES option, bind allows dynamic updates to the DNS server, allowing for malicious modification of DNS records.
CVE-1999-0185 1999-09-29 n/a In SunOS or Solaris, a remote user could connect from an FTP server's data port to an rlogin server on a host that trusts the FTP server, allowing remote command execution.
CVE-1999-0186 2000-02-04 n/a In Solaris, an SNMP subagent has a default community string that allows remote attackers to execute arbitrary commands as root, or modify system parameters.
CVE-1999-0188 1999-09-29 n/a The passwd command in Solaris can be subjected to a denial of service.
CVE-1999-0189 2000-03-22 n/a Solaris rpcbind listens on a high numbered UDP port, which may not be filtered since the standard port number is 111.
CVE-1999-0190 1999-09-29 n/a Solaris rpcbind can be exploited to overwrite arbitrary files and gain root access.
CVE-1999-0191 1999-09-29 n/a IIS newdsn.exe CGI script allows remote users to overwrite files.
CVE-1999-0192 1999-09-29 n/a Buffer overflow in telnet daemon tgetent routing allows remote attackers to gain root access via the TERMCAP environmental variable.
CVE-1999-0193 2000-02-04 n/a Denial of service in Ascend and 3com routers, which can be rebooted by sending a zero length TCP option.
CVE-1999-0194 1999-09-29 n/a Denial of service in in.comsat allows attackers to generate messages.
CVE-1999-0195 2000-02-04 n/a Denial of service in RPC portmapper allows attackers to register or unregister RPC services or spoof RPC services using a spoofed source IP address such as 127.0.0.1.
CVE-1999-0196 1999-09-29 n/a websendmail in Webgais 1.0 allows a remote user to access arbitrary files and execute arbitrary code via the receiver parameter ($VAR_receiver variable).
CVE-1999-0197 2000-02-04 n/a finger 0@host on some systems may print information on some user accounts.
CVE-1999-0198 2000-02-04 n/a finger .@host on some systems may print information on some user accounts.
CVE-1999-0199 2020-10-06 n/a manual/search.texi in the GNU C Library (aka glibc) before 2.2 lacks a statement about the unspecified tdelete return value upon deletion of a tree's root, which might allow attackers to access a dangling pointer in an application whose developer was unaware of a documentation update from 1999.
CVE-1999-0200 2000-02-04 n/a Windows NT FTP server (WFTP) with the guest account enabled without a password allows an attacker to log into the FTP server using any username and password.
CVE-1999-0201 1999-09-29 n/a A quote cwd command on FTP servers can reveal the full path of the home directory of the "ftp" user.
CVE-1999-0202 1999-09-29 n/a The GNU tar command, when used in FTP sessions, may allow an attacker to execute arbitrary commands.
CVE-1999-0203 2000-04-25 n/a In Sendmail, attackers can gain root privileges via SMTP by specifying an improper "mail from" address and an invalid "rcpt to" address that would cause the mail to bounce to a program.
CVE-1999-0204 1999-09-29 n/a Sendmail 8.6.9 allows remote attackers to execute root commands, using ident.
CVE-1999-0205 2000-02-04 n/a Denial of service in Sendmail 8.6.11 and 8.6.12.
CVE-1999-0206 1999-09-29 n/a MIME buffer overflow in Sendmail 8.8.0 and 8.8.1 gives root access.
CVE-1999-0207 1999-09-29 n/a Remote attacker can execute commands through Majordomo using the Reply-To field and a "lists" command.
CVE-1999-0208 1999-09-29 n/a rpc.ypupdated (NIS) allows remote users to execute arbitrary commands.
CVE-1999-0209 1999-09-29 n/a The SunView (SunTools) selection_svc facility allows remote users to read files.
CVE-1999-0210 2000-06-02 n/a Automount daemon automountd allows local or remote users to gain privileges via shell metacharacters.
CVE-1999-0211 1999-09-29 n/a Extra long export lists over 256 characters in some mount daemons allows NFS directories to be mounted by anyone.
CVE-1999-0212 2000-01-04 n/a Solaris rpc.mountd generates error messages that allow a remote attacker to determine what files are on the server.
CVE-1999-0213 2000-02-04 n/a libnsl in Solaris allowed an attacker to perform a denial of service of rpcbind.
CVE-1999-0214 1999-09-29 n/a Denial of service by sending forged ICMP unreachable packets.
CVE-1999-0215 1999-09-29 n/a Routed allows attackers to append data to files.
CVE-1999-0216 2000-02-04 n/a Denial of service of inetd on Linux through SYN and RST packets.
CVE-1999-0217 1999-09-29 n/a Malicious option settings in UDP packets could force a reboot in SunOS 4.1.3 systems.
CVE-1999-0218 1999-09-29 n/a Livingston portmaster machines could be rebooted via a series of commands.
CVE-1999-0219 1999-09-29 n/a Buffer overflow in FTP Serv-U 2.5 allows remote authenticated users to cause a denial of service (crash) via a long (1) CWD or (2) LS (list) command.
CVE-1999-0220 2000-02-04 n/a Attackers can do a denial of service of IRC by crashing the server.
CVE-1999-0221 1999-09-29 n/a Denial of service of Ascend routers through port 150 (remote administration).
CVE-1999-0222 2000-02-04 n/a Denial of service in Cisco IOS web server allows attackers to reboot the router using a long URL.
CVE-1999-0223 2001-05-07 n/a Solaris syslogd crashes when receiving a message from a host that doesn't have an inverse DNS entry.
CVE-1999-0224 1999-09-29 n/a Denial of service in Windows NT messenger service through a long username.
CVE-1999-0225 2000-06-02 n/a Windows NT 4.0 allows remote attackers to cause a denial of service via a malformed SMB logon request in which the actual data size does not match the specified size.
CVE-1999-0226 2000-02-04 n/a Windows NT TCP/IP processes fragmented IP packets improperly, causing a denial of service.
CVE-1999-0227 1999-09-29 n/a Access violation in LSASS.EXE (LSA/LSARPC) program in Windows NT allows a denial of service.
CVE-1999-0228 1999-09-29 n/a Denial of service in RPCSS.EXE program (RPC Locator) in Windows NT.
CVE-1999-0229 2000-02-04 n/a Denial of service in Windows NT IIS server using ..\..
CVE-1999-0230 1999-09-29 n/a Buffer overflow in Cisco 7xx routers through the telnet service.
CVE-1999-0231 2000-02-04 n/a Buffer overflow in IP-Switch IMail and Seattle Labs Slmail 2.6 packages using a long VRFY command, causing a denial of service and possibly remote access.
CVE-1999-0232 2000-02-04 n/a Buffer overflow in NCSA WebServer (version 1.5c) gives remote access.
CVE-1999-0233 2000-01-18 n/a IIS 1.0 allows users to execute arbitrary commands using .bat or .cmd files.
CVE-1999-0234 1999-09-29 n/a Bash treats any character with a value of 255 as a command separator.
CVE-1999-0235 2000-02-04 n/a Buffer overflow in NCSA WebServer (1.4.1 and below) gives remote access.
CVE-1999-0236 1999-09-29 n/a ScriptAlias directory in NCSA and Apache httpd allowed attackers to read CGI programs.
CVE-1999-0237 1999-09-29 n/a Remote execution of arbitrary commands through Guestbook CGI program.
CVE-1999-0238 2000-02-04 n/a php.cgi allows attackers to read any file on the system.
CVE-1999-0239 1999-09-29 n/a Netscape FastTrack Web server lists files when a lowercase "get" command is used instead of an uppercase GET.
CVE-1999-0240 2000-02-04 n/a Some filters or firewalls allow fragmented SYN packets with IP reserved bits in violation of their implemented policy.
CVE-1999-0241 2000-02-04 n/a Guessable magic cookies in X Windows allows remote attackers to execute commands, e.g. through xterm.
CVE-1999-0242 2000-02-04 n/a Remote attackers can access mail files via POP3 in some Linux systems that are using shadow passwords.
CVE-1999-0243 2000-02-04 n/a Linux cfingerd could be exploited to gain root access.
CVE-1999-0244 1999-09-29 n/a Livingston RADIUS code has a buffer overflow which can allow remote execution of commands as root.
CVE-1999-0245 1999-09-29 n/a Some configurations of NIS+ in Linux allowed attackers to log in as the user "+".
CVE-1999-0246 2000-02-04 n/a HP Remote Watch allows a remote user to gain root access.
CVE-1999-0247 2000-10-13 n/a Buffer overflow in nnrpd program in INN up to version 1.6 allows remote users to execute arbitrary commands.
CVE-1999-0248 2000-10-13 n/a A race condition in the authentication agent mechanism of sshd 1.2.17 allows an attacker to steal another user's credentials.
CVE-1999-0249 2000-02-04 n/a Windows NT RSHSVC program allows remote users to execute arbitrary commands.
CVE-1999-0250 2000-02-04 n/a Denial of service in Qmail through long SMTP commands.
CVE-1999-0251 1999-09-29 n/a Denial of service in talk program allows remote attackers to disrupt a user's display.
CVE-1999-0252 1999-09-29 n/a Buffer overflow in listserv allows arbitrary command execution.
CVE-1999-0253 2000-02-04 n/a IIS 3.0 with the iis-fix hotfix installed allows remote intruders to read source code for ASP programs by using a %2e instead of a . (dot) in the URL.
CVE-1999-0254 2000-02-04 n/a A hidden SNMP community string in HP OpenView allows remote attackers to modify MIB tables and obtain sensitive information.
CVE-1999-0255 2000-02-04 n/a Buffer overflow in ircd allows arbitrary command execution.
CVE-1999-0256 1999-09-29 n/a Buffer overflow in War FTP allows remote execution of commands.
CVE-1999-0257 2000-02-04 n/a Nestea variation of teardrop IP fragmentation denial of service.
CVE-1999-0258 2000-02-04 n/a Bonk variation of teardrop IP fragmentation denial of service.
CVE-1999-0259 2000-01-18 n/a cfingerd lists all users on a system via search.**@target.
CVE-1999-0260 1999-09-29 n/a The jj CGI program allows command execution via shell metacharacters.
CVE-1999-0261 2000-02-04 n/a Netmanager Chameleon SMTPd has several buffer overflows that cause a crash.
CVE-1999-0262 1999-09-29 n/a Hylafax faxsurvey CGI script on Linux allows remote attackers to execute arbitrary commands via shell metacharacters in the query string.
CVE-1999-0263 1999-09-29 n/a Solaris SUNWadmap can be exploited to obtain root access.
CVE-1999-0264 1999-09-29 n/a htmlscript CGI program allows remote read access to files.
CVE-1999-0265 1999-09-29 n/a ICMP redirect messages may crash or lock up a host.
CVE-1999-0266 1999-09-29 n/a The info2www CGI script allows remote file access or remote command execution.
CVE-1999-0267 1999-09-29 n/a Buffer overflow in NCSA HTTP daemon v1.3 allows remote command execution.
CVE-1999-0268 2001-05-07 n/a MetaInfo MetaWeb web server allows users to upload, execute, and read scripts.
CVE-1999-0269 1999-09-29 n/a Netscape Enterprise servers may list files through the PageServices query.
CVE-1999-0270 2000-01-18 n/a Directory traversal vulnerability in pfdispaly.cgi program (sometimes referred to as "pfdisplay") for SGI's Performer API Search Tool (performer_tools) allows remote attackers to read arbitrary files.
CVE-1999-0271 2000-02-04 n/a Progressive Networks Real Video server (pnserver) can be crashed remotely.
CVE-1999-0272 1999-09-29 n/a Denial of service in Slmail v2.5 through the POP3 port.
CVE-1999-0273 1999-09-29 n/a Denial of service through Solaris 2.5.1 telnet by sending ^D characters.
CVE-1999-0274 1999-09-29 n/a Denial of service in Windows NT DNS servers through malicious packet which contains a response to a query that wasn't made.
CVE-1999-0275 2000-01-04 n/a Denial of service in Windows NT DNS servers by flooding port 53 with too many characters.
CVE-1999-0276 1999-09-29 n/a mSQL v2.0.1 and below allows remote execution through a buffer overflow.
CVE-1999-0277 1999-09-29 n/a The WorkMan program can be used to overwrite any file to get root access.
CVE-1999-0278 1999-09-29 n/a In IIS, remote attackers can obtain source code for ASP files by appending "::$DATA" to the URL.
CVE-1999-0279 1999-09-29 n/a Excite for Web Servers (EWS) allows remote command execution via shell metacharacters.
CVE-1999-0280 2000-01-04 n/a Remote command execution in Microsoft Internet Explorer using .lnk and .url files.
CVE-1999-0281 1999-09-29 n/a Denial of service in IIS using long URLs.
CVE-1999-0283 2000-02-04 n/a The Java Web Server would allow remote users to obtain the source code for CGI programs.
CVE-1999-0284 2000-02-04 n/a Denial of service to NT mail servers including Ipswitch, Mdaemon, and Exchange through a buffer overflow in the SMTP HELO command.
CVE-1999-0285 2000-02-04 n/a Denial of service in telnet from the Windows NT Resource Kit, by opening then immediately closing a connection.
CVE-1999-0286 2000-02-04 n/a In some NT web servers, appending a space at the end of a URL may allow attackers to read source code for active pages.
CVE-1999-0287 2000-02-04 n/a Vulnerability in the Wguest CGI program.
CVE-1999-0288 1999-09-29 n/a The WINS server in Microsoft Windows NT 4.0 before SP4 allows remote attackers to cause a denial of service (process termination) via invalid UDP frames to port 137 (NETBIOS Name Service), as demonstrated via a flood of random packets.
CVE-1999-0289 1999-09-29 n/a The Apache web server for Win32 may provide access to restricted files when a . (dot) is appended to a requested URL.
CVE-1999-0290 2000-01-04 n/a The WinGate telnet proxy allows remote attackers to cause a denial of service via a large number of connections to localhost.
CVE-1999-0291 2000-01-04 n/a The WinGate proxy is installed without a password, which allows remote attackers to redirect connections without authentication.
CVE-1999-0292 1999-09-29 n/a Denial of service through Winpopup using large user names.
CVE-1999-0293 1999-09-29 n/a AAA authentication on Cisco systems allows attackers to execute commands without authorization.
CVE-1999-0294 1999-09-29 n/a All records in a WINS database can be deleted through SNMP for a denial of service.
CVE-1999-0295 1999-09-29 n/a Solaris sysdef command allows local users to read kernel memory, potentially leading to root privileges.
CVE-1999-0296 1999-09-29 n/a Solaris volrmmount program allows attackers to read any file.
CVE-1999-0297 2000-01-04 n/a Buffer overflow in Vixie Cron library up to version 3.0 allows local users to obtain root access via a long environmental variable.
CVE-1999-0298 2000-02-04 n/a ypbind with -ypset and -ypsetme options activated in Linux Slackware and SunOS allows local and remote attackers to overwrite files via a .. (dot dot) attack.
CVE-1999-0299 1999-09-29 n/a Buffer overflow in FreeBSD lpd through long DNS hostnames.
CVE-1999-0300 1999-09-29 n/a nis_cachemgr for Solaris NIS+ allows attackers to add malicious NIS+ servers.
CVE-1999-0301 1999-09-29 n/a Buffer overflow in SunOS/Solaris ps command.
CVE-1999-0302 1999-09-29 n/a SunOS/Solaris FTP clients can be forced to execute arbitrary commands from a malicious FTP server.
CVE-1999-0303 1999-09-29 n/a Buffer overflow in BNU UUCP daemon (uucpd) through long hostnames.
CVE-1999-0304 2000-01-04 n/a mmap function in BSD allows local attackers in the kmem group to modify memory through devices.
CVE-1999-0305 1999-09-29 n/a The system configuration control (sysctl) facility in BSD based operating systems OpenBSD 2.2 and earlier, and FreeBSD 2.2.5 and earlier, does not properly restrict source routed packets even when the (1) dosourceroute or (2) forwarding variables are set, which allows remote attackers to spoof TCP connections.
CVE-1999-0306 2000-02-04 n/a buffer overflow in HP xlock program.
CVE-1999-0307 2000-02-04 n/a Buffer overflow in HP-UX cstm program allows local users to gain root privileges.
CVE-1999-0308 1999-09-29 n/a HP-UX gwind program allows users to modify arbitrary files.
CVE-1999-0309 1999-09-29 n/a HP-UX vgdisplay program gives root access to local users.
CVE-1999-0310 1999-09-29 n/a SSH 1.2.25 on HP-UX allows access to new user accounts.
CVE-1999-0311 1999-09-29 n/a fpkg2swpk in HP-UX allows local users to gain root access.
CVE-1999-0312 1999-09-29 n/a HP ypbind allows attackers with root privileges to modify NIS data.
CVE-1999-0313 1999-09-29 n/a disk_bandwidth on SGI IRIX 6.4 S2MP for Origin/Onyx2 allows local users to gain root access using relative pathnames.
CVE-1999-0314 1999-09-29 n/a ioconfig on SGI IRIX 6.4 S2MP for Origin/Onyx2 allows local users to gain root access using relative pathnames.
CVE-1999-0315 1999-09-29 n/a Buffer overflow in Solaris fdformat command gives root access to local users.
CVE-1999-0316 1999-09-29 n/a Buffer overflow in Linux splitvt command gives root access to local users.
CVE-1999-0317 2000-02-04 n/a Buffer overflow in Linux su command gives root access to local users.
CVE-1999-0318 2000-01-04 n/a Buffer overflow in xmcd 2.0p12 allows local users to gain access through an environmental variable.
CVE-1999-0319 2000-02-04 n/a Buffer overflow in xmcd 2.1 allows local users to gain access through a user resource setting.
CVE-1999-0320 1999-09-29 n/a SunOS rpc.cmsd allows attackers to obtain root access by overwriting arbitrary files.
CVE-1999-0321 1999-09-29 n/a Buffer overflow in Solaris kcms_configure command allows local users to gain root access.
CVE-1999-0322 2000-01-04 n/a The open() function in FreeBSD allows local attackers to write to arbitrary files.
CVE-1999-0323 2000-06-02 n/a FreeBSD mmap function allows users to modify append-only or immutable files.
CVE-1999-0324 1999-09-29 n/a ppl program in HP-UX allows local users to create root files through symlinks.
CVE-1999-0325 1999-09-29 n/a vhe_u_mnt program in HP-UX allows local users to create root files through symlinks.
CVE-1999-0326 1999-09-29 n/a Vulnerability in HP-UX mediainit program.
CVE-1999-0327 1999-09-29 n/a SGI syserr program allows local users to corrupt files.
CVE-1999-0328 1999-09-29 n/a SGI permissions program allows local users to gain root privileges.
CVE-1999-0329 1999-09-29 n/a SGI mediad program allows local users to gain root access.
CVE-1999-0330 2000-02-04 n/a Linux bdash game has a buffer overflow that allows local users to gain root access.
CVE-1999-0331 2000-02-04 n/a Buffer overflow in Internet Explorer 4.0(1).
CVE-1999-0332 1999-09-29 n/a Buffer overflow in NetMeeting allows denial of service and remote command execution.
CVE-1999-0333 2000-02-04 n/a HP OpenView Omniback allows remote execution of commands as root via spoofing, and local users can gain root access via a symlink attack.
CVE-1999-0334 1999-09-29 n/a In Solaris 2.2 and 2.3, when fsck fails on startup, it allows a local user with physical access to obtain root access.
CVE-1999-0336 2000-02-04 n/a Buffer overflow in mstm in HP-UX allows local users to gain root access.
CVE-1999-0337 1999-09-29 n/a AIX batch queue (bsh) allows local and remote users to gain additional privileges when network printing is enabled.
CVE-1999-0338 1999-09-29 n/a AIX Licensed Program Product performance tools allow local users to gain root access.
CVE-1999-0339 1999-09-29 n/a Buffer overflow in the libauth library in Solaris allows local users to gain additional privileges, possibly root access.
CVE-1999-0340 1999-09-29 n/a Buffer overflow in Linux Slackware crond program allows local users to gain root access.
CVE-1999-0341 1999-09-29 n/a Buffer overflow in the Linux mail program "deliver" allows local users to gain root access.
CVE-1999-0342 1999-09-29 n/a Linux PAM modules allow local users to gain root access using temporary files.
CVE-1999-0343 2000-01-04 n/a A malicious Palace server can force a client to execute arbitrary programs.
CVE-1999-0344 1999-09-29 n/a NT users can gain debug-level access on a system process using the Sechole exploit.
CVE-1999-0345 2000-02-04 n/a Jolt ICMP attack causes a denial of service in Windows 95 and Windows NT systems.
CVE-1999-0346 1999-09-29 n/a CGI PHP mlog script allows an attacker to read any file on the target server.
CVE-1999-0347 2000-02-04 n/a Internet Explorer 4.01 allows remote attackers to read local files and spoof web pages via a "%01" character in an "about:" Javascript URL, which causes Internet Explorer to use the domain specified after the character.
CVE-1999-0348 1999-09-29 n/a IIS ASP caching problem releases sensitive information when two virtual servers share the same physical directory.
CVE-1999-0349 1999-09-29 n/a A buffer overflow in the FTP list (ls) command in IIS allows remote attackers to conduct a denial of service and, in some cases, execute arbitrary commands.
CVE-1999-0350 1999-09-29 n/a Race condition in the db_loader program in ClearCase gives local users root access by setting SUID bits.
CVE-1999-0351 1999-09-29 n/a FTP PASV "Pizza Thief" denial of service and unauthorized data access. Attackers can steal data by connecting to a port that was intended for use by a client.
CVE-1999-0352 2000-02-04 n/a ControlIT 4.5 and earlier (aka Remotely Possible) has weak password encryption.
CVE-1999-0353 1999-09-29 n/a rpc.pcnfsd in HP gives remote root access by changing the permissions on the main printer spool directory.
CVE-1999-0354 2000-02-04 n/a Internet Explorer 4.x or 5.x with Word 97 allows arbitrary execution of Visual Basic programs to the IE client through the Word 97 template, which doesn't warn the user that the template contains executable content. Also applies to Outlook when the client views a malicious email message.
CVE-1999-0355 1999-09-29 n/a Local or remote users can force ControlIT 4.5 to reboot or force a user to log out, resulting in a denial of service.
CVE-1999-0356 2000-02-04 n/a ControlIT v4.5 and earlier uses weak encryption to store usernames and passwords in an address book.
CVE-1999-0357 1999-09-29 n/a Windows 98 and other operating systems allows remote attackers to cause a denial of service via crafted "oshare" packets, possibly involving invalid fragmentation offsets.
CVE-1999-0358 2000-10-13 n/a Digital Unix 4.0 has a buffer overflow in the inc program of the mh package.
CVE-1999-0359 2001-02-14 n/a ptylogin in Unix systems allows users to perform a denial of service by locking out modems, dial out with that modem, or obtain passwords.
CVE-1999-0360 2000-02-04 n/a MS Site Server 2.0 with IIS 4 can allow users to upload content, including ASP, to the target web site, thus allowing them to execute commands remotely.
CVE-1999-0361 2000-02-04 n/a NetWare version of LaserFiche stores usernames and passwords unencrypted, and allows administrative changes without logging.
CVE-1999-0362 1999-09-29 n/a WS_FTP server remote denial of service through cwd command.
CVE-1999-0363 1999-09-29 n/a SuSE 5.2 PLP lpc program has a buffer overflow that leads to root compromise.
CVE-1999-0364 2000-02-04 n/a Microsoft Access 97 stores a database password as plaintext in a foreign mdb, allowing access to data.
CVE-1999-0365 1999-09-29 n/a The metamail package allows remote command execution using shell metacharacters that are not quoted in a mailcap entry.
CVE-1999-0366 1999-09-29 n/a In some cases, Service Pack 4 for Windows NT 4.0 can allow access to network shares using a blank password, through a problem with a null NT hash value.
CVE-1999-0367 1999-09-29 n/a NetBSD netstat command allows local users to access kernel memory.
CVE-1999-0368 1999-09-29 n/a Buffer overflows in wuarchive ftpd (wu-ftpd) and ProFTPD lead to remote root access, a.k.a. palmetto.
CVE-1999-0369 1999-09-29 n/a The Sun sdtcm_convert calendar utility for OpenWindows has a buffer overflow which can gain root access.
CVE-1999-0370 2000-02-04 n/a In Sun Solaris and SunOS, man and catman contain vulnerabilities that allow overwriting arbitrary files.
CVE-1999-0371 1999-09-29 n/a Lynx allows a local user to overwrite sensitive files through /tmp symlinks.
CVE-1999-0372 1999-09-29 n/a The installer for BackOffice Server includes account names and passwords in a setup file (reboot.ini) which is not deleted.
CVE-1999-0373 1999-09-29 n/a Buffer overflow in the "Super" utility in Debian GNU/Linux, and other operating systems, allows local users to execute commands as root.
CVE-1999-0374 1999-09-29 n/a Debian GNU/Linux cfengine package is susceptible to a symlink attack.
CVE-1999-0375 1999-09-29 n/a Buffer overflow in webd in Network Flight Recorder (NFR) 2.0.2-Research allows remote attackers to execute commands.
CVE-1999-0376 1999-09-29 n/a Local users in Windows NT can obtain administrator privileges by changing the KnownDLLs list to reference malicious programs.
CVE-1999-0377 1999-09-29 n/a Process table attack in Unix systems allows a remote attacker to perform a denial of service by filling a machine's process tables through multiple connections to network services.
CVE-1999-0378 2000-07-12 n/a InterScan VirusWall for Solaris doesn't scan files for viruses when a single HTTP request includes two GET commands.
CVE-1999-0379 1999-09-29 n/a Microsoft Taskpads allows remote web sites to execute commands on the visiting user's machine via certain methods that are marked as Safe for Scripting.
CVE-1999-0380 2002-03-09 n/a SLMail 3.1 and 3.2 allows local users to access any file in the NTFS file system when the Remote Administration Service (RAS) is enabled by setting a user's Finger File to point to the target file, then running finger on the user.
CVE-1999-0381 2000-02-04 n/a super 3.11.6 and other versions have a buffer overflow in the syslog utility which allows a local user to gain root access.
CVE-1999-0382 1999-09-29 n/a The screen saver in Windows NT does not verify that its security context has been changed properly, allowing attackers to run programs with elevated privileges.
CVE-1999-0383 1999-09-29 n/a ACC Tigris allows public access without a login.
CVE-1999-0384 1999-09-29 n/a The Forms 2.0 ActiveX control (included with Visual Basic for Applications 5.0) can be used to read text from a user's clipboard when the user accesses documents with ActiveX content.
CVE-1999-0385 1999-09-29 n/a The LDAP bind function in Exchange 5.5 has a buffer overflow that allows a remote attacker to conduct a denial of service or execute commands.
CVE-1999-0386 1999-09-29 n/a Microsoft Personal Web Server and FrontPage Personal Web Server in some Windows systems allows a remote attacker to read files on the server by using a nonstandard URL.
CVE-1999-0387 2000-07-12 n/a A legacy credential caching mechanism used in Windows 95 and Windows 98 systems allows attackers to read plaintext network passwords.
CVE-1999-0388 1999-09-29 n/a DataLynx suGuard trusts the PATH environment variable to execute the ps command, allowing local users to execute commands as root.
CVE-1999-0389 2000-02-04 n/a Buffer overflow in the bootp server in the Debian Linux netstd package.
CVE-1999-0390 2000-03-22 n/a Buffer overflow in Dosemu Slang library in Linux.
CVE-1999-0391 1999-09-29 n/a The cryptographic challenge of SMB authentication in Windows 95 and Windows 98 can be reused, allowing an attacker to replay the response and impersonate a user.
CVE-1999-0392 1999-09-29 n/a Buffer overflow in Thomas Boutell's cgic library version up to 1.05.
CVE-1999-0393 2000-10-13 n/a Remote attackers can cause a denial of service in Sendmail 8.8.x and 8.9.2 by sending messages with a large number of headers.
CVE-1999-0394 2000-02-04 n/a DPEC Online Courseware allows an attacker to change another user's password without knowing the original password.
CVE-1999-0395 2000-10-13 n/a A race condition in the BackWeb Polite Agent Protocol allows an attacker to spoof a BackWeb server.
CVE-1999-0396 1999-09-29 n/a A race condition between the select() and accept() calls in NetBSD TCP servers allows remote attackers to cause a denial of service.
CVE-1999-0397 2000-02-04 n/a The demo version of the Quakenbush NT Password Appraiser sends passwords across the network in plaintext.
CVE-1999-0398 2000-02-04 n/a In some instances of SSH 1.2.27 and 2.0.11 on Linux systems, SSH will allow users with expired accounts to login.
CVE-1999-0399 2000-02-04 n/a The DCC server command in the Mirc 5.5 client doesn't filter characters from file names properly, allowing remote attackers to place a malicious file in a different location, possibly allowing the attacker to execute commands.
CVE-1999-0400 2000-02-04 n/a Denial of service in Linux 2.2.0 running the ldd command on a core file.
CVE-1999-0401 2000-02-04 n/a A race condition in Linux 2.2.1 allows local users to read arbitrary memory from /proc files.
CVE-1999-0402 1999-09-29 n/a wget 1.5.3 follows symlinks to change permissions of the target file instead of the symlink itself.
CVE-1999-0403 2000-10-13 n/a A bug in Cyrix CPUs on Linux allows local users to perform a denial of service.
CVE-1999-0404 1999-09-29 n/a Buffer overflow in the Mail-Max SMTP server for Windows systems allows remote command execution.
CVE-1999-0405 1999-09-29 n/a A buffer overflow in lsof allows local users to obtain root privilege.
CVE-1999-0406 2000-02-04 n/a Digital Unix Networker program nsralist has a buffer overflow which allows local users to obtain root privilege.
CVE-1999-0407 2000-06-02 n/a By default, IIS 4.0 has a virtual directory /IISADMPWD which contains files that can be used as proxies for brute force password attacks, or to identify valid users on the system.
CVE-1999-0408 2000-01-04 n/a Files created from interactive shell sessions in Cobalt RaQ microservers (e.g. .bash_history) are world readable, and thus are accessible from the web server.
CVE-1999-0409 2000-01-04 n/a Buffer overflow in gnuplot in Linux version 3.5 allows local users to obtain root access.
CVE-1999-0410 1999-09-29 n/a The cancel command in Solaris 2.6 (i386) has a buffer overflow that allows local users to obtain root access.
CVE-1999-0411 2000-02-04 n/a Several startup scripts in SCO OpenServer Enterprise System v 5.0.4p, including S84rpcinit, S95nis, S85tcp, and S89nfs, are vulnerable to a symlink attack, allowing a local user to gain root access.
CVE-1999-0412 1999-09-29 n/a In IIS and other web servers, an attacker can attack commands as SYSTEM if the server is running as SYSTEM and loading an ISAPI extension.
CVE-1999-0413 1999-09-29 n/a A buffer overflow in the SGI X server allows local users to gain root access through the X server font path.
CVE-1999-0414 1999-09-29 n/a In Linux before version 2.0.36, remote attackers can spoof a TCP connection and pass data to the application layer before fully establishing the connection.
CVE-1999-0415 2000-07-12 n/a The HTTP server in Cisco 7xx series routers 3.2 through 4.2 is enabled by default, which allows remote attackers to change the router's configuration.
CVE-1999-0416 2000-07-12 n/a Vulnerability in Cisco 7xx series routers allows a remote attacker to cause a system reload via a TCP connection to the router's TELNET port.
CVE-1999-0417 1999-09-29 n/a 64 bit Solaris 7 procfs allows local users to perform a denial of service.
CVE-1999-0418 2001-09-12 n/a Denial of service in SMTP applications such as Sendmail, when a remote attacker (e.g. spammer) uses many "RCPT TO" commands in the same connection.
CVE-1999-0419 2000-02-04 n/a When the Microsoft SMTP service attempts to send a message to a server and receives a 4xx error code, it quickly and repeatedly attempts to redeliver the message, causing a denial of service.
CVE-1999-0420 1999-09-29 n/a umapfs allows local users to gain root privileges by changing their uid through a malicious mount_umap program.
CVE-1999-0421 2000-01-04 n/a During a reboot after an installation of Linux Slackware 3.6, a remote attacker can obtain root access by logging in to the root account without a password.
CVE-1999-0422 1999-09-29 n/a In some cases, NetBSD 1.3.3 mount allows local users to execute programs in some file systems that have the "noexec" flag set.
CVE-1999-0423 1999-09-29 n/a Vulnerability in hpterm on HP-UX 10.20 allows local users to gain additional privileges.
CVE-1999-0424 1999-09-29 n/a talkback in Netscape 4.5 allows a local user to overwrite arbitrary files of another user whose Netscape crashes.
CVE-1999-0425 1999-09-29 n/a talkback in Netscape 4.5 allows a local user to kill an arbitrary process of another user whose Netscape crashes.
CVE-1999-0426 2000-02-04 n/a The default permissions of /dev/kmem in Linux versions before 2.0.36 allows IP spoofing.
CVE-1999-0427 2000-02-04 n/a Eudora 4.1 allows remote attackers to perform a denial of service by sending attachments with long file names.
CVE-1999-0428 2000-01-04 n/a OpenSSL and SSLeay allow remote attackers to reuse SSL sessions and bypass access controls.
CVE-1999-0429 2000-10-13 n/a The Lotus Notes 4.5 client may send a copy of encrypted mail in the clear across the network if the user does not set the "Encrypt Saved Mail" preference.
CVE-1999-0430 1999-09-29 n/a Cisco Catalyst LAN switches running Catalyst 5000 supervisor software allows remote attackers to perform a denial of service by forcing the supervisor module to reload.
CVE-1999-0431 2000-02-04 n/a Linux 2.2.3 and earlier allow a remote attacker to perform an IP fragmentation attack, causing a denial of service.
CVE-1999-0432 1999-09-29 n/a ftp on HP-UX 11.00 allows local users to gain privileges.
CVE-1999-0433 1999-09-29 n/a XFree86 startx command is vulnerable to a symlink attack, allowing local users to create files in restricted directories, possibly allowing them to gain privileges or cause a denial of service.
CVE-1999-0434 2000-02-04 n/a XFree86 xfs command is vulnerable to a symlink attack, allowing local users to create files in restricted directories, possibly allowing them to gain privileges or cause a denial of service.
CVE-1999-0435 2000-02-04 n/a MC/ServiceGuard and MC/LockManager in HP-UX allows local users to gain privileges through SAM.
CVE-1999-0436 1999-09-29 n/a Domain Enterprise Server Management System (DESMS) in HP-UX allows local users to gain privileges.
CVE-1999-0437 1999-09-29 n/a Remote attackers can perform a denial of service in WebRamp systems by sending a malicious string to the HTTP port.
CVE-1999-0438 1999-09-29 n/a Remote attackers can perform a denial of service in WebRamp systems by sending a malicious UDP packet to port 5353, changing its IP address.
CVE-1999-0439 2000-01-04 n/a Buffer overflow in procmail before version 3.12 allows remote or local attackers to execute commands via expansions in the procmailrc configuration file.
CVE-1999-0440 2000-10-13 n/a The byte code verifier component of the Java Virtual Machine (JVM) allows remote execution through malicious web pages.
CVE-1999-0441 1999-09-29 n/a Remote attackers can perform a denial of service in WinGate machines using a buffer overflow in the Winsock Redirector Service.
CVE-1999-0442 1999-09-29 n/a Solaris ff.core allows local users to modify files.
CVE-1999-0443 2000-02-04 n/a Patrol management software allows a remote attacker to conduct a replay attack to steal the administrator password.
CVE-1999-0444 2000-02-04 n/a Remote attackers can perform a denial of service in Windows machines using malicious ARP packets, forcing a message box display for each packet or filling up log files.
CVE-1999-0445 1999-09-29 n/a In Cisco routers under some versions of IOS 12.0 running NAT, some packets may not be filtered by input access list filters.
CVE-1999-0446 1999-09-29 n/a Local users can perform a denial of service in NetBSD 1.3.3 and earlier versions by creating an unusual symbolic link with the ln command, triggering a bug in VFS.
CVE-1999-0447 1999-09-29 n/a Local users can gain privileges using the debug utility in the MPE/iX operating system.
CVE-1999-0448 1999-09-29 n/a IIS 4.0 and Apache log HTTP request methods, regardless of how long they are, allowing a remote attacker to hide the URL they really request.
CVE-1999-0449 1999-09-29 n/a The ExAir sample site in IIS 4 allows remote attackers to cause a denial of service (CPU consumption) via a direct request to the (1) advsearch.asp, (2) query.asp, or (3) search.asp scripts.
CVE-1999-0450 2000-02-04 n/a In IIS, an attacker could determine a real path using a request for a non-existent URL that would be interpreted by Perl (perl.exe).
CVE-1999-0451 2000-02-04 n/a Denial of service in Linux 2.0.36 allows local users to prevent any server from listening on any non-privileged port.
CVE-1999-0452 2000-02-04 n/a A service or application has a backdoor password that was placed there by the developer.
CVE-1999-0453 2000-02-04 n/a An attacker can identify a CISCO device by sending a SYN packet to port 1999, which is for the Cisco Discovery Protocol (CDP).
CVE-1999-0454 2000-02-04 n/a A remote attacker can sometimes identify the operating system of a host based on how it reacts to some IP or ICMP packets, using a tool such as nmap or queso.
CVE-1999-0455 2000-02-04 n/a The Expression Evaluator sample application in ColdFusion allows remote attackers to read or delete files on the server via exprcalc.cfm, which does not restrict access to the server properly.
CVE-1999-0457 1999-09-29 n/a Linux ftpwatch program allows local users to gain root privileges.
CVE-1999-0458 1999-09-29 n/a L0phtcrack 2.5 used temporary files in the system TEMP directory which could contain password information.
CVE-1999-0459 2000-02-04 n/a Local users can perform a denial of service in Alpha Linux, using MILO to force a reboot.
CVE-1999-0460 2000-02-04 n/a Buffer overflow in Linux autofs module through long directory names allows local users to perform a denial of service.
CVE-1999-0461 2000-02-04 n/a Versions of rpcbind including Linux, IRIX, and Wietse Venema's rpcbind allow a remote attacker to insert and delete entries by spoofing a source address.
CVE-1999-0462 2000-02-04 n/a suidperl in Linux Perl does not check the nosuid mount option on file systems, allowing local users to gain root access by placing a setuid script in a mountable file system, e.g. a CD-ROM or floppy disk.
CVE-1999-0463 1999-09-29 n/a Remote attackers can perform a denial of service using IRIX fcagent.
CVE-1999-0464 2000-06-02 n/a Local users can perform a denial of service in Tripwire 1.2 and earlier using long filenames.
CVE-1999-0465 2000-02-04 n/a Remote attackers can crash Lynx and Internet Explorer using an IMG tag with a large width parameter.
CVE-1999-0466 1999-09-29 n/a The SVR4 /dev/wabi special device file in NetBSD 1.3.3 and earlier allows a local user to read or write arbitrary files on the disk associated with that device.
CVE-1999-0467 2000-02-04 n/a The Webcom CGI Guestbook programs wguest.exe and rguest.exe allow a remote attacker to read arbitrary files using the "template" parameter.
CVE-1999-0468 1999-09-29 n/a Internet Explorer 5.0 allows a remote server to read arbitrary files on the client's file system using the Microsoft Scriptlet Component.
CVE-1999-0469 2000-02-04 n/a Internet Explorer 5.0 allows window spoofing, allowing a remote attacker to spoof a legitimate web site and capture information from the client.
CVE-1999-0470 2000-01-04 n/a A weak encryption algorithm is used for passwords in Novell Remote.NLM, allowing them to be easily decrypted.
CVE-1999-0471 1999-09-29 n/a The remote proxy server in Winroute allows a remote attacker to reconfigure the proxy without authentication through the "cancel" button.
CVE-1999-0472 1999-09-29 n/a The SNMP default community name "public" is not properly removed in NetApps C630 Netcache, even if the administrator tries to disable it.
CVE-1999-0473 1999-09-29 n/a The rsync command before rsync 2.3.1 may inadvertently change the permissions of the client's working directory to the permissions of the directory being transferred.
CVE-1999-0474 1999-09-29 n/a The ICQ Webserver allows remote attackers to use .. to access arbitrary files outside of the user's personal directory.
CVE-1999-0475 1999-09-29 n/a A race condition in how procmail handles .procmailrc files allows a local user to read arbitrary files available to the user who is running procmail.
CVE-1999-0476 2000-02-04 n/a A weak encryption algorithm is used for passwords in SCO TermVision, allowing them to be easily decrypted by a local user.
CVE-1999-0477 2000-02-04 n/a The Expression Evaluator in the ColdFusion Application Server allows a remote attacker to upload files to the server via openfile.cfm, which does not restrict access to the server properly.
CVE-1999-0478 1999-09-29 n/a Denial of service in HP-UX sendmail 8.8.6 related to accepting connections.
CVE-1999-0479 1999-09-29 n/a Denial of service Netscape Enterprise Server with VirtualVault on HP-UX VVOS systems.
CVE-1999-0480 2000-02-04 n/a Local attackers can conduct a denial of service in Midnight Commander 4.x with a symlink attack.
CVE-1999-0481 1999-09-29 n/a Denial of service in "poll" in OpenBSD.
CVE-1999-0482 1999-09-29 n/a OpenBSD kernel crash through TSS handling, as caused by the crashme program.
CVE-1999-0483 1999-09-29 n/a OpenBSD crash using nlink value in FFS and EXT2FS filesystems.
CVE-1999-0484 1999-09-29 n/a Buffer overflow in OpenBSD ping.
CVE-1999-0485 1999-09-29 n/a Remote attackers can cause a system crash through ipintr() in ipq in OpenBSD.
CVE-1999-0486 2000-02-04 n/a Denial of service in AOL Instant Messenger when a remote attacker sends a malicious hyperlink to the receiving client, potentially causing a system crash.
CVE-1999-0487 1999-09-29 n/a The DHTML Edit ActiveX control in Internet Explorer allows remote attackers to read arbitrary files.
CVE-1999-0488 2000-02-04 n/a Internet Explorer 4.0 and 5.0 allows a remote attacker to execute security scripts in a different security context using malicious URLs, a variant of the "cross frame" vulnerability.
CVE-1999-0489 2000-02-04 n/a MSHTML.DLL in Internet Explorer 5.0 allows a remote attacker to paste a file name into the file upload intrinsic control, a variant of "untrusted scripted paste" as described in MS:MS98-013.
CVE-1999-0490 2000-02-04 n/a MSHTML.DLL in Internet Explorer 5.0 allows a remote attacker to learn information about a local user's files via an IMG SRC tag.
CVE-1999-0491 2000-06-02 n/a The prompt parsing in bash allows a local user to execute commands as another user by creating a directory with the name of the command to execute.
CVE-1999-0492 2000-02-04 n/a The ffingerd 1.19 allows remote attackers to identify users on the target system based on its responses.
CVE-1999-0493 2000-06-02 n/a rpc.statd allows remote attackers to forward RPC calls to the local operating system via the SM_MON and SM_NOTIFY commands, which in turn could be used to remotely exploit other bugs such as in automountd.
CVE-1999-0494 1999-09-29 n/a Denial of service in WinGate proxy through a buffer overflow in POP3.
CVE-1999-0495 2000-02-04 n/a A remote attacker can gain access to a file system using .. (dot dot) when accessing SMB shares.
CVE-1999-0496 1999-09-29 n/a A Windows NT 4.0 user can gain administrative rights by forcing NtOpenProcessToken to succeed regardless of the user's permissions, aka GetAdmin.
CVE-1999-0497 2000-02-04 n/a Anonymous FTP is enabled.
CVE-1999-0498 2000-02-04 n/a TFTP is not running in a restricted directory, allowing a remote attacker to access sensitive information such as password files.
CVE-1999-0499 2000-02-04 n/a NETBIOS share information may be published through SNMP registry keys in NT.
CVE-1999-0501 2000-02-04 n/a A Unix account has a guessable password.
CVE-1999-0502 2000-02-04 n/a A Unix account has a default, null, blank, or missing password.
CVE-1999-0503 2000-02-04 n/a A Windows NT local user or administrator account has a guessable password.
CVE-1999-0504 2000-02-04 n/a A Windows NT local user or administrator account has a default, null, blank, or missing password.
CVE-1999-0505 2000-02-04 n/a A Windows NT domain user or administrator account has a guessable password.
CVE-1999-0506 2000-02-04 n/a A Windows NT domain user or administrator account has a default, null, blank, or missing password.
CVE-1999-0507 2000-02-04 n/a An account on a router, firewall, or other network device has a guessable password.
CVE-1999-0508 2000-02-04 n/a An account on a router, firewall, or other network device has a default, null, blank, or missing password.
CVE-1999-0509 2000-02-04 n/a Perl, sh, csh, or other shell interpreters are installed in the cgi-bin directory on a WWW site, which allows remote attackers to execute arbitrary commands.
CVE-1999-0510 2000-02-04 n/a A router or firewall allows source routed packets from arbitrary hosts.
CVE-1999-0511 2000-02-04 n/a IP forwarding is enabled on a machine which is not a router or firewall.
CVE-1999-0512 2000-02-04 n/a A mail server is explicitly configured to allow SMTP mail relay, which allows abuse by spammers.
CVE-1999-0513 1999-09-29 n/a ICMP messages to broadcast addresses are allowed, allowing for a Smurf attack that can cause a denial of service.
CVE-1999-0514 1999-09-29 n/a UDP messages to broadcast addresses are allowed, allowing for a Fraggle attack that can cause a denial of service by flooding the target.
CVE-1999-0515 2000-02-04 n/a An unrestricted remote trust relationship for Unix systems has been set up, e.g. by using a + sign in /etc/hosts.equiv.
CVE-1999-0516 2000-02-04 n/a An SNMP community name is guessable.
CVE-1999-0517 2000-02-04 n/a An SNMP community name is the default (e.g. public), null, or missing.
CVE-1999-0518 2000-02-04 n/a A NETBIOS/SMB share password is guessable.
CVE-1999-0519 2000-02-04 n/a A NETBIOS/SMB share password is the default, null, or missing.
CVE-1999-0520 2000-02-04 n/a A system-critical NETBIOS/SMB share has inappropriate access control.
CVE-1999-0521 2000-02-04 n/a An NIS domain name is easily guessable.
CVE-1999-0522 2000-02-04 n/a The permissions for a system-critical NIS+ table (e.g. passwd) are inappropriate.
CVE-1999-0523 2000-02-04 n/a ICMP echo (ping) is allowed from arbitrary hosts.
CVE-1999-0524 2000-02-04 n/a ICMP information such as (1) netmask and (2) timestamp is allowed from arbitrary hosts.
CVE-1999-0525 2000-02-04 n/a IP traceroute is allowed from arbitrary hosts.
CVE-1999-0526 1999-09-29 n/a An X server's access control is disabled (e.g. through an "xhost +" command) and allows anyone to connect to the server.
CVE-1999-0527 2000-02-04 n/a The permissions for system-critical data in an anonymous FTP account are inappropriate. For example, the root directory is writeable by world, a real password file is obtainable, or executable commands such as "ls" can be overwritten.
CVE-1999-0528 2000-02-04 n/a A router or firewall forwards external packets that claim to come from inside the network that the router/firewall is in front of.
CVE-1999-0529 2000-02-04 n/a A router or firewall forwards packets that claim to come from IANA reserved or private addresses, e.g. 10.x.x.x, 127.x.x.x, 217.x.x.x, etc.
CVE-1999-0530 2000-02-04 n/a A system is operating in "promiscuous" mode which allows it to perform packet sniffing.
CVE-1999-0532 2000-02-04 n/a A DNS server allows zone transfers.
CVE-1999-0533 2000-02-04 n/a A DNS server allows inverse queries.
CVE-1999-0534 2000-02-04 n/a A Windows NT user has inappropriate rights or privileges, e.g. Act as System, Add Workstation, Backup, Change System Time, Create Pagefile, Create Permanent Object, Create Token Name, Debug, Generate Security Audit, Increase Priority, Increase Quota, Load Driver, Lock Memory, Profile Single Process, Remote Shutdown, Replace Process Token, Restore, System Environment, Take Ownership, or Unsolicited Input.
CVE-1999-0535 2000-02-04 n/a A Windows NT account policy for passwords has inappropriate, security-critical settings, e.g. for password length, password age, or uniqueness.
CVE-1999-0537 2000-02-04 n/a A configuration in a web browser such as Internet Explorer or Netscape Navigator allows execution of active content such as ActiveX, Java, Javascript, etc.
CVE-1999-0539 2000-02-04 n/a A trust relationship exists between two Unix hosts.
CVE-1999-0541 2000-02-04 n/a A password for accessing a WWW URL is guessable.
CVE-1999-0546 2000-02-04 n/a The Windows NT guest account is enabled.
CVE-1999-0547 2000-02-04 n/a An SSH server allows authentication through the .rhosts file.
CVE-1999-0548 2000-02-04 n/a A superfluous NFS server is running, but it is not importing or exporting any file systems.
CVE-1999-0549 2000-02-04 n/a Windows NT automatically logs in an administrator upon rebooting.
CVE-1999-0550 2000-02-04 n/a A router's routing tables can be obtained from arbitrary hosts.
CVE-1999-0551 1999-09-29 n/a HP OpenMail can be misconfigured to allow users to run arbitrary commands using malicious print requests.
CVE-1999-0554 2000-02-04 n/a NFS exports system-critical data to the world, e.g. / or a password file.
CVE-1999-0555 2000-02-04 n/a A Unix account with a name other than "root" has UID 0, i.e. root privileges.
CVE-1999-0556 2000-02-04 n/a Two or more Unix accounts have the same UID.
CVE-1999-0559 2000-02-04 n/a A system-critical Unix file or directory has inappropriate permissions.
CVE-1999-0560 2000-02-04 n/a A system-critical Windows NT file or directory has inappropriate permissions.
CVE-1999-0561 2000-02-04 n/a IIS has the #exec function enabled for Server Side Include (SSI) files.
CVE-1999-0562 2000-02-04 n/a The registry in Windows NT can be accessed remotely by users who are not administrators.
CVE-1999-0564 2000-02-04 n/a An attacker can force a printer to print arbitrary documents (e.g. if the printer doesn't require a password) or to become disabled.
CVE-1999-0565 2000-02-04 n/a A Sendmail alias allows input to be piped to a program.
CVE-1999-0566 1999-09-29 n/a An attacker can write to syslog files from any location, causing a denial of service by filling up the logs, and hiding activities.
CVE-1999-0568 2000-02-04 n/a rpc.admind in Solaris is not running in a secure mode.
CVE-1999-0569 2000-02-04 n/a A URL for a WWW directory allows auto-indexing, which provides a list of all files in that directory if it does not contain an index.html file.
CVE-1999-0570 2000-02-04 n/a Windows NT is not using a password filter utility, e.g. PASSFILT.DLL.
CVE-1999-0571 2000-02-04 n/a A router's configuration service or management interface (such as a web server or telnet) is configured to allow connections from arbitrary hosts.
CVE-1999-0572 2000-02-04 n/a .reg files are associated with the Windows NT registry editor (regedit), making the registry susceptible to Trojan Horse attacks.
CVE-1999-0575 2000-02-04 n/a A Windows NT system's user audit policy does not log an event success or failure, e.g. for Logon and Logoff, File and Object Access, Use of User Rights, User and Group Management, Security Policy Changes, Restart, Shutdown, and System, and Process Tracking.
CVE-1999-0576 2000-02-04 n/a A Windows NT system's file audit policy does not log an event success or failure for security-critical files or directories.
CVE-1999-0577 2000-02-04 n/a A Windows NT system's file audit policy does not log an event success or failure for non-critical files or directories.
CVE-1999-0578 2000-02-04 n/a A Windows NT system's registry audit policy does not log an event success or failure for security-critical registry keys.
CVE-1999-0579 2000-02-04 n/a A Windows NT system's registry audit policy does not log an event success or failure for non-critical registry keys.
CVE-1999-0580 2000-02-04 n/a The HKEY_LOCAL_MACHINE key in a Windows NT system has inappropriate, system-critical permissions.
CVE-1999-0581 2000-02-04 n/a The HKEY_CLASSES_ROOT key in a Windows NT system has inappropriate, system-critical permissions.
CVE-1999-0582 2000-02-04 n/a A Windows NT account policy has inappropriate, security-critical settings for lockout, e.g. lockout duration, lockout after bad logon attempts, etc.
CVE-1999-0583 2000-02-04 n/a There is a one-way or two-way trust relationship between Windows NT domains.
CVE-1999-0584 2000-02-04 n/a A Windows NT file system is not NTFS.
CVE-1999-0585 2000-02-04 n/a A Windows NT administrator account has the default name of Administrator.
CVE-1999-0586 2000-02-04 n/a A network service is running on a nonstandard port.
CVE-1999-0587 2000-02-04 n/a A WWW server is not running in a restricted file system, e.g. through a chroot, thus allowing access to system-critical data.
CVE-1999-0588 2000-02-04 n/a A filter in a router or firewall allows unusual fragmented packets.
CVE-1999-0589 2000-02-04 n/a A system-critical Windows NT registry key has inappropriate permissions.
CVE-1999-0590 2000-02-04 n/a A system does not present an appropriate legal message or warning to a user who is accessing it.
CVE-1999-0591 2000-02-04 n/a An event log in Windows NT has inappropriate access permissions.
CVE-1999-0592 2000-02-04 n/a The Logon box of a Windows NT system displays the name of the last user who logged in.
CVE-1999-0593 2000-02-04 n/a The default setting for the Winlogon key entry ShutdownWithoutLogon in Windows NT allows users with physical access to shut down a Windows NT system without logging in.
CVE-1999-0594 2000-02-04 n/a A Windows NT system does not restrict access to removable media drives such as a floppy disk drive or CDROM drive.
CVE-1999-0595 2000-02-04 n/a A Windows NT system does not clear the system page file during shutdown, which might allow sensitive information to be recorded.
CVE-1999-0596 2000-02-04 n/a A Windows NT log file has an inappropriate maximum size or retention period.
CVE-1999-0597 2000-02-04 n/a A Windows NT account policy does not forcibly disconnect remote users from the server when their logon hours expire.
CVE-1999-0598 2000-02-04 n/a A network intrusion detection system (IDS) does not properly handle packets that are sent out of order, allowing an attacker to escape detection.
CVE-1999-0599 2000-02-04 n/a A network intrusion detection system (IDS) does not properly handle packets with improper sequence numbers.
CVE-1999-0600 2000-02-04 n/a A network intrusion detection system (IDS) does not verify the checksum on a packet.
CVE-1999-0601 2000-02-04 n/a A network intrusion detection system (IDS) does not properly handle data within TCP handshake packets.
CVE-1999-0602 2000-02-04 n/a A network intrusion detection system (IDS) does not properly reassemble fragmented packets.
CVE-1999-0603 2000-02-04 n/a In Windows NT, an inappropriate user is a member of a group, e.g. Administrator, Backup Operators, Domain Admins, Domain Guests, Power Users, Print Operators, Replicators, System Operators, etc.
CVE-1999-0604 2000-02-04 n/a An incorrect configuration of the WebStore 1.0 shopping cart CGI program "web_store.cgi" could disclose private information.
CVE-1999-0605 2000-02-04 n/a An incorrect configuration of the Order Form 1.0 shopping cart CGI program could disclose private information.
CVE-1999-0606 2000-02-04 n/a An incorrect configuration of the EZMall 2000 shopping cart CGI program "mall2000.cgi" could disclose private information.
CVE-1999-0607 2000-02-04 n/a quikstore.cgi in QuikStore shopping cart stores quikstore.cfg under the web document root with insufficient access control, which allows remote attackers to obtain the cleartext administrator password and gain privileges.
CVE-1999-0608 2001-05-07 n/a An incorrect configuration of the PDG Shopping Cart CGI program "shopper.cgi" could disclose private information.
CVE-1999-0609 2000-02-04 n/a An incorrect configuration of the SoftCart CGI program "SoftCart.exe" could disclose private information.
CVE-1999-0610 2000-02-04 n/a An incorrect configuration of the Webcart CGI program could disclose private information.
CVE-1999-0611 2000-02-04 n/a A system-critical Windows NT registry key has an inappropriate value.
CVE-1999-0612 1999-09-29 n/a A version of finger is running that exposes valid user information to any entity on the network.
CVE-1999-0613 2000-02-04 n/a The rpc.sprayd service is running.
CVE-1999-0618 2000-02-04 n/a The rexec service is running.
CVE-1999-0624 2000-02-04 n/a The rstat/rstatd service is running.
CVE-1999-0625 2000-02-04 n/a The rpc.rquotad service is running.
CVE-1999-0626 1999-09-29 n/a A version of rusers is running that exposes valid user information to any entity on the network.
CVE-1999-0627 1999-09-29 n/a The rexd service is running, which uses weak authentication that can allow an attacker to execute commands.
CVE-1999-0628 1999-09-29 n/a The rwho/rwhod service is running, which exposes machine status and user information.
CVE-1999-0629 2000-02-04 n/a The ident/identd service is running.
CVE-1999-0630 2000-02-04 n/a The NT Alerter and Messenger services are running.
CVE-1999-0632 2000-02-04 n/a The RPC portmapper service is running.
CVE-1999-0635 2000-02-04 n/a The echo service is running.
CVE-1999-0636 2000-02-04 n/a The discard service is running.
CVE-1999-0637 2000-02-04 n/a The systat service is running.
CVE-1999-0638 2000-02-04 n/a The daytime service is running.
CVE-1999-0639 2000-02-04 n/a The chargen service is running.
CVE-1999-0640 2000-02-04 n/a The Gopher service is running.
CVE-1999-0641 2000-02-04 n/a The UUCP service is running.
CVE-1999-0650 2000-02-04 n/a The netstat service is running, which provides sensitive information to remote attackers.
CVE-1999-0651 2000-02-04 n/a The rsh/rlogin service is running.
CVE-1999-0653 2000-02-04 n/a A component service related to NIS+ is running.
CVE-1999-0654 2000-02-04 n/a The OS/2 or POSIX subsystem in NT is enabled.
CVE-1999-0656 2000-02-04 n/a The ugidd RPC interface, by design, allows remote attackers to enumerate valid usernames by specifying arbitrary UIDs that ugidd maps to local user and group names.
CVE-1999-0657 2000-02-04 n/a WinGate is being used.
CVE-1999-0661 2000-02-04 n/a A system is running a version of software that was replaced with a Trojan Horse at one of its distribution points, such as (1) TCP Wrappers 7.6, (2) util-linux 2.9g, (3) wuarchive ftpd (wuftpd) 2.2 and 2.1f, (4) IRC client (ircII) ircII 2.2.9, (5) OpenSSH 3.4p1, or (6) Sendmail 8.12.6.
CVE-1999-0662 2000-02-04 n/a A system-critical program or library does not have the appropriate patch, hotfix, or service pack installed, or is outdated or obsolete.
CVE-1999-0663 2000-02-04 n/a A system-critical program, library, or file has a checksum or other integrity measurement that indicates that it has been modified.
CVE-1999-0664 2000-02-04 n/a An application-critical Windows NT registry key has inappropriate permissions.
CVE-1999-0665 2000-02-04 n/a An application-critical Windows NT registry key has an inappropriate value.
CVE-1999-0667 2000-02-04 n/a The ARP protocol allows any host to spoof ARP replies and poison the ARP cache to conduct IP address spoofing or a denial of service.
CVE-1999-0668 2000-06-02 n/a The scriptlet.typelib ActiveX control is marked as "safe for scripting" for Internet Explorer, which allows a remote attacker to execute arbitrary commands as demonstrated by Bubbleboy.
CVE-1999-0669 2000-02-04 n/a The Eyedog ActiveX control is marked as "safe for scripting" for Internet Explorer, which allows a remote attacker to execute arbitrary commands as demonstrated by Bubbleboy.
CVE-1999-0670 2000-02-04 n/a Buffer overflow in the Eyedog ActiveX control allows a remote attacker to execute arbitrary commands.
CVE-1999-0671 2000-10-13 n/a Buffer overflow in ToxSoft NextFTP client through CWD command.
CVE-1999-0672 2000-10-13 n/a Buffer overflow in Fujitsu Chocoa IRC client via IRC channel topics.
CVE-1999-0673 2000-02-04 n/a Buffer overflow in ALMail32 POP3 client via From: or To: headers.
CVE-1999-0674 2000-01-04 n/a The BSD profil system call allows a local user to modify the internal data space of a program via profiling and execve.
CVE-1999-0675 2000-10-13 n/a Check Point FireWall-1 can be subjected to a denial of service via UDP packets that are sent through VPN-1 to port 0 of a host.
CVE-1999-0676 2000-04-18 n/a sdtcm_convert in Solaris 2.6 allows a local user to overwrite sensitive files via a symlink attack.
CVE-1999-0677 2000-02-04 n/a The WebRamp web administration utility has a default password.
CVE-1999-0678 2000-03-22 n/a A default configuration of Apache on Debian GNU/Linux sets the ServerRoot to /usr/doc, which allows remote users to read documentation files for the entire server.
CVE-1999-0679 2000-10-13 n/a Buffer overflow in hybrid-6 IRC server commonly used on EFnet allows remote attackers to execute commands via m_invite invite option.
CVE-1999-0680 2000-01-04 n/a Windows NT Terminal Server performs extra work when a client opens a new connection but before it is authenticated, allowing for a denial of service.
CVE-1999-0681 2001-05-07 n/a Buffer overflow in Microsoft FrontPage Server Extensions (PWS) 3.0.2.926 on Windows 95, and possibly other versions, allows remote attackers to cause a denial of service via a long URL.
CVE-1999-0682 2000-01-04 n/a Microsoft Exchange 5.5 allows a remote attacker to relay email (i.e. spam) using encapsulated SMTP addresses, even if the anti-relaying features are enabled.
CVE-1999-0683 2000-01-18 n/a Denial of service in Gauntlet Firewall via a malformed ICMP packet.
CVE-1999-0684 2000-02-04 n/a Denial of service in Sendmail 8.8.6 in HPUX.
CVE-1999-0685 2000-01-04 n/a Buffer overflow in Netscape Communicator via EMBED tags in the pluginspage option.
CVE-1999-0686 2000-01-04 n/a Denial of service in Netscape Enterprise Server (NES) in HP Virtual Vault (VVOS) via a long URL.
CVE-1999-0687 2000-01-04 n/a The ToolTalk ttsession daemon uses weak RPC authentication, which allows a remote attacker to execute commands.
CVE-1999-0688 2000-01-04 n/a Buffer overflows in HP Software Distributor (SD) for HPUX 10.x and 11.x.
CVE-1999-0689 2000-01-04 n/a The CDE dtspcd daemon allows local users to execute arbitrary commands via a symlink attack.
CVE-1999-0690 2000-01-04 n/a HP CDE program includes the current directory in root's PATH variable.
CVE-1999-0691 2000-01-04 n/a Buffer overflow in the AddSuLog function of the CDE dtaction utility allows local users to gain root privileges via a long user name.
CVE-1999-0692 2000-01-04 n/a The default configuration of the Array Services daemon (arrayd) disables authentication, allowing remote users to gain root privileges.
CVE-1999-0693 2000-01-04 n/a Buffer overflow in TT_SESSION environment variable in ToolTalk shared library allows local users to gain root privileges.
CVE-1999-0694 2000-01-18 n/a Denial of service in AIX ptrace system call allows local users to crash the system.
CVE-1999-0695 2000-01-04 n/a The Sybase PowerDynamo personal web server allows attackers to read arbitrary files through a .. (dot dot) attack.
CVE-1999-0696 2000-06-02 n/a Buffer overflow in CDE Calendar Manager Service Daemon (rpc.cmsd).
CVE-1999-0697 2000-10-13 n/a SCO Doctor allows local users to gain root privileges through a Tools option.
CVE-1999-0698 2000-02-04 n/a Denial of service in IP protocol logger (ippl) on Red Hat and Debian Linux.
CVE-1999-0699 2000-01-04 n/a The Bluestone Sapphire web server allows session hijacking via easily guessable session IDs.
CVE-1999-0700 2000-01-04 n/a Buffer overflow in Microsoft Phone Dialer (dialer.exe), via a malformed dialer entry in the dialer.ini file.
CVE-1999-0701 2000-01-04 n/a After an unattended installation of Windows NT 4.0, an installation file could include sensitive information such as the local Administrator password.
CVE-1999-0702 2000-01-04 n/a Internet Explorer 5.0 and 5.01 allows remote attackers to modify or execute files via the Import/Export Favorites feature, aka the "ImportExportFavorites" vulnerability.
CVE-1999-0703 2000-01-04 n/a OpenBSD, BSDI, and other Unix operating systems allow users to set chflags and fchflags on character and block devices.
CVE-1999-0704 2000-01-04 n/a Buffer overflow in Berkeley automounter daemon (amd) logging facility provided in the Linux am-utils package and others.
CVE-1999-0705 2000-01-04 n/a Buffer overflow in INN inews program.
CVE-1999-0706 2000-01-04 n/a Linux xmonisdn package allows local users to gain root privileges by modifying the IFS or PATH environmental variables.
CVE-1999-0707 2000-01-04 n/a The default FTP configuration in HP Visualize Conference allows conference users to send a file to other participants without authorization.
CVE-1999-0708 2000-01-18 n/a Buffer overflow in cfingerd allows local users to gain root privileges via a long GECOS field.
CVE-1999-0710 2000-01-04 n/a The Squid package in Red Hat Linux 5.2 and 6.0, and other distributions, installs cachemgr.cgi in a public web directory, which allows remote attackers to use it as an intermediary to connect to other systems.
CVE-1999-0711 2000-04-18 n/a The oratclsh interpreter in Oracle 8.x Intelligent Agent for Unix allows local users to execute Tcl commands as root.
CVE-1999-0712 2000-02-04 n/a A vulnerability in Caldera Open Administration System (COAS) allows the /etc/shadow password file to be made world-readable.
CVE-1999-0713 2000-01-04 n/a The dtlogin program in Compaq Tru64 UNIX allows local users to gain root privileges.
CVE-1999-0714 2000-01-04 n/a Vulnerability in Compaq Tru64 UNIX edauth command.
CVE-1999-0715 2000-01-04 n/a Buffer overflow in Remote Access Service (RAS) client allows an attacker to execute commands or cause a denial of service via a malformed phonebook entry.
CVE-1999-0716 2000-01-04 n/a Buffer overflow in Windows NT 4.0 help file utility via a malformed help file.
CVE-1999-0717 2000-01-04 n/a A remote attacker can disable the virus warning mechanism in Microsoft Excel 97.
CVE-1999-0718 2004-09-01 n/a IBM GINA, when used for OS/2 domain authentication of Windows NT users, allows local users to gain administrator privileges by changing the GroupMapping registry key.
CVE-1999-0719 2000-06-02 n/a The Guile plugin for the Gnumeric spreadsheet package allows attackers to execute arbitrary code.
CVE-1999-0720 2000-04-18 n/a The pt_chown command in Linux allows local users to modify TTY terminal devices that belong to other users.
CVE-1999-0721 2000-01-04 n/a Denial of service in Windows NT Local Security Authority (LSA) through a malformed LSA request.
CVE-1999-0722 2000-01-04 n/a The default configuration of Cobalt RaQ2 servers allows remote users to install arbitrary software packages.
CVE-1999-0723 2000-01-04 n/a The Windows NT Client Server Runtime Subsystem (CSRSS) can be subjected to a denial of service when all worker threads are waiting for user input.
CVE-1999-0724 2000-01-04 n/a Buffer overflow in OpenBSD procfs and fdescfs file systems via uio_offset in the readdir() function.
CVE-1999-0725 2000-01-04 n/a When IIS is run with a default language of Chinese, Korean, or Japanese, it allows a remote attacker to view the source code of certain files, a.k.a. "Double Byte Code Page".
CVE-1999-0726 2000-01-04 n/a An attacker can conduct a denial of service in Windows NT by executing a program with a malformed file image header.
CVE-1999-0727 2000-03-22 n/a A kernel leak in the OpenBSD kernel allows IPsec packets to be sent unencrypted.
CVE-1999-0728 2000-01-04 n/a A Windows NT user can disable the keyboard or mouse by directly calling the IOCTLs which control them.
CVE-1999-0729 2001-05-07 n/a Buffer overflow in Lotus Notes LDAP (NLDAP) allows an attacker to conduct a denial of service through the ldap_search request.
CVE-1999-0730 2000-01-04 n/a The zsoelim program in the Debian man-db package allows local users to overwrite files via a symlink attack.
CVE-1999-0731 2000-01-04 n/a The KDE klock program allows local users to unlock a session using malformed input.
CVE-1999-0732 2000-01-04 n/a The logging facility of the Debian smtp-refuser package allows local users to delete arbitrary files using symbolic links.
CVE-1999-0733 2000-03-22 n/a Buffer overflow in VMWare 1.0.1 for Linux via a long HOME environmental variable.
CVE-1999-0734 2000-01-18 n/a A default configuration of CiscoSecure Access Control Server (ACS) allows remote users to modify the server database without authentication.
CVE-1999-0735 2000-01-04 n/a KDE K-Mail allows local users to gain privileges via a symlink attack in temporary user directories.
CVE-1999-0736 2000-02-04 n/a The showcode.asp sample file in IIS and Site Server allows remote attackers to read arbitrary files.
CVE-1999-0737 2000-02-04 n/a The viewcode.asp sample file in IIS and Site Server allows remote attackers to read arbitrary files.
CVE-1999-0738 2000-02-04 n/a The code.asp sample file in IIS and Site Server allows remote attackers to read arbitrary files.
CVE-1999-0739 2000-02-04 n/a The codebrws.asp sample file in IIS and Site Server allows remote attackers to read arbitrary files.
CVE-1999-0740 2000-03-22 n/a Remote attackers can cause a denial of service on Linux in.telnetd telnet daemon through a malformed TERM environmental variable.
CVE-1999-0741 2000-02-04 n/a QMS CrownNet Unix Utilities for 2060 allows root to log on without a password.
CVE-1999-0742 2000-01-18 n/a The Debian mailman package uses weak authentication, which allows attackers to gain privileges.
CVE-1999-0743 2000-01-18 n/a Trn allows local users to overwrite other users' files via symlinks.
CVE-1999-0744 2000-01-04 n/a Buffer overflow in Netscape Enterprise Server and FastTrask Server allows remote attackers to gain privileges via a long HTTP GET request.
CVE-1999-0745 2000-01-04 n/a Buffer overflow in Source Code Browser Program Database Name Server Daemon (pdnsd) for the IBM AIX C Set ++ compiler.
CVE-1999-0746 2000-03-22 n/a A default configuration of in.identd in SuSE Linux waits 120 seconds between requests, allowing a remote attacker to conduct a denial of service.
CVE-1999-0747 2000-04-18 n/a Denial of service in BSDi Symmetric Multiprocessing (SMP) when an fstat call is made when the system has a high CPU load.
CVE-1999-0748 2000-02-04 n/a Buffer overflows in Red Hat net-tools package.
CVE-1999-0749 2000-01-04 n/a Buffer overflow in Microsoft Telnet client in Windows 95 and Windows 98 via a malformed Telnet argument.
CVE-1999-0750 2000-02-04 n/a Hotmail allows Javascript to be executed via the HTML STYLE tag, allowing remote attackers to execute commands on the user's Hotmail account.
CVE-1999-0751 2000-01-04 n/a Buffer overflow in Accept command in Netscape Enterprise Server 3.6 with the SSL Handshake Patch.
CVE-1999-0752 2000-01-04 n/a Denial of service in Netscape Enterprise Server via a buffer overflow in the SSL handshake.
CVE-1999-0753 2000-01-18 n/a The w3-msql CGI script provided with Mini SQL allows remote attackers to view restricted directories.
CVE-1999-0754 2000-06-02 n/a The INN inndstart program allows local users to gain privileges by specifying an alternate configuration file using the INNCONF environmental variable.
CVE-1999-0755 2000-01-04 n/a Windows NT RRAS and RAS clients cache a user's password even if the user has not selected the "Save password" option.
CVE-1999-0756 2001-09-18 n/a ColdFusion Administrator with Advanced Security enabled allows remote users to stop the ColdFusion server via the Start/Stop utility.
CVE-1999-0757 2001-02-14 n/a The ColdFusion CFCRYPT program for encrypting CFML templates has weak encryption, allowing attackers to decrypt the templates.
CVE-1999-0758 2001-05-07 n/a Netscape Enterprise 3.5.1 and FastTrack 3.01 servers allow a remote attacker to view source code to scripts by appending a %20 to the script's URL.
CVE-1999-0759 2000-10-13 n/a Buffer overflow in FuseMAIL POP service via long USER and PASS commands.
CVE-1999-0760 2001-05-07 n/a Undocumented ColdFusion Markup Language (CFML) tags and functions in the ColdFusion Administrator allow users to gain additional privileges.
CVE-1999-0761 2000-01-04 n/a Buffer overflow in FreeBSD fts library routines allows local user to modify arbitrary files via the periodic program.
CVE-1999-0762 2000-01-04 n/a When Javascript is embedded within the TITLE tag, Netscape Communicator allows a remote attacker to use the "about" protocol to gain access to browser information.
CVE-1999-0763 2000-01-04 n/a NetBSD on a multi-homed host allows ARP packets on one network to modify ARP entries on another connected network.
CVE-1999-0764 2000-01-04 n/a NetBSD allows ARP packets to overwrite static ARP entries.
CVE-1999-0765 2000-01-04 n/a SGI IRIX midikeys program allows local users to modify arbitrary files via a text editor.
CVE-1999-0766 2000-01-04 n/a The Microsoft Java Virtual Machine allows a malicious Java applet to execute arbitrary commands outside of the sandbox environment.
CVE-1999-0767 2000-02-04 n/a Buffer overflow in Solaris libc, ufsrestore, and rcp via LC_MESSAGES environmental variable.
CVE-1999-0768 2000-01-18 n/a Buffer overflow in Vixie Cron on Red Hat systems via the MAILTO environmental variable.
CVE-1999-0769 2000-01-04 n/a Vixie Cron on Linux systems allows local users to set parameters of sendmail commands via the MAILTO environmental variable.
CVE-1999-0770 2000-01-18 n/a Firewall-1 sets a long timeout for connections that begin with ACK or other packets except SYN, allowing an attacker to conduct a denial of service via a large number of connection attempts to unresponsive systems.
CVE-1999-0771 2000-01-04 n/a The web components of Compaq Management Agents and the Compaq Survey Utility allow a remote attacker to read arbitrary files via a .. (dot dot) attack.
CVE-1999-0772 2000-01-04 n/a Denial of service in Compaq Management Agents and the Compaq Survey Utility via a long string sent to port 2301.
CVE-1999-0773 2000-04-18 n/a Buffer overflow in Solaris lpset program allows local users to gain root access.
CVE-1999-0774 2000-01-04 n/a Buffer overflows in Mars NetWare Emulation (NWE, mars_nwe) package via long directory names.
CVE-1999-0775 2000-01-18 n/a Cisco Gigabit Switch routers running IOS allow remote attackers to forward unauthorized packets due to improper handling of the "established" keyword in an access list.
CVE-1999-0776 2000-02-04 n/a Alibaba HTTP server allows remote attackers to read files via a .. (dot dot) attack.
CVE-1999-0777 2000-01-04 n/a IIS FTP servers may allow a remote attacker to read or delete files on the server, even if they have "No Access" permissions.
CVE-1999-0778 2000-03-22 n/a Buffer overflow in Xi Graphics Accelerated-X server allows local users to gain root access via a long display or query parameter.
CVE-1999-0779 2000-01-04 n/a Denial of service in HP-UX SharedX recserv program.
CVE-1999-0780 2000-04-25 n/a KDE klock allows local users to kill arbitrary processes by specifying an arbitrary PID in the .kss.pid file.
CVE-1999-0781 2000-04-25 n/a KDE allows local users to execute arbitrary commands by setting the KDEDIR environmental variable to modify the search path that KDE uses to locate its executables.
CVE-1999-0782 2000-04-25 n/a KDE kppp allows local users to create a directory in an arbitrary location via the HOME environmental variable.
CVE-1999-0783 2000-03-22 n/a FreeBSD allows local users to conduct a denial of service by creating a hard link from a device special file to a file on an NFS file system.
CVE-1999-0784 2001-02-14 n/a Denial of service in Oracle TNSLSNR SQL*Net Listener via a malformed string to the listener port, aka NERP.
CVE-1999-0785 2000-03-22 n/a The INN inndstart program allows local users to gain root privileges via the "pathrun" parameter in the inn.conf file.
CVE-1999-0786 2000-03-22 n/a The dynamic linker in Solaris allows a local user to create arbitrary files via the LD_PROFILE environmental variable and a symlink attack.
CVE-1999-0787 2000-10-13 n/a The SSH authentication agent follows symlinks via a UNIX domain socket.
CVE-1999-0788 2000-10-13 n/a Arkiea nlservd allows remote attackers to conduct a denial of service.
CVE-1999-0789 2000-03-22 n/a Buffer overflow in AIX ftpd in the libc library.
CVE-1999-0790 2000-04-18 n/a A remote attacker can read information from a Netscape user's cache via JavaScript.
CVE-1999-0791 2000-10-13 n/a Hybrid Network cable modems do not include an authentication mechanism for administration, allowing remote attackers to compromise the system through the HSMP protocol.
CVE-1999-0792 2000-02-04 n/a ROUTERmate has a default SNMP community name which allows remote attackers to modify its configuration.
CVE-1999-0793 2000-01-04 n/a Internet Explorer allows remote attackers to read files by redirecting data to a Javascript applet.
CVE-1999-0794 2000-01-04 n/a Microsoft Excel does not warn a user when a macro is present in a Symbolic Link (SYLK) format file.
CVE-1999-0795 2000-02-04 n/a The NIS+ rpc.nisd server allows remote attackers to execute certain RPC calls without authentication to obtain system information, disable logging, or modify caches.
CVE-1999-0796 2000-03-22 n/a FreeBSD T/TCP Extensions for Transactions can be subjected to spoofing attacks.
CVE-1999-0797 2000-03-22 n/a NIS finger allows an attacker to conduct a denial of service via a large number of finger requests, resulting in a large number of NIS queries.
CVE-1999-0798 2000-02-04 n/a Buffer overflow in bootpd on OpenBSD, FreeBSD, and Linux systems via a malformed header type.
CVE-1999-0799 2000-04-18 n/a Buffer overflow in bootpd 2.4.3 and earlier via a long boot file location.
CVE-1999-0800 2001-05-07 n/a The GetFile.cfm file in Allaire Forums allows remote attackers to read files through a parameter to GetFile.cfm.
CVE-1999-0801 2002-03-09 n/a BMC Patrol allows remote attackers to gain access to an agent by spoofing frames.
CVE-1999-0802 2000-01-04 n/a Buffer overflow in Internet Explorer 5 allows remote attackers to execute commands via a malformed Favorites icon.
CVE-1999-0803 2000-04-25 n/a The fwluser script in AIX eNetwork Firewall allows local users to write to arbitrary files via a symlink attack.
CVE-1999-0804 2000-01-04 n/a Denial of service in Linux 2.2.x kernels via malformed ICMP packets containing unusual types, codes, and IP header lengths.
CVE-1999-0805 2001-02-14 n/a Novell NetWare Transaction Tracking System (TTS) in Novell 4.11 and earlier allows remote attackers to cause a denial of service via a large number of requests.
CVE-1999-0806 2000-03-22 n/a Buffer overflow in Solaris dtprintinfo program.
CVE-1999-0807 2000-01-04 n/a The Netscape Directory Server installation procedure leaves sensitive information in a file that is accessible to local users.
CVE-1999-0808 2001-09-12 n/a Multiple buffer overflows in ISC DHCP Distribution server (dhcpd) 1.0 and 2.0 allow a remote attacker to cause a denial of service (crash) and possibly execute arbitrary commands via long options.
CVE-1999-0809 2000-01-04 n/a Netscape Communicator 4.x with Javascript enabled does not warn a user of cookie settings, even if they have selected the option to "Only accept cookies originating from the same server as the page being viewed".
CVE-1999-0810 2000-01-04 n/a Denial of service in Samba NETBIOS name service daemon (nmbd).
CVE-1999-0811 2000-01-18 n/a Buffer overflow in Samba smbd program via a malformed message command.
CVE-1999-0812 2000-01-04 n/a Race condition in Samba smbmnt allows local users to mount file systems in arbitrary locations.
CVE-1999-0813 2000-04-18 n/a Cfingerd with ALLOW_EXECUTION enabled does not properly drop privileges when it executes a program on behalf of the user, allowing local users to gain root privileges.
CVE-1999-0814 2000-01-04 n/a Red Hat pump DHCP client allows remote attackers to gain root access in some configurations.
CVE-1999-0815 2002-03-09 n/a Memory leak in SNMP agent in Windows NT 4.0 before SP5 allows remote attackers to conduct a denial of service (memory exhaustion) via a large number of queries.
CVE-1999-0816 2000-02-04 n/a The Motorola CableRouter allows any remote user to connect to and configure the router on port 1024.
CVE-1999-0817 2000-01-04 n/a Lynx WWW client allows a remote attacker to specify command-line parameters which Lynx uses when calling external programs to handle certain protocols, e.g. telnet.
CVE-1999-0818 2000-02-04 n/a Buffer overflow in Solaris kcms_configure via a long NETPATH environmental variable.
CVE-1999-0819 2000-06-02 n/a NTMail does not disable the VRFY command, even if the administrator has explicitly disabled it.
CVE-1999-0820 2000-07-12 n/a FreeBSD seyon allows users to gain privileges via a modified PATH variable for finding the xterm and seyon-emu commands.
CVE-1999-0821 2000-02-04 n/a FreeBSD seyon allows local users to gain privileges by providing a malicious program in the -emulator argument.
CVE-1999-0822 2000-02-04 n/a Buffer overflow in Qpopper (qpop) 3.0 allows remote root access via AUTH command.
CVE-1999-0823 2000-10-13 n/a Buffer overflow in FreeBSD xmindpath allows local users to gain privileges via -f argument.
CVE-1999-0824 2000-04-25 n/a A Windows NT user can use SUBST to map a drive letter to a folder, which is not unmapped after the user logs off, potentially allowing that user to modify the location of folders accessed by later users.
CVE-1999-0825 2000-02-04 n/a The default permissions for UnixWare /var/mail allow local users to read and modify other users' mail.
CVE-1999-0826 2000-10-13 n/a Buffer overflow in FreeBSD angband allows local users to gain privileges.
CVE-1999-0827 2000-02-04 n/a By default, Internet Explorer 5.0 and other versions enables the "Navigate sub-frames across different domains" option, which allows frame spoofing.
CVE-1999-0828 2000-02-04 n/a UnixWare pkg commands such as pkginfo, pkgcat, and pkgparam allow local users to read arbitrary files via the dacread permission.
CVE-1999-0829 2000-02-04 n/a HP Secure Web Console uses weak encryption.
CVE-1999-0830 2000-02-04 n/a Buffer overflow in SCO UnixWare Xsco command via a long argument.
CVE-1999-0831 2000-01-18 n/a Denial of service in Linux syslogd via a large number of connections.
CVE-1999-0832 2000-06-02 n/a Buffer overflow in NFS server on Linux allows attackers to execute commands via a long pathname.
CVE-1999-0833 2000-01-04 n/a Buffer overflow in BIND 8.2 via NXT records.
CVE-1999-0834 2000-01-18 n/a Buffer overflow in RSAREF2 via the encryption and decryption functions in the RSAREF library.
CVE-1999-0835 2000-01-04 n/a Denial of service in BIND named via malformed SIG records.
CVE-1999-0836 2000-06-02 n/a UnixWare uidadmin allows local users to modify arbitrary files via a symlink attack.
CVE-1999-0837 2000-01-04 n/a Denial of service in BIND by improperly closing TCP sessions via so_linger.
CVE-1999-0838 2000-06-02 n/a Buffer overflow in Serv-U FTP 2.5 allows remote users to conduct a denial of service via the SITE command.
CVE-1999-0839 2000-01-04 n/a Windows NT Task Scheduler installed with Internet Explorer 5 allows a user to gain privileges by modifying the job after it has been scheduled.
CVE-1999-0840 2000-02-04 n/a Buffer overflow in CDE dtmail and dtmailpr programs allows local users to gain privileges via a long -f option.
CVE-1999-0841 2000-02-04 n/a Buffer overflow in CDE mailtool allows local users to gain root privileges via a long MIME Content-Type.
CVE-1999-0842 2000-06-02 n/a Symantec Mail-Gear 1.0 web interface server allows remote users to read arbitrary files via a .. (dot dot) attack.
CVE-1999-0843 2000-02-04 n/a Denial of service in Cisco routers running NAT via a PORT command from an FTP client to a Telnet port.
CVE-1999-0844 2000-02-04 n/a Denial of service in MDaemon WorldClient and WebConfig services via a long URL.
CVE-1999-0845 2000-02-04 n/a Buffer overflow in SCO su program allows local users to gain root access via a long username.
CVE-1999-0846 2000-02-04 n/a Denial of service in MDaemon 2.7 via a large number of connection attempts.
CVE-1999-0847 2000-01-18 n/a Buffer overflow in free internet chess server (FICS) program, xboard.
CVE-1999-0848 2000-01-04 n/a Denial of service in BIND named via consuming more than "fdmax" file descriptors.
CVE-1999-0849 2000-01-04 n/a Denial of service in BIND named via maxdname.
CVE-1999-0850 2000-02-04 n/a The default permissions for Endymion MailMan allow local users to read email or modify files.
CVE-1999-0851 2000-01-04 n/a Denial of service in BIND named via naptr.
CVE-1999-0852 2000-02-04 n/a IBM WebSphere sets permissions that allow a local user to modify a deinstallation script or its data files stored in /usr/bin.
CVE-1999-0853 2000-01-18 n/a Buffer overflow in Netscape Enterprise Server and Netscape FastTrack Server allows remote attackers to gain privileges via the HTTP Basic Authentication procedure.
CVE-1999-0854 2000-06-02 n/a Ultimate Bulletin Board stores data files in the cgi-bin directory, allowing remote attackers to view the data if an error occurs when the HTTP server attempts to execute the file.
CVE-1999-0855 2000-02-04 n/a Buffer overflow in FreeBSD gdc program.
CVE-1999-0856 2000-06-02 n/a login in Slackware 7.0 allows remote attackers to identify valid users on the system by reporting an encryption error when an account is locked or does not exist.
CVE-1999-0857 2000-02-04 n/a FreeBSD gdc program allows local users to modify files via a symlink attack.
CVE-1999-0858 2000-01-04 n/a Internet Explorer 5 allows a remote attacker to modify the IE client's proxy configuration via a malicious Web Proxy Auto-Discovery (WPAD) server.
CVE-1999-0859 2000-06-02 n/a Solaris arp allows local users to read files via the -f parameter, which lists lines in the file that do not parse properly.
CVE-1999-0860 2000-02-04 n/a Solaris chkperm allows local users to read files owned by bin via the VMSYS environmental variable and a symlink attack.
CVE-1999-0861 2000-01-04 n/a Race condition in the SSL ISAPI filter in IIS and other servers may leak information in plaintext.
CVE-1999-0862 2000-02-04 n/a Insecure directory permissions in RPM distribution for PostgreSQL allows local users to gain privileges by reading a plaintext password file.
CVE-1999-0863 2000-02-04 n/a Buffer overflow in FreeBSD seyon via HOME environmental variable, -emulator argument, -modems argument, or the GUI.
CVE-1999-0864 2000-06-02 n/a UnixWare programs that dump core allow a local user to modify files via a symlink attack on the ./core.pid file.
CVE-1999-0865 2000-06-02 n/a Buffer overflow in CommuniGatePro via a long string to the HTTP configuration port.
CVE-1999-0866 2000-06-02 n/a Buffer overflow in UnixWare xauto program allows local users to gain root privilege.
CVE-1999-0867 2000-01-04 n/a Denial of service in IIS 4.0 via a flood of HTTP requests with malformed headers.
CVE-1999-0868 2000-01-04 n/a ucbmail allows remote attackers to execute commands via shell metacharacters that are passed to it from INN.
CVE-1999-0869 2000-01-04 n/a Internet Explorer 3.x to 4.01 allows a remote attacker to insert malicious content into a frame of another web site, aka frame spoofing.
CVE-1999-0870 2000-01-04 n/a Internet Explorer 4.01 allows remote attackers to read arbitrary files by pasting a file name into the file upload control, aka untrusted scripted paste.
CVE-1999-0871 2000-01-04 n/a Internet Explorer 4.0 and 4.01 allow a remote attacker to read files via IE's cross frame security, aka the "Cross Frame Navigate" vulnerability.
CVE-1999-0872 2000-02-04 n/a Buffer overflow in Vixie cron allows local users to gain root access via a long MAILTO environment variable in a crontab file.
CVE-1999-0873 2000-10-13 n/a Buffer overflow in Skyfull mail server via MAIL FROM command.
CVE-1999-0874 2000-06-02 n/a Buffer overflow in IIS 4.0 allows remote attackers to cause a denial of service via a malformed request for files with .HTR, .IDC, or .STM extensions.
CVE-1999-0875 2000-01-18 n/a DHCP clients with ICMP Router Discovery Protocol (IRDP) enabled allow remote attackers to modify their default routes.
CVE-1999-0876 2000-01-04 n/a Buffer overflow in Internet Explorer 4.0 via EMBED tag.
CVE-1999-0877 2000-01-04 n/a Internet Explorer 5 allows remote attackers to read files via an ExecCommand method called on an IFRAME.
CVE-1999-0878 2000-01-04 n/a Buffer overflow in WU-FTPD and related FTP servers allows remote attackers to gain root privileges via MAPPING_CHDIR.
CVE-1999-0879 2000-01-04 n/a Buffer overflow in WU-FTPD and related FTP servers allows remote attackers to gain root privileges via macro variables in a message file.
CVE-1999-0880 2000-01-04 n/a Denial of service in WU-FTPD via the SITE NEWER command, which does not free memory properly.
CVE-1999-0881 2000-01-18 n/a Falcon web server allows remote attackers to read arbitrary files via a .. (dot dot) attack.
CVE-1999-0882 2000-02-04 n/a Falcon web server allows remote attackers to determine the absolute path of the web root via long file names.
CVE-1999-0883 2000-01-04 n/a Zeus web server allows remote attackers to read arbitrary files by specifying the file name in an option to the search engine.
CVE-1999-0884 2000-01-04 n/a The Zeus web server administrative interface uses weak encryption for its passwords.
CVE-1999-0885 2000-02-04 n/a Alibaba web server allows remote attackers to execute commands via a pipe character in a malformed URL.
CVE-1999-0886 2000-01-04 n/a The security descriptor for RASMAN allows users to point to an alternate location via the Windows NT Service Control Manager.
CVE-1999-0887 2000-01-04 n/a FTGate web interface server allows remote attackers to read files via a .. (dot dot) attack.
CVE-1999-0888 2000-04-18 n/a dbsnmp in Oracle Intelligent Agent allows local users to gain privileges by setting the ORACLE_HOME environmental variable, which dbsnmp uses to find the nmiconf.tcl script.
CVE-1999-0889 2000-04-25 n/a Cisco 675 routers running CBOS allow remote attackers to establish telnet sessions if an exec or superuser password has not been set.
CVE-1999-0890 2000-03-22 n/a iHTML Merchant allows remote attackers to obtain sensitive information or execute commands via a code parsing error.
CVE-1999-0891 2000-01-04 n/a The "download behavior" in Internet Explorer 5 allows remote attackers to read arbitrary files via a server-side redirect.
CVE-1999-0892 2000-01-04 n/a Buffer overflow in Netscape Communicator before 4.7 via a dynamic font whose length field is less than the size of the font.
CVE-1999-0893 2000-03-22 n/a userOsa in SCO OpenServer allows local users to corrupt files via a symlink attack.
CVE-1999-0894 2000-01-04 n/a Red Hat Linux screen program does not use Unix98 ptys, allowing local users to write to other terminals.
CVE-1999-0895 2000-04-25 n/a Firewall-1 does not properly restrict access to LDAP attributes.
CVE-1999-0896 2000-03-22 n/a Buffer overflow in RealNetworks RealServer administration utility allows remote attackers to execute arbitrary commands via a long username and password.
CVE-1999-0897 2000-04-25 n/a iChat ROOMS Webserver allows remote attackers to read arbitrary files via a .. (dot dot) attack.
CVE-1999-0898 2000-01-18 n/a Buffer overflows in Windows NT 4.0 print spooler allow remote attackers to gain privileges or cause a denial of service via a malformed spooler request.
CVE-1999-0899 2000-01-18 n/a The Windows NT 4.0 print spooler allows a local user to execute arbitrary commands due to inappropriate permissions that allow the user to specify an alternate print provider.
CVE-1999-0900 2000-01-04 n/a Buffer overflow in rpc.yppasswdd allows a local user to gain privileges via MD5 hash generation.
CVE-1999-0901 2000-01-04 n/a ypserv allows a local user to modify the GECOS and login shells of other users.
CVE-1999-0902 2000-01-04 n/a ypserv allows local administrators to modify password tables.
CVE-1999-0903 2000-04-18 n/a genfilt in the AIX Packet Filtering Module does not properly filter traffic to destination ports greater than 32767.
CVE-1999-0904 2000-10-13 n/a Buffer overflow in BFTelnet allows remote attackers to cause a denial of service via a long username.
CVE-1999-0905 2000-01-18 n/a Denial of service in Axent Raptor firewall via malformed zero-length IP options.
CVE-1999-0906 2000-04-18 n/a Buffer overflow in sccw allows local users to gain root access via the HOME environmental variable.
CVE-1999-0907 2000-01-04 n/a sccw allows local users to read arbitrary files.
CVE-1999-0908 2000-03-22 n/a Denial of service in Solaris TCP streams driver via a malicious connection that causes the server to panic as a result of recursive calls to mutex_enter.
CVE-1999-0909 2000-01-04 n/a Multihomed Windows systems allow a remote attacker to bypass IP source routing restrictions via a malformed packet with IP options, aka the "Spoofed Route Pointer" vulnerability.
CVE-1999-0910 2000-02-04 n/a Microsoft Site Server and Commercial Internet System (MCIS) do not set an expiration for a cookie, which could then be cached by a proxy and inadvertently used by a different user.
CVE-1999-0911 2000-02-04 n/a Buffer overflow in ProFTPD, wu-ftpd, and beroftpd allows remote attackers to gain root access via a series of MKD and CWD commands that create nested directories.
CVE-1999-0912 2000-10-13 n/a FreeBSD VFS cache (vfs_cache) allows local users to cause a denial of service by opening a large number of files.
CVE-1999-0913 2000-02-04 n/a dfire.cgi script in Dragon-Fire IDS allows remote users to execute commands via shell metacharacters.
CVE-1999-0914 2000-01-04 n/a Buffer overflow in the FTP client in the Debian GNU/Linux netstd package.
CVE-1999-0915 2000-01-04 n/a URL Live! web server allows remote attackers to read arbitrary files via a .. (dot dot) attack.
CVE-1999-0916 2000-03-22 n/a WebTrends software stores account names and passwords in a file which does not have restricted access permissions.
CVE-1999-0917 2000-01-04 n/a The Preloader ActiveX control used by Internet Explorer allows remote attackers to read arbitrary files.
CVE-1999-0918 2000-01-04 n/a Denial of service in various Windows systems via malformed, fragmented IGMP packets.
CVE-1999-0919 2000-02-04 n/a A memory leak in a Motorola CableRouter allows remote attackers to conduct a denial of service via a large number of telnet connections.
CVE-1999-0920 2000-03-22 n/a Buffer overflow in the pop-2d POP daemon in the IMAP package allows remote attackers to gain privileges via the FOLD command.
CVE-1999-0921 2002-03-09 n/a BMC Patrol allows any remote attacker to flood its UDP port, causing a denial of service.
CVE-1999-0922 2001-05-07 n/a An example application in ColdFusion Server 4.0 allows remote attackers to view source code via the sourcewindow.cfm file.
CVE-1999-0923 2001-02-14 n/a Sample runnable code snippets in ColdFusion Server 4.0 allow remote attackers to read files, conduct a denial of service, or use the server as a proxy for other HTTP calls.
CVE-1999-0924 2001-05-07 n/a The Syntax Checker in ColdFusion Server 4.0 allows remote attackers to conduct a denial of service.
CVE-1999-0925 2000-02-04 n/a UnityMail allows remote attackers to conduct a denial of service via a large number of MIME headers.
CVE-1999-0926 2001-09-12 n/a Apache allows remote attackers to conduct a denial of service via a large number of MIME headers.
CVE-1999-0927 2000-10-13 n/a NTMail allows remote attackers to read arbitrary files via a .. (dot dot) attack.
CVE-1999-0928 2000-10-13 n/a Buffer overflow in SmartDesk WebSuite allows remote attackers to cause a denial of service via a long URL.
CVE-1999-0929 2000-02-04 n/a Novell NetWare with Novell-HTTP-Server or YAWN web servers allows remote attackers to conduct a denial of service via a large number of HTTP GET requests.
CVE-1999-0930 2002-03-09 n/a wwwboard allows a remote attacker to delete message board articles via a malformed argument.
CVE-1999-0931 2000-03-22 n/a Buffer overflow in Mediahouse Statistics Server allows remote attackers to execute commands.
CVE-1999-0932 2000-10-13 n/a Mediahouse Statistics Server allows remote attackers to read the administrator password, which is stored in cleartext in the ss.cfg file.
CVE-1999-0933 2000-01-04 n/a TeamTrack web server allows remote attackers to read arbitrary files via a .. (dot dot) attack.
CVE-1999-0934 2000-01-04 n/a classifieds.cgi allows remote attackers to read arbitrary files via shell metacharacters.
CVE-1999-0935 2000-01-04 n/a classifieds.cgi allows remote attackers to execute arbitrary commands by specifying them in a hidden variable in a CGI form.
CVE-1999-0936 2000-01-04 n/a BNBSurvey survey.cgi program allows remote attackers to execute commands via shell metacharacters.
CVE-1999-0937 2000-01-04 n/a BNBForm allows remote attackers to read arbitrary files via the automessage hidden form variable.
CVE-1999-0938 2000-01-04 n/a MBone SDR Package allows remote attackers to execute commands via shell metacharacters in Session Initiation Protocol (SIP) messages.
CVE-1999-0939 2000-01-04 n/a Denial of service in Debian IRC Epic/epic4 client via a long string.
CVE-1999-0940 2000-01-04 n/a Buffer overflow in mutt mail client allows remote attackers to execute commands via malformed MIME messages.
CVE-1999-0941 2000-02-04 n/a Mutt mail client allows a remote attacker to execute commands via shell metacharacters.
CVE-1999-0942 2000-10-13 n/a UnixWare dos7utils allows a local user to gain root privileges by using the STATICMERGE environmental variable to find a script which it executes.
CVE-1999-0943 2000-01-04 n/a Buffer overflow in OpenLink 3.2 allows remote attackers to gain privileges via a long GET request to the web configurator.
CVE-1999-0944 2000-02-04 n/a IBM WebSphere ikeyman tool uses weak encryption to store a password for a key database that is used for SSL connections.
CVE-1999-0945 2001-05-07 n/a Buffer overflow in Internet Mail Service (IMS) for Microsoft Exchange 5.5 and 5.0 allows remote attackers to conduct a denial of service via AUTH or AUTHINFO commands.
CVE-1999-0946 2000-10-13 n/a Buffer overflow in Yamaha MidiPlug via a Text variable in an EMBED tag.
CVE-1999-0947 2000-01-04 n/a AN-HTTPd provides example CGI scripts test.bat, input.bat, input2.bat, and envout.bat, which allow remote attackers to execute commands via shell metacharacters.
CVE-1999-0948 2000-02-04 n/a Buffer overflow in uum program for Canna input system allows local users to gain root privileges.
CVE-1999-0949 2000-02-04 n/a Buffer overflow in canuum program for Canna input system allows local users to gain root privileges.
CVE-1999-0950 2000-04-25 n/a Buffer overflow in WFTPD FTP server allows remote attackers to gain root access via a series of MKD and CWD commands that create nested directories.
CVE-1999-0951 2000-01-04 n/a Buffer overflow in OmniHTTPd CGI program imagemap.exe allows remote attackers to execute commands.
CVE-1999-0952 2000-02-04 n/a Buffer overflow in Solaris lpstat via class argument allows local users to gain root access.
CVE-1999-0953 2000-01-04 n/a WWWBoard stores encrypted passwords in a password file that is under the web root and thus accessible by remote attackers.
CVE-1999-0954 2000-10-13 n/a WWWBoard has a default username and default password.
CVE-1999-0955 2000-01-18 n/a Race condition in wu-ftpd and BSDI ftpd allows remote attackers to gain root access via the SITE EXEC command.
CVE-1999-0956 2000-01-04 n/a The NeXT NetInfo _writers property allows local users to gain root privileges or conduct a denial of service.
CVE-1999-0957 2000-04-25 n/a MajorCool mj_key_cache program allows local users to modify files via a symlink attack.
CVE-1999-0958 2000-04-18 n/a sudo 1.5.x allows local users to execute arbitrary commands via a .. (dot dot) attack.
CVE-1999-0959 2000-07-12 n/a IRIX startmidi program allows local users to modify arbitrary files via a symlink attack.
CVE-1999-0960 2000-01-04 n/a IRIX cdplayer allows local users to create directories in arbitrary locations via a command line option.
CVE-1999-0961 2000-04-18 n/a HPUX sysdiag allows local users to gain root privileges via a symlink attack during log file creation.
CVE-1999-0962 2000-01-04 n/a Buffer overflow in HPUX passwd command allows local users to gain root privileges via a command line option.
CVE-1999-0963 2000-01-04 n/a FreeBSD mount_union command allows local users to gain root privileges via a symlink attack.
CVE-1999-0964 2000-03-22 n/a Buffer overflow in FreeBSD setlocale in the libc module allows attackers to execute arbitrary code via a long PATH_LOCALE environment variable.
CVE-1999-0965 2000-01-04 n/a Race condition in xterm allows local users to modify arbitrary files via the logging option.
CVE-1999-0966 2000-03-22 n/a Buffer overflow in Solaris getopt in libc allows local users to gain root privileges via a long argv[0].
CVE-1999-0967 2000-01-04 n/a Buffer overflow in the HTML library used by Internet Explorer, Outlook Express, and Windows Explorer via the res: local resource protocol.
CVE-1999-0968 2002-03-09 n/a Buffer overflow in BNC IRC proxy allows remote attackers to gain privileges.
CVE-1999-0969 2000-01-04 n/a The Windows NT RPC service allows remote attackers to conduct a denial of service using spoofed malformed RPC packets which generate an error message that is sent to the spoofed host, potentially setting up a loop, aka Snork.
CVE-1999-0970 2000-02-04 n/a The OmniHTTPD visadmin.exe program allows a remote attacker to conduct a denial of service via a malformed URL which causes a large number of temporary files to be created.
CVE-1999-0971 2000-10-13 n/a Buffer overflow in Exim allows local users to gain root privileges via a long :include: option in a .forward file.
CVE-1999-0972 2000-01-04 n/a Buffer overflow in Xshipwars xsw program.
CVE-1999-0973 2000-01-04 n/a Buffer overflow in Solaris snoop program allows remote attackers to gain root privileges via a long domain name when snoop is running in verbose mode.
CVE-1999-0974 2000-01-04 n/a Buffer overflow in Solaris snoop allows remote attackers to gain root privileges via GETQUOTA requests to the rpc.rquotad service.
CVE-1999-0975 2000-01-04 n/a The Windows help system can allow a local user to execute commands as another user by editing a table of contents metafile with a .CNT extension and modifying the topic action to include the commands to be executed when the .hlp file is accessed.
CVE-1999-0976 2000-06-02 n/a Sendmail allows local users to reinitialize the aliases database via the newaliases command, then cause a denial of service by interrupting Sendmail.
CVE-1999-0977 2000-01-04 n/a Buffer overflow in Solaris sadmind allows remote attackers to gain root privileges using a NETMGT_PROC_SERVICE request.
CVE-1999-0978 2000-01-04 n/a htdig allows remote attackers to execute commands via filenames with shell metacharacters.
CVE-1999-0979 2000-01-04 n/a The SCO UnixWare privileged process system allows local users to gain root privileges by using a debugger such as gdb to insert traps into _init before the privileged process is executed.
CVE-1999-0980 2000-01-04 n/a Windows NT Service Control Manager (SCM) allows remote attackers to cause a denial of service via a malformed argument in a resource enumeration request.
CVE-1999-0981 2000-01-04 n/a Internet Explorer 5.01 and earlier allows a remote attacker to create a reference to a client window and use a server-side redirect to access local files via that window, aka "Server-side Page Reference Redirect."
CVE-1999-0982 2000-01-04 n/a The Sun Web-Based Enterprise Management (WBEM) installation script stores a password in plaintext in a world readable file.
CVE-1999-0983 2000-02-04 n/a Whois Internic Lookup program whois.cgi allows remote attackers to execute commands via shell metacharacters in the domain entry.
CVE-1999-0984 2000-02-04 n/a Matt's Whois program whois.cgi allows remote attackers to execute commands via shell metacharacters in the domain entry.
CVE-1999-0985 2000-02-04 n/a CC Whois program whois.cgi allows remote attackers to execute commands via shell metacharacters in the domain entry.
CVE-1999-0986 2000-01-04 n/a The ping command in Linux 2.0.3x allows local users to cause a denial of service by sending large packets with the -R (record route) option.
CVE-1999-0987 2000-01-04 n/a Windows NT does not properly download a system policy if the domain user logs into the domain with a space at the end of the domain name.
CVE-1999-0988 2000-02-04 n/a UnixWare pkgtrans allows local users to read arbitrary files via a symlink attack.
CVE-1999-0989 2000-01-04 n/a Buffer overflow in Internet Explorer 5 directshow filter (MSDXM.OCX) allows remote attackers to execute commands via the vnd.ms.radio protocol.
CVE-1999-0990 2000-02-04 n/a Error messages generated by gdm with the VerboseAuth setting allows an attacker to identify valid users on a system.
CVE-1999-0991 2000-01-04 n/a Buffer overflow in GoodTech Telnet Server NT allows remote users to cause a denial of service via a long login name.
CVE-1999-0992 2000-01-18 n/a HP VirtualVault with the PHSS_17692 patch allows unprivileged processes to bypass access restrictions via the Trusted Gateway Proxy (TGP).
CVE-1999-0993 2000-02-04 n/a Modifications to ACLs (Access Control Lists) in Microsoft Exchange 5.5 do not take effect until the directory store cache is refreshed.
CVE-1999-0994 2000-01-18 n/a Windows NT with SYSKEY reuses the keystream that is used for encrypting SAM password hashes, allowing an attacker to crack passwords.
CVE-1999-0995 2000-01-18 n/a Windows NT Local Security Authority (LSA) allows remote attackers to cause a denial of service via malformed arguments to the LsaLookupSids function which looks up the SID, aka "Malformed Security Identifier Request."
CVE-1999-0996 2000-03-22 n/a Buffer overflow in Infoseek Ultraseek search engine allows remote attackers to execute commands via a long GET request.
CVE-1999-0997 2000-04-25 n/a wu-ftp with FTP conversion enabled allows an attacker to execute commands via a malformed file name that is interpreted as an argument to the program that does the conversion, e.g. tar or uncompress.
CVE-1999-0998 2000-03-22 n/a Cisco Cache Engine allows an attacker to replace content in the cache.
CVE-1999-0999 2000-01-18 n/a Microsoft SQL 7.0 server allows a remote attacker to cause a denial of service via a malformed TDS packet.
CVE-1999-1000 2000-03-22 n/a The web administration interface for Cisco Cache Engine allows remote attackers to view performance statistics.
CVE-1999-1001 2000-01-18 n/a Cisco Cache Engine allows a remote attacker to gain access via a null username and password.
CVE-1999-1002 2000-02-04 n/a Netscape Navigator uses weak encryption for storing a user's Netscape mail password.
CVE-1999-1003 2000-02-04 n/a War FTP Daemon 1.70 allows remote attackers to cause a denial of service by flooding it with connections.
CVE-1999-1004 2000-10-13 n/a Buffer overflow in the POP server POProxy for the Norton Anti-Virus protection NAV2000 program via a large USER command.
CVE-1999-1005 2000-04-25 n/a Groupwise web server GWWEB.EXE allows remote attackers to read arbitrary files with .htm extensions via a .. (dot dot) attack using the HELP parameter.
CVE-1999-1006 2000-02-04 n/a Groupwise web server GWWEB.EXE allows remote attackers to determine the real path of the web server via the HELP parameter.
CVE-1999-1007 2000-04-25 n/a Buffer overflow in VDO Live Player allows remote attackers to execute commands on the VDO client via a malformed .vdo file.
CVE-1999-1008 2000-04-18 n/a xsoldier program allows local users to gain root access via a long argument.
CVE-1999-1009 2000-02-04 n/a The Disney Go Express Search allows remote attackers to access and modify search information for users by connecting to an HTTP server on the user's system.
CVE-1999-1010 2000-04-25 n/a An SSH 1.2.27 server allows a client to use the "none" cipher, even if it is not allowed by the server policy.
CVE-1999-1011 2000-06-02 n/a The Remote Data Service (RDS) DataFactory component of Microsoft Data Access Components (MDAC) in IIS 3.x and 4.x exposes unsafe methods, which allows remote attackers to execute arbitrary commands.
CVE-1999-1012 2001-09-12 n/a SMTP component of Lotus Domino 4.6.1 on AS/400, and possibly other operating systems, allows a remote attacker to crash the mail server via a long string.
CVE-1999-1013 2001-09-12 n/a named-xfer in AIX 4.1.5 and 4.2.1 allows members of the system group to overwrite system files to gain root access via the -f parameter and a malformed zone file.
CVE-1999-1014 2002-03-09 n/a Buffer overflow in mail command in Solaris 2.7 and 2.7 allows local users to gain privileges via a long -m argument.
CVE-1999-1015 2001-09-12 n/a Buffer overflow in Apple AppleShare Mail Server 5.0.3 on MacOS 8.1 and earlier allows a remote attacker to cause a denial of service (crash) via a long HELO command.
CVE-1999-1016 2001-09-12 n/a Microsoft HTML control as used in (1) Internet Explorer 5.0, (2) FrontPage Express, (3) Outlook Express 5, and (4) Eudora, and possibly others, allows remote malicious web site or HTML emails to cause a denial of service (100% CPU consumption) via large HTML form fields such as text inputs in a table cell.
CVE-1999-1017 2001-09-12 n/a Seattle Labs Emurl 2.0, and possibly earlier versions, stores e-mail attachments in a specific directory with scripting enabled, which allows a malicious ASP file attachment to execute when the recipient opens the message.
CVE-1999-1018 2001-09-12 n/a IPChains in Linux kernels 2.2.10 and earlier does not reassemble IP fragments before checking the header information, which allows a remote attacker to bypass the filtering rules using several fragments with 0 offsets.
CVE-1999-1019 2002-03-09 n/a SpectroSERVER in Cabletron Spectrum Enterprise Manager 5.0 installs a directory tree with insecure permissions, which allows local users to replace a privileged executable (processd) with a Trojan horse, facilitating a root or Administrator compromise.
CVE-1999-1020 2001-09-12 n/a The installation of Novell Netware NDS 5.99 provides an unauthenticated client with Read access for the tree, which allows remote attackers to access sensitive information such as users, groups, and readable objects via CX.EXE and NLIST.EXE.
CVE-1999-1021 2002-03-09 n/a NFS on SunOS 4.1 through 4.1.2 ignores the high order 16 bits in a 32 bit UID, which allows a local user to gain root access if the lower 16 bits are set to 0, as fixed by the NFS jumbo patch upgrade.
CVE-1999-1022 2001-09-12 n/a serial_ports administrative program in IRIX 4.x and 5.x trusts the user's PATH environmental variable to find and execute the ls program, which allows local users to gain root privileges via a Trojan horse ls program.
CVE-1999-1023 2001-09-12 n/a useradd in Solaris 7.0 does not properly interpret certain date formats as specified in the "-e" (expiration date) argument, which could allow users to login after their accounts have expired.
CVE-1999-1024 2001-09-12 n/a ip_print procedure in Tcpdump 3.4a allows remote attackers to cause a denial of service via a packet with a zero length header, which causes an infinite loop and core dump when tcpdump prints the packet.
CVE-1999-1025 2001-09-12 n/a CDE screen lock program (screenlock) on Solaris 2.6 does not properly lock an unprivileged user's console session when the host is an NIS+ client, which allows others with physical access to login with any string.
CVE-1999-1026 2001-09-12 n/a aspppd on Solaris 2.5 x86 allows local users to modify arbitrary files and gain root privileges via a symlink attack on the /tmp/.asppp.fifo file.
CVE-1999-1027 2002-03-09 n/a Solaris 2.6 HW3/98 installs admintool with world-writable permissions, which allows local users to gain privileges by replacing it with a Trojan horse program.
CVE-1999-1028 2002-03-09 n/a Symantec pcAnywhere 8.0 allows remote attackers to cause a denial of service (CPU utilization) via a large amount of data to port 5631.
CVE-1999-1029 2001-09-12 n/a SSH server (sshd2) before 2.0.12 does not properly record login attempts if the connection is closed before the maximum number of tries, allowing a remote attacker to guess the password without showing up in the audit logs.
CVE-1999-1030 2001-09-12 n/a counter.exe 2.70 allows a remote attacker to cause a denial of service (hang) via an HTTP request that ends in %0A (newline), which causes a malformed entry in the counter log that produces an access violation.
CVE-1999-1031 2001-09-12 n/a counter.exe 2.70 allows a remote attacker to cause a denial of service (hang) via a long argument.
CVE-1999-1032 2002-03-09 n/a Vulnerability in LAT/Telnet Gateway (lattelnet) on Ultrix 4.1 and 4.2 allows attackers to gain root privileges.
CVE-1999-1033 2001-09-12 n/a Microsoft Outlook Express before 4.72.3612.1700 allows a malicious user to send a message that contains a .., which can inadvertently cause Outlook to re-enter POP3 command mode and cause the POP3 session to hang.
CVE-1999-1034 2002-03-09 n/a Vulnerability in login in AT&T System V Release 4 allows local users to gain privileges.
CVE-1999-1035 2002-03-09 n/a IIS 3.0 and 4.0 on x86 and Alpha allows remote attackers to cause a denial of service (hang) via a malformed GET request, aka the IIS "GET" vulnerability.
CVE-1999-1036 2001-09-12 n/a COPS 1.04 allows local users to overwrite or create arbitrary files via a symlink attack on temporary files in (1) res_diff, (2) ca.src, and (3) mail.chk.
CVE-1999-1037 2002-03-09 n/a rex.satan in SATAN 1.1.1 allows local users to overwrite arbitrary files via a symlink attack on the /tmp/rex.$$ file.
CVE-1999-1038 2001-09-12 n/a Tiger 2.2.3 allows local users to overwrite arbitrary files via a symlink attack on various temporary files in Tiger's default working directory, as defined by the WORKDIR variable.
CVE-1999-1039 2001-09-12 n/a Vulnerability in (1) diskalign and (2) diskperf in IRIX 6.4 patches 2291 and 2848 allow a local user to create root-owned files leading to a root compromise.
CVE-1999-1040 2001-09-12 n/a Vulnerabilities in (1) ipxchk and (2) ipxlink in NetWare Client 1.0 on IRIX 6.3 and 6.4 allows local users to gain root access via a modified IFS environmental variable.
CVE-1999-1041 2001-09-12 n/a Buffer overflow in mscreen on SCO OpenServer 5.0 and SCO UNIX 3.2v4 allows a local user to gain root access via (1) a long TERM environmental variable and (2) a long entry in the .mscreenrc file.
CVE-1999-1042 2001-09-12 n/a Cisco Resource Manager (CRM) 1.0 and 1.1 creates world-readable log files and temporary files, which may expose sensitive information, to local users such as user IDs, passwords and SNMP community strings.
CVE-1999-1043 2001-09-12 n/a Microsoft Exchange Server 5.5 and 5.0 does not properly handle (1) malformed NNTP data, or (2) malformed SMTP data, which allows remote attackers to cause a denial of service (application error).
CVE-1999-1044 2002-03-09 n/a Vulnerability in Advanced File System Utility (advfs) in Digital UNIX 4.0 through 4.0d allows local users to gain privileges.
CVE-1999-1045 2002-03-09 n/a pnserver in RealServer 5.0 and earlier allows remote attackers to cause a denial of service by sending a short, malformed request.
CVE-1999-1046 2001-09-12 n/a Buffer overflow in IMonitor in IMail 5.0 allows remote attackers to cause a denial of service, and possibly execute arbitrary commands, via a long string to port 8181.
CVE-1999-1047 2002-03-09 n/a When BSDI patches for Gauntlet 5.0 BSDI are installed in a particular order, Gauntlet allows remote attackers to bypass firewall access restrictions, and does not log the activities.
CVE-1999-1048 2002-03-09 n/a Buffer overflow in bash 2.0.0, 1.4.17, and other versions allows local attackers to gain privileges by creating an extremely large directory name, which is inserted into the password prompt via the \w option in the PS1 environmental variable when another user changes into that directory.
CVE-1999-1049 2001-09-12 n/a ARCserve NT agents use weak encryption (XOR) for passwords, which allows remote attackers to sniff the authentication request to port 6050 and decrypt the password.
CVE-1999-1050 2001-09-12 n/a Directory traversal vulnerability in Matt Wright FormHandler.cgi script allows remote attackers to read arbitrary files via (1) a .. (dot dot) in the reply_message_attach attachment parameter, or (2) by specifying the filename as a template.