-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpd.xml
7856 lines (7156 loc) · 535 KB
/
httpd.xml
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
<Vulns> <Vulnerability added="2012-04-12" gvid="ID101059" id="101059" modified="2012-07-17" published="1998-08-07" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:C/I:C/A:C)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Denial of Service</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-1999-1199</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.2</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载Apache 1.3.2:
<a href="
http://www.apache.org" target="_blank">
http://www.apache.org</a></Solutions> <cnnvd>CNNVD-199808-009</cnnvd> <cvsscode>10.0</cvsscode> <severity>Critical</severity> <Description>当客户端发送有同头名的大量标题时,存在一个严重的问题。Apache耗尽内存以简单地存储所接收的数据本身,比所需的时间要快。即随着接受的标头越来越多,内存使用也越来越快,而不是以恒定的速率增加。这使得基于该方法的拒绝服务攻击更有效,从而导致Apache以恒定的速率使用内存,因为攻击者发送较少的数据。</Description> <name>apache httpd:多个头拒绝服务漏洞(CVE-1999-1199)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101060" id="101060" modified="2017-11-09" published="2000-05-31" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">1284</id>
<id name="CVE">CVE-2000-0505</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">4575</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.14</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:
<a href="
http://www.apache.org/websrc/cvsweb.cgi/apache-1.3/src/os/win32/util_win32.c.diff?r1=1.33&r2=1.34" target="_blank">
http://www.apache.org/websrc/cvsweb.cgi/apache-1.3/src/os/win32/util_win32.c.diff?r1=1.33&r2=1.34</a></Solutions> <cnnvd>CNNVD-200005-109</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>在Windows系统Apache上的安全漏洞允许用户通过发送一个精心构造的请求,查看目录列表而不是默认的HTML页面。</Description> <name>apache httpd:请求会导致在NT上显示目录列表(CVE-2000-0505)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101061" id="101061" modified="2017-11-09" published="2000-12-19" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">1728</id>
<id name="CALDERA">CSSA-2000-035.0</id>
<id name="CVE">CVE-2000-0913</id>
<id name="MANDRAKE">MDKSA-2000:060</id>
<id name="REDHAT">RHSA-2000:088</id>
<id name="REDHAT">RHSA-2000:095</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">5310</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.14</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>临时解决方法:
如果您不能立刻安装补丁或者升级,CNNVD建议您采取以下措施以降低威胁:
厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:
<a href="
http://www.apache.org" target="_blank">
http://www.apache.org</a>
MandrakeSoft
------------
MandrakeSoft已经为此发布了一个安全公告(MDKSA-2000:060)以及相应补丁:
MDKSA-2000:060:apache update
链接:<a href="
http://www.linux-mandrake.com/en/security/2000/MDKSA-2000-060.php3" target="_blank">
http://www.linux-mandrake.com/en/security/2000/MDKSA-2000-060.php3</a>
补丁下载:
<a href="ftp://ftp.linux.tucows.com/pub/distributions/Mandrake/Mandrake/updates" target="_blank">ftp://ftp.linux.tucows.com/pub/distributions/Mandrake/Mandrake/updates</a>
<a href="ftp://ftp.free.fr/pub/Distributions_Linux/Mandrake/updates" target="_blank">ftp://ftp.free.fr/pub/Distributions_Linux/Mandrake/updates</a>
RedHat
------
RedHat已经为此发布了一个安全公告(RHSA-2000:088-04)以及相应补丁:
RHSA-2000:088-04:Updated apache, php, mod_perl, and auth_ldap packages available.
链接:<a href="https://www.redhat.com/support/errata/RHSA-2000-088.html" target="_blank">https://www.redhat.com/support/errata/RHSA-2000-088.html</a>
补丁下载:
Red Hat Linux 5.2:
alpha:
<a href="ftp://updates.redhat.com/5.2/alpha/apache-1.3.14-2.5.x.alpha.rpm" target="_blank">ftp://updates.redhat.com/5.2/alpha/apache-1.3.14-2.5.x.alpha.rpm</a>
<a href="ftp://updates.redhat.com/5.2/alpha/apache-devel-1.3.14-2.5.x.alpha.rpm" target="_blank">ftp://updates.redhat.com/5.2/alpha/apache-devel-1.3.14-2.5.x.alpha.rpm</a>
<a href="ftp://updates.redhat.com/5.2/alpha/mod_perl-1.19-2.alpha.rpm" target="_blank">ftp://updates.redhat.com/5.2/alpha/mod_perl-1.19-2.alpha.rpm</a>
<a href="ftp://updates.redhat.com/5.2/alpha/php-3.0.17-1.5.x.alpha.rpm" target="_blank">ftp://updates.redhat.com/5.2/alpha/php-3.0.17-1.5.x.alpha.rpm</a>
<a href="ftp://updates.redhat.com/5.2/alpha/php-manual-3.0.17-1.5.x.alpha.rpm" target="_blank">ftp://updates.redhat.com/5.2/alpha/php-manual-3.0.17-1.5.x.alpha.rpm</a>
<a href="ftp://updates.redhat.com/5.2/alpha/php-pgsql-3.0.17-1.5.x.alpha.rpm" target="_blank">ftp://updates.redhat.com/5.2/alpha/php-pgsql-3.0.17-1.5.x.alpha.rpm</a>
sparc:
<a href="ftp://updates.redhat.com/5.2/sparc/apache-1.3.14-2.5.x.sparc.rpm" target="_blank">ftp://updates.redhat.com/5.2/sparc/apache-1.3.14-2.5.x.sparc.rpm</a>
<a href="ftp://updates.redhat.com/5.2/sparc/apache-devel-1.3.14-2.5.x.sparc.rpm" target="_blank">ftp://updates.redhat.com/5.2/sparc/apache-devel-1.3.14-2.5.x.sparc.rpm</a>
<a href="ftp://updates.redhat.com/5.2/sparc/mod_perl-1.19-2.sparc.rpm" target="_blank">ftp://updates.redhat.com/5.2/sparc/mod_perl-1.19-2.sparc.rpm</a>
<a href="ftp://updates.redhat.com/5.2/sparc/php-3.0.17-1.5.x.sparc.rpm" target="_blank">ftp://updates.redhat.com/5.2/sparc/php-3.0.17-1.5.x.sparc.rpm</a>
<a href="ftp://updates.redhat.com/5.2/sparc/php-manual-3.0.17-1.5.x.sparc.rpm" target="_blank">ftp://updates.redhat.com/5.2/sparc/php-manual-3.0.17-1.5.x.sparc.rpm</a>
<a href="ftp://updates.redhat.com/5.2/sparc/php-pgsql-3.0.17-1.5.x.sparc.rpm" target="_blank">ftp://updates.redhat.com/5.2/sparc/php-pgsql-3.0.17-1.5.x.sparc.rpm</a>
i386:
<a href="ftp://updates.redhat.com/5.2/i386/apache-1.3.14-2.5.x.i386.rpm" target="_blank">ftp://updates.redhat.com/5.2/i386/apache-1.3.14-2.5.x.i386.rpm</a>
<a href="ftp://updates.redhat.com/5.2/i386/apache-devel-1.3.14-2.5.x.i386.rpm" target="_blank">ftp://updates.redhat.com/5.2/i386/apache-devel-1.3.14-2.5.x.i386.rpm</a>
<a href="ftp://updates.redhat.com/5.2/i386/mod_perl-1.19-2.i386.rpm" target="_blank">ftp://updates.redhat.com/5.2/i386/mod_perl-1.19-2.i386.rpm</a>
<a href="ftp://updates.redhat.com/5.2/i386/php-3.0.17-1.5.x.i386.rpm" target="_blank">ftp://updates.redhat.com/5.2/i386/php-3.0.17-1.5.x.i386.rpm</a>
<a href="ftp://updates.redhat.com/5.2/i386/php-manual-3.0.17-1.5.x.i386.rpm" target="_blank">ftp://updates.redhat.com/5.2/i386/php-manual-3.0.17-1.5.x.i386.rpm</a>
<a href="ftp://updates.redhat.com/5.2/i386/php-pgsql-3.0.17-1.5.x.i386.rpm" target="_blank">ftp://updates.redhat.com/5.2/i386/php-pgsql-3.0.17-1.5.x.i386.rpm</a>
sources:
<a href="ftp://updates.red</Solutions> <cnnvd>CNNVD-200012-143</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>受影响的资产很容易受到此漏洞影响,只有当它运行下列模块之一:mod_rewrite和特定的正则表达式用于RewriteRule指令。审查验证您的Web服务器配置。重写模块,mod_rewrite可允许访问Web服务器上的任何文件。该漏洞发生仅使用在重写规则指示正则表达式引用的某些特定情况下:如果一个重写规则的目标包含正则表达式引用然后攻击者将能够访问服务器上的任何文件</Description> <name>apache httpd:包含引用的重写规则允许访问任何文件(CVE-2000-0913)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101062" id="101062" modified="2013-06-06" published="2000-10-13" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2000-1204</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.9</low>
<high inclusive="0">1.3.14</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200010-002</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>受影响的资产很容易受到此漏洞影响,只有当它运行下列模块之一:mod_vhost_alias。审查验证您的Web服务器配置。如果cgi-bin目录在文件根目录下运行,大型虚拟主机模块的用户安全问题,mod_vhost_alias导致源被发送至CGI。然而,在根目录下运行的cgi-bin目录不合常规。</Description> <name>apache httpd:大规模的虚拟主机可以显示CGI源(CVE-2000-1204)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101063" id="101063" modified="2013-08-22" published="2000-02-01" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2000-1205</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">10938</id>
<id name="XF">35597</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.12</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>临时解决方法:
如果您不能立刻安装补丁或者升级,CNNVD建议您采取以下措施以降低威胁:
* 删除printenv脚本。
厂商补丁:
Apache Software Foundation
--------------------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:
<a href="
http://httpd.apache.org/info/css-security/apache_1.3.11_css_patch.txt" target="_blank">
http://httpd.apache.org/info/css-security/apache_1.3.11_css_patch.txt</a></Solutions> <cnnvd>CNNVD-200002-010</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Apache容易受跨站点脚本问题的影响。结果表明,如果服务器或脚本处理的请求不小心编码显示给用户的所有信息,恶意的HTML标签可以嵌入到客户端的Web请求中。利用这些漏洞的攻击者可以,例如,获取访问您使用的私有历史记录的副本给你验证到其他网站。</Description> <name>apache httpd:跨站点脚本可以揭示私人会话信息(CVE-2000-1205)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101064" id="101064" modified="2013-06-06" published="1999-08-20" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2000-1206</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.11</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载1.3.27或之后版本:
<a href="
http://httpd.apache.org/download.cgi" target="_blank">
http://httpd.apache.org/download.cgi</a></Solutions> <cnnvd>CNNVD-199908-040</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>受影响的资产很容易受到此漏洞影响,只有当它运行下列模块之一:mod_rewrite,mod_vhost_alias。审查验证您的Web服务器配置。可能会出现安全问题,使用大规模基于域名的虚拟主机(使用新的mod_vhost_alias模块)或特殊mod_rewrite规则的网站。</Description> <name>apache httpd:大规模的虚拟主机安全问题(CVE-2000-1206)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101065" id="101065" modified="2015-02-13" published="2001-10-30" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">22083</id>
<id name="CVE">CVE-2001-0729</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.20</low>
<high inclusive="0">1.3.22</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>临时解决方法:
如果您不能立刻安装补丁或者升级,CNNVD建议您采取以下措施以降低威胁:
厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:
<a href="
http://www.apache.org" target="_blank">
http://www.apache.org</a></Solutions> <cnnvd>CNNVD-200110-133</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>在Apache1.3.20的Win32移植中发现一个漏洞。提交长URI的客户端可能会返回一个目录列表,而不是默认的索引页。</Description> <name>apache httpd:请求会导致显示目录列表(CVE-2001-0729)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101066" id="101066" modified="2013-08-22" published="2001-10-30" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CONECTIVA">CLA-2001:430</id>
<id name="CVE">CVE-2001-0730</id>
<id name="MANDRAKE">MDKSA-2001:077</id>
<id name="REDHAT">RHSA-2001:126</id>
<id name="REDHAT">RHSA-2001:164</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">7419</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.22</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200110-141</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>受影响的资产很容易受到此漏洞影响,只有在分割日志文件的支持程序使用。审查验证您的Web服务器配置。在拆分日志文件的支持计划中发现一个漏洞。有特制的主机:标头的请求可能允许系统上具有.log扩展任何文件被写入。</Description> <name>apache HTTPD:分割日志文件可导致被写入任意日志文件(CVE-2001-0730)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101067" id="101067" modified="2013-08-22" published="2001-10-01" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">3009</id>
<id name="CVE">CVE-2001-0731</id>
<id name="MANDRAKE">MDKSA-2001:077</id>
<id name="REDHAT">RHSA-2001:126</id>
<id name="REDHAT">RHSA-2001:164</id>
<id name="SGI">20020301-01-P</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">8275</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.22</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>
解决方法:
建议您在httpd.conf中关闭"Index"选项。
</Solutions> <cnnvd>CNNVD-200110-003</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>受影响的资产会受到该漏洞影响,如果仅多视图用于协商目录索引。审查验证您的Web服务器配置。当多视图用于协商目录索引时发现一个漏洞。在一些配置中,带有M= D的QUERY_STRING请求URI可以返回目录列表,而不是预期的索引页。</Description> <name>apache httpd:多视图可能会显示一个目录列表(CVE-2001-0731)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101068" id="101068" modified="2013-08-22" published="2001-03-12" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">2503</id>
<id name="CVE">CVE-2001-0925</id>
<id name="DEBIAN">DSA-067</id>
<id name="MANDRAKE">MDKSA-2001:077</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">6921</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.11</low>
<high inclusive="0">1.3.19</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:
<a href="
http://httpd.apache.org/download.cgi" target="_blank">
http://httpd.apache.org/download.cgi</a></Solutions> <cnnvd>CNNVD-200103-004</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>受影响的资产很容易受到此漏洞的影响,只有当它运行下列模块之一:mod_autoindex,mod_dir,mod_negotiation模块。审查验证您的Web服务器配置。如果使用多道斜线人工创建长路径,默认安装会导致mod_negotiation模块和mod_dir或mod_autoindex显示目录列表而不是多视点index.html文件。</Description> <name>apache httpd:请求会导致显示目录列表(CVE-2001-0925)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101069" id="101069" modified="2013-08-22" published="2001-05-12" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:N/A:P)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Denial of Service</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">2740</id>
<id name="CVE">CVE-2001-1342</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">6527</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.20</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载Apache 1.3.20版本:
<a href="
http://httpd.apache.org/dist/httpd/apache_1.3.20.tar.gz" target="_blank">
http://httpd.apache.org/dist/httpd/apache_1.3.20.tar.gz</a></Solutions> <cnnvd>CNNVD-200105-086</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>在Apache 1.3中的Win32和OS2端口发现一个漏洞。客户端提交一个精心构造的URI会引起子进程中出现一般保护错误,造就了它必须由运营商来清除,以恢复运行的消息框。此漏洞推出任何标识的手段来破坏服务器而非引入一个可能的拒绝服务攻击。</Description> <name>apache httpd:Win32和OS2上的拒绝服务攻击(CVE-2001-1342)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101070" id="101070" modified="2013-08-22" published="2002-03-21" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Remote Execution</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">4335</id>
<id name="CVE">CVE-2002-0061</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">8589</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.24</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>临时解决方法:
如果您不能立刻安装补丁或者升级,CNNVD建议您采取以下措施以降低威胁:
* 删除cgi-bin目录下所有批处理文件。
厂商补丁:
Apache Group
------------
目前1.3.24win32和2.0.34-BETA win32的发行版本已经修复这个安全问题,请到厂商的主页下载:
<a href="
http://www.apache.org" target="_blank">
http://www.apache.org</a></Solutions> <cnnvd>CNNVD-200203-045</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>受影响的资产会受到该漏洞影响仅当使用批处理文件的CGI脚本时。审查验证您的Web服务器配置。Apache的Win32 1.3.24之前版本和2.0.34-β允许远程攻击者通过传递给批处理文件的CGI脚本参数执行任意指令。</Description> <name>apache httpd:ApacheWin32远程命令执行(CVE-2002-0061)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101232" id="101232" modified="2018-04-17" published="2002-07-03" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Denial of Service</tag>
<tag>Remote Execution</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">20005</id>
<id name="BID">5033</id>
<id name="CALDERA">CSSA-2002-029.0</id>
<id name="CALDERA">CSSA-2002-SCO.31</id>
<id name="CALDERA">CSSA-2002-SCO.32</id>
<id name="CERT">CA-2002-17</id>
<id name="CERT-VN">944335</id>
<id name="CONECTIVA">CLSA-2002:498</id>
<id name="CVE">CVE-2002-0392</id>
<id name="DEBIAN">DSA-131</id>
<id name="DEBIAN">DSA-132</id>
<id name="DEBIAN">DSA-133</id>
<id name="MANDRAKE">MDKSA-2002:039</id>
<id name="REDHAT">RHSA-2002:103</id>
<id name="REDHAT">RHSA-2002:117</id>
<id name="REDHAT">RHSA-2002:118</id>
<id name="REDHAT">RHSA-2002:126</id>
<id name="REDHAT">RHSA-2002:150</id>
<id name="REDHAT">RHSA-2003:106</id>
<id name="SGI">20020605-01-A</id>
<id name="SGI">20020605-01-I</id>
<id name="SUSE">SuSE-SA:2002:022</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_20.html</id>
<id name="XF">9249</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.26</high>
</range>
</version>
<version>
<range>
<low>2.0.35</low>
<high inclusive="0">2.0.37</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>临时解决方法:
此安全漏洞没有好的临时解决方案,由于已经有一个有效的攻击代码被发布,我们建议您立刻升级到Apache最新版本。
厂商补丁:
Apache Group
------------
Apache Group已经为此发布了一个安全公告(SB-20020617)以及相应的升级程序:
SB-20020617:Apache httpd: vulnerability with chunked encoding
链接:<a href="
http://httpd.apache.org/info/security_bulletin_20020617.txt" target="_blank">
http://httpd.apache.org/info/security_bulletin_20020617.txt</a>
您可以在下列地址下载最新版本:
Apache 1.3.26:
Apache 2.0.39:
<a href="
http://www.apache.org/dist/httpd/" target="_blank">
http://www.apache.org/dist/httpd/</a>
Debian
------
Debian已经为此发布了一个安全公告(DSA-131-1)以及相应补丁:
DSA-131-1:Apache chunk handling vulnerability
链接:<a href="
http://www.debian.org/security/2002/dsa-131" target="_blank">
http://www.debian.org/security/2002/dsa-131</a>
补丁下载:
Source archives:
<a href="
http://security.debian.org/dists/stable/updates/main/source/apache_1.3.9-14.1.diff.gz" target="_blank">
http://security.debian.org/dists/stable/updates/main/source/apache_1.3.9-14.1.diff.gz</a>
<a href="
http://security.debian.org/dists/stable/updates/main/source/apache_1.3.9-14.1.dsc" target="_blank">
http://security.debian.org/dists/stable/updates/main/source/apache_1.3.9-14.1.dsc</a>
<a href="
http://security.debian.org/dists/stable/updates/main/source/apache_1.3.9.orig.tar.gz" target="_blank">
http://security.debian.org/dists/stable/updates/main/source/apache_1.3.9.orig.tar.gz</a>
Architecture independent archives:
<a href="
http://security.debian.org/dists/stable/updates/main/binary-all/apache-doc_1.3.9-14.1_all.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-all/apache-doc_1.3.9-14.1_all.deb</a>
Alpha architecture:
<a href="
http://security.debian.org/dists/stable/updates/main/binary-alpha/apache-common_1.3.9-14.1_alpha.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-alpha/apache-common_1.3.9-14.1_alpha.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-alpha/apache-dev_1.3.9-14.1_alpha.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-alpha/apache-dev_1.3.9-14.1_alpha.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-alpha/apache_1.3.9-14.1_alpha.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-alpha/apache_1.3.9-14.1_alpha.deb</a>
ARM architecture:
<a href="
http://security.debian.org/dists/stable/updates/main/binary-arm/apache-common_1.3.9-14.1_arm.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-arm/apache-common_1.3.9-14.1_arm.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-arm/apache-dev_1.3.9-14.1_arm.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-arm/apache-dev_1.3.9-14.1_arm.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-arm/apache_1.3.9-14.1_arm.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-arm/apache_1.3.9-14.1_arm.deb</a>
Intel IA-32 architecture:
<a href="
http://security.debian.org/dists/stable/updates/main/binary-i386/apache-common_1.3.9-14.1_i386.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-i386/apache-common_1.3.9-14.1_i386.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-i386/apache-dev_1.3.9-14.1_i386.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-i386/apache-dev_1.3.9-14.1_i386.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-i386/apache_1.3.9-14.1_i386.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-i386/apache_1.3.9-14.1_i386.deb</a>
Motorola 680x0 architecture:
<a href="
http://security.debian.org/dists/stable/updates/main/binary-m68k/apache-common_1.3.9-14.1_m68k.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-m68k/apache-common_1.3.9-14.1_m68k.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-m68k/apache-dev_1.3.9-14.1_m68k.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-m68k/apache-dev_1.3.9-14.1_m68k.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-m68k/apache_1.3.9-14.1_m68k.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-m68k/apache_1.3.9-14.1_m68k.deb</a>
PowerPC architecture:
<a href="
http://security.debian.org/dists/stable/updates/main/binary-powerpc/apache-common_1.3.9-14.1_powerpc.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-powerpc/apache-common_1.3.9-14.1_powerpc.deb</a>
<a href="
http://security.debian.org/dists/stable/updates/main/binary-powerpc/apache-dev_1.3.9-14.1_powerpc.deb" target="_blank">
http://security.debian.org/dists/stable/updates/main/binary-powerpc/apache-dev_1.3.9-14.1_powerpc.deb</a>
<a href="
http://security.debian.org/dists/stable/up" target="_blank">
http://security.debian.org/dists/stable/up</a>
补丁安装方法:
1. 手工安装补丁包:
首先,使用下面的命令来下载补丁软件:
# wget url (url是补丁下载链接地址)
然后,使用下面的命令来安装补丁:
# dpkg -i file.deb (file是相应的补丁名)
2. 使用apt-get自动安装补丁包:
首先,使用下面的命令更新内部数据库:
# apt-get update
然后,使用下面的命令安装更新软件包:
# apt-get upgrade
FreeBSD
-------
FreeBSD已经为此发布了一个安全公告(FreeBSD-SN-02:04)以及相应补丁:
FreeBSD-SN-02:04:security issues in ports
链接:<a href="ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SN-02:04" target="_blank">ftp://ftp.freebsd.org/pub/FreeBSD/CERT/advisories/FreeBSD-SN-02:04</a> .asc
为了升级一个修复后的port包,可以采用下列两种方法中的任意一种:
1) 更新您的"Ports Collection",然后重建、重新安装port.您可以使用下列几个工具来使升级工作更简单:
/usr/ports/devel/portcheckout
/usr/ports/misc/porteasy
/usr/ports/sysutils/portupgrade
2) 卸载旧的port软件包,从下列地址获取并安装一个新的包:
[i386]
<a href="ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stable/All/" target="_blank">ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/i386/packages-4-stable/All/</a>
OpenBSD
-------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:
<a href="ftp://ftp.openbsd.org/pub/OpenBSD/patches/3.1/common/005_httpd.patch" target="_blank">ftp://ftp.openbsd.org/pub/OpenBSD/patches/3.1/common/005_httpd.patch</a>
更多信息可以参考如下链接:
<a href="
http://www.openbsd.org/errata.html#httpd" target="_blank">
http://www.openbsd.org/errata.html#httpd</a>
RedHat
------
RedHat已经为此发布了一个安全公告(RHSA-2002:103-13)以及相应补丁:
RHSA-2002:103-13:Updated Apache packages fix chunked encoding issue
链接:<a href="https://www.redhat.com/support/errata/RHSA-2002-103.html" target="_blank">https://www.redhat.com/support/errata/RHSA-2002-103.html</a>
补丁下载:
Red Hat Linux 6.2:
SRPMS:
<a href="ftp://updates.redhat.com/6.2/en/os/SRPMS/apache-1.3.22-5.6.src.rpm" target="_blank">ftp://updates.redhat.com/6.2/en/os/SRPMS/apache-1.3.22-5.6.src.rpm</a>
alpha:
<a href="ftp://updates.redhat.com/6.2/en/os/alpha/apache-1.3.22-5.6.alpha.rpm" target="_blank">ftp://updates.redhat.com/6.2/en/os/alpha/apache-1.3.22-5.6.alpha.rpm</a>
<a href="ftp://updates.redhat.com/6.2/en/os/alpha/apache-devel-1.3.22-5.6.alpha.rpm" target="_blank">ftp://updates.redhat.com/6.2/en/os/alpha/apache-devel-1.3.22-5.6.alpha.rpm</a>
<a href="ftp://updates.redhat.com/6.2/en/os/alpha/apache-manual-1.3.22-5.6.alpha.rpm" target="_blank">ftp://updates.redhat.com/6.2/en/os/alpha/apache-manual-1.3.22-5.6.alpha.rpm</a>
i386:
<a href="ftp://updates.redhat.com/6.2/en/os/i386/apache-1.3.22-5.6.i386.rpm" target="_blank">ftp://updates.redhat.com/6.2/en/os/i386/apache-1.3.22-5.6.i386.rpm</a>
<a href="ftp://updates.redhat.com/6.2/en/os/i386/apache-devel-1.3.22-5.6.i386.rpm" target="_blank">ftp://updates.redhat.com/6.2/en/os/i386/apache-devel-1.3.22-5.6.i386.rpm</a>
<a href="ftp://updates.redhat.com/6.2/en/os/i386/apache-manual-1.3.22-5.6.i386.rpm" target="_blank">ftp://updates.redhat.com/6.2/en/os/i386/apache-manual-1.3.22-5.6.i386.rpm</a>
sparc:
<a href="ftp://updates.redhat.com/6.2/en/os/sparc/apache-1.3.22-5.6.sparc.rpm" target="_blank">ftp://updates.redhat.com/6.2/en/os/sparc/apache-1.3.22-5.6.sparc.rpm</a>
</Solutions> <cnnvd>CNNVD-200207-041</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>恶意请求可能会导致各种影响,从系统资源的相对无害的增加到拒绝服务攻击,以及在某些情况下执行任意远程代码的能力。</Description> <name>apache httpd:Apache分块编码漏洞(CVE-2002-0392)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101071" id="101071" modified="2020-01-30" published="2002-09-05" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">5485</id>
<id name="BID">5486</id>
<id name="CVE">CVE-2002-0654</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_20.html</id>
<id name="XF">9875</id>
<id name="XF">9876</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>2.0.35</low>
<high inclusive="0">2.0.40</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>厂商补丁:
Apache Group
------------
目前厂商已经发布了2.0.40以修复这个安全问题,请到厂商的主页下载最新版本:
<a href="
http://www.apache.org/dist/httpd/" target="_blank">
http://www.apache.org/dist/httpd/</a></Solutions> <cnnvd>CNNVD-200209-023</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>一个路径曝光揭示存在于多视点类型映射协商(如默认的错误文件),其中一个模块会报告typemapped.VAR文件的完整路径时,多个文档或文件不能够提供服务。在CGI/ cgid另外一个路径,揭示曝光时的Apache无法调用脚本。该模块将报告与QUOT;不能创建子进程/path-to-script/script.pl&quot;揭示了脚本的完整路径。</Description> <name>apache httpd:路径揭示披露(CVE-2002-0654)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101227" id="101227" modified="2013-08-22" published="2002-08-12" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">5434</id>
<id name="CVE">CVE-2002-0661</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_20.html</id>
<id name="XF">9808</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>2.0.35</low>
<high inclusive="0">2.0.40</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>临时解决方法:
如果您不能立刻安装补丁或者升级,CNNVD建议您采取以下措施以降低威胁:
* 编辑httpd.conf文件,在第一个'Alias'或者'Redirect'指示前,增加如下全局服务配置:
RedirectMatch 400 "\\\.\."
* 使用UNIX版本的Apache。
厂商补丁:
Apache Group
------------
目前厂商已经发布了2.0.40以修复这个安全问题,请到厂商的主页下载最新版本:
<a href="
http://www.apache.org/dist/httpd/" target="_blank">
http://www.apache.org/dist/httpd/</a></Solutions> <cnnvd>CNNVD-200208-118</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>受影响的资产会受到该漏洞影响仅如果某些文件系统配置都存在。审查验证您的Web服务器配置。一定的URI将绕过安全并允许用户调用或访问取决于系统配置中的任何文件。影响Windows,OS2,Netware和Cygwin平台。</Description> <name>apache httpd:路径漏洞(CVE-2002-0661)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101072" id="101072" modified="2013-08-22" published="2002-10-11" version="2.0">
<cvss>(AV:L/AC:L/Au:N/C:C/I:C/A:C)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Denial of Service</tag>
<tag>Privilege Escalation</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">5884</id>
<id name="CONECTIVA">CLA-2002:530</id>
<id name="CVE">CVE-2002-0839</id>
<id name="DEBIAN">DSA-187</id>
<id name="DEBIAN">DSA-188</id>
<id name="DEBIAN">DSA-195</id>
<id name="MANDRAKE">MDKSA-2002:068</id>
<id name="SGI">20021105-01-I</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">10280</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.27</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:
Apache Software Foundation Upgrade apache_1.3.27.tar.gz
<a href="
http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz" target="_blank">
http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz</a>
OpenPKG Upgrade apache-1.3.22-1.0.5.src.rpm
<a href="ftp://ftp.openpkg.org/release/1.0/UPD/apache-1.3.22-1.0.5.src.rpm" target="_blank">ftp://ftp.openpkg.org/release/1.0/UPD/apache-1.3.22-1.0.5.src.rpm</a>
OpenPKG Upgrade apache-1.3.26-1.1.1.src.rpm
<a href="ftp://ftp.openpkg.org/release/1.1/UPD/apache-1.3.26-1.1.1.src.rpm" target="_blank">ftp://ftp.openpkg.org/release/1.1/UPD/apache-1.3.26-1.1.1.src.rpm</a>
Oracle
------
Oracle已经为此发布了一个安全公告(OracleSA#45):
OracleSA#45:Security Release of Apache 1.3.27
链接:<a href="
http://otn.oracle.com/deploy/security/pdf/2002alert45rev1.pdf" target="_blank">
http://otn.oracle.com/deploy/security/pdf/2002alert45rev1.pdf</a>
Oracle声称将在2002-10-08提供受影响软件的补丁。</Solutions> <cnnvd>CNNVD-200210-255</cnnvd> <cvsscode>7.2</cvsscode> <severity>Severe</severity> <Description>受影响的资产会受到该漏洞影响,如果攻击者能够在Apache UID下执行代码。审查验证您的Web服务器配置。用于记分牌的共享内存的权限,允许在Apache UID下执行的攻击者发出信号至任何进程或导致本地拒绝服务攻击。</Description> <name>apache httpd1:共享内存的权限会导致本地权限升级(CVE-2002-0839)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101233" id="101233" modified="2016-05-27" published="2002-10-11" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>DNS</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">5847</id>
<id name="CERT-VN">240329</id>
<id name="CONECTIVA">CLA-2002:530</id>
<id name="CVE">CVE-2002-0840</id>
<id name="DEBIAN">DSA-187</id>
<id name="DEBIAN">DSA-188</id>
<id name="DEBIAN">DSA-195</id>
<id name="MANDRAKE">MDKSA-2002:068</id>
<id name="REDHAT">RHSA-2002:222</id>
<id name="REDHAT">RHSA-2002:243</id>
<id name="REDHAT">RHSA-2002:244</id>
<id name="REDHAT">RHSA-2002:248</id>
<id name="REDHAT">RHSA-2002:251</id>
<id name="REDHAT">RHSA-2003:106</id>
<id name="SGI">20021105-02-I</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_20.html</id>
<id name="XF">10241</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.27</high>
</range>
</version>
<version>
<range>
<low>2.0.35</low>
<high inclusive="0">2.0.43</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>厂商补丁:
Apache Group
------------
目前厂商已经发布了升级补丁以修复这个安全问题,请到厂商的主页下载:
<a href="
http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz" target="_blank">
http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz</a></Solutions> <cnnvd>CNNVD-200210-265</cnnvd> <cvsscode>6.8</cvsscode> <severity>Severe</severity> <Description>受影响的资产会受到该漏洞影响,如果仅UseCanonicalName是关闭并且是为了支持通配符DNS的存在。审查验证您的Web服务器配置。Apache 2.0至2.0.43版本和1.3.x至1.3.26版本默认错误页面中的跨站点脚本(XSS)漏洞,当UseCanonicalName是&QUOT;关&QUOT;和支持通配符DNS的存在,允许远程攻击者通过访主机:标头像其他网页访客执行脚本。</Description> <name>apache httpd:使用错误页面XSS通配符DNS(CVE-2002-0840)</name> </Vulnerability> <Vulnerability added="2012-04-12" gvid="ID101073" id="101073" modified="2015-02-13" published="2002-10-11" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Apache</tag>
<tag>Apache HTTP Server</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">5887</id>
<id name="BID">5995</id>
<id name="BID">5996</id>
<id name="CONECTIVA">CLA-2002:530</id>
<id name="CONECTIVA">CLSA-2002:530</id>
<id name="CVE">CVE-2002-0843</id>
<id name="DEBIAN">DSA-187</id>
<id name="DEBIAN">DSA-188</id>
<id name="DEBIAN">DSA-195</id>
<id name="MANDRAKE">MDKSA-2002:068</id>
<id name="SGI">20021105-01-I</id>
<id name="URL">http://httpd.apache.org/security/vulnerabilities_13.html</id>
<id name="XF">10281</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService type="HTTP|HTTPS">
<Product name="HTTPD" vendor="Apache">
<version>
<range>
<low>1.3.0</low>
<high inclusive="0">1.3.27</high>
</range>
</version>
</Product>
</NetworkService> </Check> <Solutions>Please see the references for vendor advisories and fixes.
This issue has been addressed in Apache 1.3.27.
Sun Cobalt RaQ 4
<ul><li>
Sun RaQ4-All-Security-2.0.1-16343.pkg
<a href="
http://ftp.cobalt.sun.com/pub/packages/raq4/eng/RaQ4-All-Security-2.0.1-16343.pkg">
http://ftp.cobalt.sun.com/pub/packages/raq4/eng/RaQ4-All-Security-2.0.
1-16343.pkg</a></li>
</ul>
Sun Cobalt RaQ XTR
<ul><li>
Sun RaQ550-All-Security-0.0.1-16343.pkg
<a href="
http://ftp.cobalt.sun.com/pub/packages/raq550/all/RaQ550-All-Security-0.0.1-16343.pkg">
http://ftp.cobalt.sun.com/pub/packages/raq550/all/RaQ550-All-Security-
0.0.1-16343.pkg</a></li>
<li>
Sun RaQXTR-All-Security-1.0.1-16343.pkg
<a href="
http://ftp.cobalt.sun.com/pub/packages/raqxtr/eng/RaQXTR-All-Security-1.0.1-16343.pkg">
http://ftp.cobalt.sun.com/pub/packages/raqxtr/eng/RaQXTR-All-Security-
1.0.1-16343.pkg</a></li>
</ul>
Sun Cobalt RaQ 550
<ul><li>
Sun RaQ550-All-Security-0.0.1-16343.pkg
<a href="
http://ftp.cobalt.sun.com/pub/packages/raq550/all/RaQ550-All-Security-0.0.1-16343.pkg">
http://ftp.cobalt.sun.com/pub/packages/raq550/all/RaQ550-All-Security-
0.0.1-16343.pkg</a></li>
</ul>
Sun Cobalt Qube 3
<ul><li>
Sun Qube3-All-Security-4.0.1-16343.pkg
<a href="
http://ftp.cobalt.sun.com/pub/packages/qube3/ml/Qube3-All-Security-4.0.1-16343.pkg">
http://ftp.cobalt.sun.com/pub/packages/qube3/ml/Qube3-All-Security-4.0
.1-16343.pkg</a></li>
</ul>
Apache Software Foundation Apache 1.3.19
<ul><li>
EnGarde Secure Linux apache-1.3.27-1.0.32.i386.rpm
<a href="ftp://ftp.engardelinux.org/pub/engarde/stable/updates/i386/apache-1.3.27-1.0.32.i386.rpm">ftp://ftp.engardelinux.org/pub/engarde/stable/updates/i386/apache-1.3.
27-1.0.32.i386.rpm</a></li>
<li>
EnGarde Secure Linux apache-1.3.27-1.0.32.i686.rpm
<a href="ftp://ftp.engardelinux.org/pub/engarde/stable/updates/i686/apache-1.3.27-1.0.32.i686.rpm">ftp://ftp.engardelinux.org/pub/engarde/stable/updates/i686/apache-1.3.
27-1.0.32.i686.rpm</a></li>
</ul>
Apache Software Foundation Apache 1.3.20
<ul><li>
Apache Software Foundation apache_1.3.27.tar.gz
<a href="
http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz">
http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz</a></li>
<li>
MandrakeSoft apache-1.3.20-5.2mdk.i586.rpmSingle Network Firewall 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-common-1.3.20-5.2mdk.i586.rpmSingle Network Firewall 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-devel-1.3.20-5.2mdk.i586.rpmSingle Network Firewall 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-manual-1.3.20-5.2mdk.i586.rpmSingle Network Firewall 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-mod_perl-1.3.20_1.24-5.2mdk.i586.rpmSingle Network Firewall 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-mod_perl-devel-1.3.20_1.24-5.2mdk.i586.rpmSingle Network Firewall 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-suexec-1.3.20-5.2mdk.i586.rpmSingle Network Firewall 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft HTML-Embperl-1.3b6-5.2mdk.i586.rpmSingle Network Firewall 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
</ul>
Apache Software Foundation Apache 1.3.22
<ul><li>
Apache Software Foundation apache_1.3.27.tar.gz
<a href="
http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz">
http://www.apache.org/dist/httpd/apache_1.3.27.tar.gz</a></li>
<li>
Conectiva apache-1.3.26-1U70_7cl.i386.rpm
<a href="ftp://atualizacoes.conectiva.com.br/7.0/RPMS/apache-1.3.26-1U70_7cl.i386.rpm">ftp://atualizacoes.conectiva.com.br/7.0/RPMS/apache-1.3.26-1U70_7cl.i3
86.rpm</a></li>
<li>
Conectiva apache-1.3.26-1U8_4cl.i386.rpm
<a href="ftp://atualizacoes.conectiva.com.br/8/RPMS/apache-1.3.26-1U8_4cl.i386.rpm">ftp://atualizacoes.conectiva.com.br/8/RPMS/apache-1.3.26-1U8_4cl.i386.
rpm</a></li>
<li>
Conectiva apache-devel-1.3.26-1U70_7cl.i386.rpm
<a href="ftp://atualizacoes.conectiva.com.br/7.0/RPMS/apache-devel-1.3.26-1U70_7cl.i386.rpm">ftp://atualizacoes.conectiva.com.br/7.0/RPMS/apache-devel-1.3.26-1U70_
7cl.i386.rpm</a></li>
<li>
Conectiva apache-devel-1.3.26-1U8_4cl.i386.rpm
<a href="ftp://atualizacoes.conectiva.com.br/8/RPMS/apache-devel-1.3.26-1U8_4cl.i386.rpm">ftp://atualizacoes.conectiva.com.br/8/RPMS/apache-devel-1.3.26-1U8_4cl
.i386.rpm</a></li>
<li>
Conectiva apache-doc-1.3.26-1U70_7cl.i386.rpm
<a href="ftp://atualizacoes.conectiva.com.br/7.0/RPMS/apache-doc-1.3.26-1U70_7cl.i386.rpm">ftp://atualizacoes.conectiva.com.br/7.0/RPMS/apache-doc-1.3.26-1U70_7c
l.i386.rpm</a></li>
<li>
Conectiva apache-doc-1.3.26-1U8_4cl.i386.rpm
<a href="ftp://atualizacoes.conectiva.com.br/8/RPMS/apache-doc-1.3.26-1U8_4cl.i386.rpm">ftp://atualizacoes.conectiva.com.br/8/RPMS/apache-doc-1.3.26-1U8_4cl.i
386.rpm</a></li>
<li>
MandrakeSoft apache-1.3.22-10.2mdk.i586.rpmLinux-Mandrake 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-1.3.22-10.2mdk.i586.rpmMandrake Linux 8.0
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-1.3.22-10.2mdk.i586.rpmMandrake Linux 8.1
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-1.3.22-10.2mdk.ia64.rpmMandrake Linux 8.1/ia64
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-1.3.22-10.2mdk.ppc.rpmMandrake Linux 8.0/ppc
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-common-1.3.22-10.2mdk.i586.rpmLinux-Mandrake 7.2
<a href="
http://www.mandrakesecure.net/en/ftp.php">
http://www.mandrakesecure.net/en/ftp.php</a></li>
<li>
MandrakeSoft apache-common-1.3.22-10.2mdk.i586.rpmMandrake Linux 8.0