-
Notifications
You must be signed in to change notification settings - Fork 0
/
joomla.xml
5334 lines (4449 loc) · 414 KB
/
joomla.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="2014-02-20" gvid="ID105850" id="105850" modified="2016-04-20" published="2008-09-18" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2008-4105</id>
<id name="URL">http://developer.joomla.org/security-centre/271-20080901-core-jrequest-variable-injection.html</id>
<id name="XF">45069</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.7</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200809-248</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>Joomla! 1.5至1.5.7版本中的Jrequest不会处理与JRequest::setVar一起设置的自变量, 远程攻击者可以造成“自变量注入”攻击并具有其他未明的影响。</Description> <name>Joomla!: [20080901]-核心-JRequest 自变量注入 (CVE-2008-4105)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105851" id="105851" modified="2016-04-20" published="2008-09-18" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2008-4102</id>
<id name="URL">http://developer.joomla.org/security-centre/272-20080902-core-random-number-generation-flaw.html</id>
<id name="XF">45068</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.7</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200809-245</cnnvd> <cvsscode>7.5</cvsscode> <severity>Critical</severity> <Description>Joomla! 1.5至1.5.7版本初始化有弱seed的PHP伪随机数发生器(PRNG), 这使攻击者推测出由PHP的 mt_rand函数产生的pseudo-random值, 例如推测密码重设表征,不同于CVE-2008-3681的漏洞。</Description> <name>Joomla!: [20080902]-核心 -随机数生成漏洞 (CVE-2008-4102)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105852" id="105852" modified="2016-04-20" published="2008-09-18" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Mail</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2008-4103</id>
<id name="URL">http://developer.joomla.org/security-centre/273-20080903-core-commailto-spam.html</id>
<id name="XF">45070</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.7</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200809-246</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Joomla!1.5至1.5.7版本中的邮寄地址(又名com_mailto)组件发送电子邮件而无需验证URL,它允许远程攻击者发送垃圾邮件。</Description> <name>Joomla!:[20080903]-核心-com_mailto垃圾邮件(CVE-2008-4103)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105853" id="105853" modified="2016-04-20" published="2008-09-18" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2008-4104</id>
<id name="URL">http://developer.joomla.org/security-centre/274-20080904-core-redirect-spam.html</id>
<id name="XF">45071</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.7</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200809-247</cnnvd> <cvsscode>5.8</cvsscode> <severity>Severe</severity> <Description>Joomla!1.5至1.5.7版本存在多个公开重定向漏洞,远程攻击者可通过“以被传递的”URL来重新定向用户至任意web站点并执行钓鱼攻击。</Description> <name>Joomla!: [20080904]-核心-重定向垃圾邮件 (CVE-2008-4104)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105854" id="105854" modified="2016-04-20" published="2009-02-26" version="2.0">
<cvss>(AV:N/AC:M/Au:S/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">32263</id>
<id name="CVE">CVE-2008-6299</id>
<id name="URL">http://developer.joomla.org/security-centre/283-20081101-core-comcontent-xss-vulnerability.html</id>
<id name="XF">46523</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.8</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
Joomla Joomla1.5.1- 1.5.7
Joomla Joomla! 1.5.8
http://joomlacode.org/gf/download/frsrelease/8897/32884/Joomla_1.5.8-Stable-Full_Package.zip
</Solutions> <cnnvd>CNNVD-200902-594</cnnvd> <cvsscode>3.5</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.5.7及其早期版本中存在多个跨站脚本攻击漏洞。具有某特权的远程验证用户可以借助 (1)对com_weblinks模块的标题和描述参数,以及(2)com_content模块中与"文章提交"有关的不明向量,注入任意web脚本或HTML。</Description> <name>Joomla!: [20081101]-核心-com_content XSS 漏洞 (CVE-2008-6299)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105855" id="105855" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/287-20090101-core-jsession-ssl-session-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.9</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>当仅在SSL下运行站点(所有站点被迫在ssl下运行), Joomla!不设置 cookie.&#160;上的SSL标志; 这可使某人监控网络从而发现与session.&#160;相关的cookie。请标注所有数据仍将安全转移。</Description> <name>Joomla!: [20090101]-核心-JSession SSL会话信息泄露</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105856" id="105856" modified="2016-04-20" published="2009-01-09" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Directory Traversal</tag>
<tag>Joomla!</tag>
<tag>Web</tag>
</Tags>
<AlternateIds>
<id name="BID">33143</id>
<id name="CVE">CVE-2009-0113</id>
<id name="URL">http://developer.joomla.org/security-centre/288-20090102-core-plgxstandard-directory-traversal.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.9</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
http://extensions.joomla.org/extensions/555/details</Solutions> <cnnvd>CNNVD-200901-102</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>在Joomla!1.5.8及更早版本XStandard组件attachmentlibrary.php中的目录遍历漏洞允许远程攻击者通过X_CMS_LIBRARY_PATH HTTP标头里的..(点点)列出任意目录。</Description> <name>Joomla!:[20090102]-核心-plg_xstandard目录遍历(CVE-2009-0113)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105857" id="105857" modified="2016-04-20" published="2009-04-09" version="2.0">
<cvss>(AV:N/AC:H/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">34360</id>
<id name="CVE">CVE-2009-1279</id>
<id name="URL">http://developer.joomla.org/security-centre/294-20090302-core-comcontent-xss.html</id>
<id name="XF">49654</id>
<id name="XF">49655</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.10</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
Joomla Joomla ; 1.5.0 Beta
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla ; 1.5 RC3
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla ; 1.5 RC1
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla ; 1.5 Beta 2
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla ; 1.5 RC2
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10-Stable-Full_Package.zip
Joomla Joomla 1.5
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla 1.5.1
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla 1.5.2
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla 1.5.3
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla 1.5.4
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla 1.5.5
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla 1.5.6
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla 1.5.7
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip
Joomla Joomla 1.5.8
Joomla ; Joomla_1.5.10-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/9910/37908/Joomla_1.5.10- Stable-Full_Package.zip</Solutions> <cnnvd>CNNVD-200904-210</cnnvd> <cvsscode>2.6</cvsscode> <severity>Moderate</severity> <Description>Joomla! 1.5到1.5.9版本存在多个跨站脚本攻击漏洞。远程攻击者可以借助不明向量注入任意web脚本或HTML。这些不明向量是到(1)com_admin组件,(2)com_search组件(当“搜集搜索统计数据”被激活时)以及(3)com_content组件中的类别查看的向量。</Description> <name>Joomla!: [20090302]-核心-com_content XSS (CVE-2009-1279)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105858" id="105858" modified="2016-05-27" published="2009-06-05" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">35189</id>
<id name="CVE">CVE-2009-1940</id>
<id name="URL">http://developer.joomla.org/security-centre/295-20090601-core-comusers-xss.html</id>
<id name="XF">50924</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.11</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200906-079</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.5.x版本至1.5.10版本的com_users 核心组件的管理员面板中存在跨站脚本攻击漏洞。远程攻击者可以借助不明向量注入任意web脚本或HTML。</Description> <name>Joomla!: [20090601]-核心-com_users XSS (CVE-2009-1940)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105859" id="105859" modified="2016-05-27" published="2009-06-05" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">35189</id>
<id name="CVE">CVE-2009-1938</id>
<id name="URL">http://developer.joomla.org/security-centre/297-20090602-core-frontend-xss.html</id>
<id name="XF">50923</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.11</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
Joomla Joomla 1.5
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.1
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.10
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.2
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.3
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.4
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.5
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.6
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.7
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.8
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.9
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip</Solutions> <cnnvd>CNNVD-200906-077</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla!1.5.10至1.5.x版本中的跨站点脚本(XSS)漏洞允许远程攻击者通过与数据库输出和前端管理面板相关的不明向量注入任意web脚本或HTML。</Description> <name>Joomla!:[20090603]-核心-前端的XSS(CVE-2009-1938)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105860" id="105860" modified="2016-05-27" published="2009-06-05" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">35189</id>
<id name="CVE">CVE-2009-1939</id>
<id name="URL">http://developer.joomla.org/security-centre/296-20090602-core-japurity-xss.html</id>
<id name="XF">50922</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.11</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
Joomla Joomla 1.5
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.1
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.10
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.2
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.3
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.4
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.5
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.6
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.7
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.8
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip
Joomla Joomla 1.5.9
Joomla Joomla_1.5.11-Stable-Full_Package.zip
http://joomlacode.org/gf/download/frsrelease/10209/40308/Joomla_1.5.11
-Stable-Full_Package.zip</Solutions> <cnnvd>CNNVD-200906-078</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.5.x版本至1.5.10版本的JA_Purity模板中存在跨站脚本攻击漏洞。远程攻击者可以借助不明向量注入任意web脚本或HTML。</Description> <name>Joomla!: [20090602]-核心-ja_purity XSS (CVE-2009-1939)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105861" id="105861" modified="2016-05-27" published="2012-10-07" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">35544</id>
<id name="CVE">CVE-2011-4909</id>
<id name="URL">http://developer.joomla.org/security-centre/298-20090604-core-frontend-xss-httpreferer-not-properly-filtered.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.12</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.joomla.org/announcements/release-news/5242-joomla-1512-released.html</Solutions> <cnnvd>CNNVD-201210-059</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.5.12之前版本中存在多个跨站脚本(XSS)漏洞。远程攻击者可利用这些漏洞通过(1)components/com_content/views/article/tmpl/form.php(2)components/com_user/controller.php(3)plugins/system/legacy/html.php或(4) templates/beez/html/com_content/article/form.php.的HTTP_REFERER标头注入任意web脚本或HTML。</Description> <name>Joomla!:[20090604]-核心-XSS前端-HTTP_REFERER没有正确过滤(CVE-2011-4909)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105862" id="105862" modified="2016-05-27" published="2012-10-07" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="BID">35544</id>
<id name="CVE">CVE-2011-4910</id>
<id name="URL">http://developer.joomla.org/security-centre/299-20090605-core-frontend-xss-phpself-not-properly-filtered.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.12</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.joomla.org/announcements/release-news/5242-joomla-1512-released.html</Solutions> <cnnvd>CNNVD-201210-060</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla!1.5.12之前版本存在跨站点脚本(XSS)漏洞。远程攻击者通过PATH_INFO注入任意web脚本或HTML。</Description> <name>Joomla!:[20090605]-核心-XSS前端-PHP_SELF没有正确过滤(CVE-2011-4910)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105863" id="105863" modified="2016-05-27" published="2012-10-07" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="BID">35544</id>
<id name="CVE">CVE-2011-4911</id>
<id name="URL">http://developer.joomla.org/security-centre/300-20090606-core-missing-jexec-check.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.12</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.joomla.org/announcements/release-news/5242-joomla-1512-released.html</Solutions> <cnnvd>CNNVD-201210-061</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.5.12之前版本中存在漏洞,该漏洞源于在未指定文件中没有执行JEXEC检查。远程攻击者可通过不明向量,获取安装路径。</Description> <name>Joomla!:[20090606]-核心-缺少JEXEC检查(CVE-2011-4911)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105864" id="105864" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/301-20090722-core-file-upload.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.13</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>微型浏览器附带的TinyMCE 3.0编辑器在不登录的情况下允许文件上传和删除。</Description> <name>Joomla!: [20090722]-核心-文件上传</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105865" id="105865" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/302-20090722-core-missing-jexec-check.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.13</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>某些文件未检查JEXEC。这些脚本将暴露主机的内部路径信息。</Description> <name>Joomla!:[20090722]-核心-JEXEC检查缺失</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105866" id="105866" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Mail</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-4912</id>
<id name="URL">http://developer.joomla.org/security-centre/303-20090723-core-com-mailto-timeout-issue.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.14</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>在com_mailto中,有可能绕过超时保护,防止自动发送电子邮件。</Description> <name>Joomla!:[20090723]-核心-com_mailto超时问题(CVE-2011-4912)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105867" id="105867" modified="2016-05-27" published="2009-11-16" version="2.0">
<cvss>(AV:N/AC:L/Au:S/C:N/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2009-3945</id>
<id name="URL">http://developer.joomla.org/security-centre/305-20091103-core-front-end-editor-issue.html</id>
<id name="XF">54161</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.15</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd>CNNVD-200911-168</cnnvd> <cvsscode>5.5</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.5.15之前版本的com_content组件中的Front-End编辑器存在未明漏洞。拥有作者特权的远程认证用户可以借助未知向量,替换任意用户的文章。</Description> <name>Joomla!:[20091103]-核心-前端编辑器问题(CVE-2009-3945)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105868" id="105868" modified="2016-05-27" published="2009-11-16" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2009-3946</id>
<id name="URL">http://developer.joomla.org/security-centre/306-20091103-core-xml-file-read-issue.html</id>
<id name="XF">54160</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.15</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复这个安全问题,补丁下载链接:
http://www.openssl.org/source/openssl-0.9.8l.tar.gz</Solutions> <cnnvd>CNNVD-200911-169</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Joomla!1.5.15之前,允许远程攻击者通过直接请求读取扩展的XML文件并由此获取扩展的版本号。</Description> <name>Joomla!: [20091103] -核心-XML文件中读取的问题(CVE-2009-3946)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105869" id="105869" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2010-1433</id>
<id name="URL">http://developer.joomla.org/security-centre/310-20100423-core-installer-migration-script.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.16</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>Joomla!安装程序中的迁移脚本不检查上传的文件类型,如果安装的应用程序存在,攻击者可利用它将恶意文件上传到服务器。</Description> <name>Joomla!: [20100423]-核心-安装程序迁移脚本 (CVE-2010-1433)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105870" id="105870" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2010-1432</id>
<id name="URL">http://developer.joomla.org/security-centre/311-20100423-core-negative-values-for-limit-and-offset.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.16</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>如果用户输入有负查询限制或偏移的URL,PHP通知会显示有关系统揭示的信息。</Description> <name>Joomla!:[20100423]-核心-限制和偏移量的负值(CVE-2010-1432)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105871" id="105871" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Database</tag>
<tag>Joomla!</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2010-1435</id>
<id name="URL">http://developer.joomla.org/security-centre/308-20100423-core-password-reset-tokens.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.16</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>当用户请求重置密码时,重置符号以纯文本的形式被存储在数据库中,虽然它本身不是一个漏洞,但是如果网站上存在一个带有SQL注入漏洞的扩展,它就允许用户帐户被损坏。</Description> <name>Joomla!: [20100423]-核心-密码重置符号 (CVE-2010-1435)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105872" id="105872" modified="2020-01-30" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2010-1434</id>
<id name="URL">http://developer.joomla.org/security-centre/309-20100423-core-sessation-fixation.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.16</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>当用户登录时,会话id得以修改。&#65533;&#65533;远程站点使访问者能够访问Joomla!站点并设定一个特定的缓存&#65533;&#65533;如果用户随后登录,远程站点可以使用缓存作为用户的验证。</Description> <name>Joomla!: [20100423]-核心-会话修复CVE-2010-1434)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105873" id="105873" modified="2014-02-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Database</tag>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
<tag>SQL Injection</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-1151</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.6</low>
<high inclusive="0">1.6.1</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.joomla.org/announcements/release-news/5350-joomla-161-released.html</Solutions> <cnnvd>CNNVD-201103-358</cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>Joomla!1.6.0容易受到未受保护的库文件引起的信息泄露漏洞(路径泄露)影响,显示服务器的完整内部路径,PHP设置为显示错误</Description> <name>Joomla:[20110201]-核心-SQL注入路径信息披露(CVE-2011-1151)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105874" id="105874" modified="2014-02-20" published="2011-11-23" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-4332</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.6</low>
<high inclusive="0">1.6.4</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://developer.joomla.org/security/news/349-20110601-xss-vulnerabilities.html</Solutions> <cnnvd>CNNVD-201111-395</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.6.3及更早版本中的多个跨站点脚本(XSS)漏洞允许远程攻击者通过不明向量注入任意web脚本或HTML。</Description> <name>Joomla:[20110601]-跨站点脚本漏洞(CVE-2011-4332)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105875" id="105875" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/351-20110602-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.6</low>
<high inclusive="0">1.6.4</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>过滤不足,可能造成信息泄露。</Description> <name>Joomla!:[20110602]-信息披露</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105876" id="105876" modified="2016-04-20" published="2011-07-27" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-2509</id>
<id name="URL">http://developer.joomla.org/security-centre/352-20110604-xss-vulnerability.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.6</low>
<high inclusive="0">1.6.4</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.openwall.com/lists/oss-security/2011/06/29/12</Solutions> <cnnvd>CNNVD-201107-414</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.6.4之前版本中存在多个跨站脚本攻击漏洞。远程攻击者可借助com_contact组件,com_content组件和com_newsfeedst组件中的查询字符串,在使用Internet Explorer或Konqueror时,对index.php的reset.request操作中的option参数,以及对index.php的搜索操作中的searchword参数注入任意web脚本或HTML。</Description> <name>Joomla!: [20110604]-XSS 漏洞 (CVE-2011-2509)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105877" id="105877" modified="2016-04-20" published="2011-07-27" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-2710</id>
<id name="URL">http://developer.joomla.org/security-centre/357-20110701-xss-vulnerability.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.6</low>
<high inclusive="0">1.6.6</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://developer.joomla.org/security/news/357-20110701-xss-vulnerability.html</Solutions> <cnnvd>CNNVD-201107-415</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla!1.7.0之前版本中的多个跨站点脚本(XSS)漏洞允许远程攻击者通过(1)通过访问index.php文件;并且使用Internet Explorer或Konqueror时,注入任意web脚本或HTML(2)允许远程攻击者通过搜索动作里的searchword参数注入任意web脚本或HTML。注:向量2的存在是由于CVE-2011-2509.5的不完整修复造成。</Description> <name>Joomla!:[20110701]-XSS漏洞(CVE-2011-2710)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105878" id="105878" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/367-20110901-core-xss-vulnerability.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.1</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>转义不足导致com_search中存在XSS漏洞。</Description> <name>Joomla!: [20110901]-Core-XSS 漏洞</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105879" id="105879" modified="2020-01-27" published="2014-02-13" version="2.0">
<cvss>(AV:N/AC:M/Au:S/C:N/I:P/A:N)</cvss>
<cvss3>CVSS:3.0/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N</cvss3>
<Tags>
<tag>Joomla!</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-3595</id>
<id name="URL">http://developer.joomla.org/security-centre/368-20110902-core-xss-vulnerability.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.1</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>不足转义导致后端中出现XSS漏洞</Description> <name>Joomla!: [20110902]-核心-XSS 漏洞 (CVE-2011-3595)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105880" id="105880" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/369-20110903-core-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.1</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>不恰当的错误校验导致信息暴露。</Description> <name>Joomla!:[20110903]-核心-信息披露</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105881" id="105881" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/370-20111001-core-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.2</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>弱加密导致潜在的信息泄露。</Description> <name>Joomla!: [20111001]-核心-信息泄露</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105882" id="105882" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-3269</id>
<id name="URL">http://developer.joomla.org/security-centre/371-20111002-core-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.2</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>不足的错误检查将导致潜在的信息泄露。</Description> <name>Joomla!: [20111002]-核心-信息泄露 (CVE-2011-3269)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105883" id="105883" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-3269</id>
<id name="URL">http://developer.joomla.org/security-centre/372-20111003-core-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.24</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions></Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>弱加密导致潜在的信息泄露。</Description> <name>Joomla!:[20111003]-核心-信息披露(CVE-2011-3269)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105884" id="105884" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/373-20111101-core-xss-vulnerability.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.3</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>过滤不充分导致后端出现XSS漏洞。</Description> <name>Joomla!:[20111101]-核心-XSS漏洞</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105885" id="105885" modified="2016-04-20" published="2011-11-23" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-4321</id>
<id name="URL">http://developer.joomla.org/security-centre/374-20111102-core-password-change.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.3</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://developer.joomla.org/security/news/9-security/10-core-security/375-20111103-core-password-change
http://www.joomla.org/download.html</Solutions> <cnnvd>CNNVD-201111-351</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Joomla!1.5.24至1.5.x版本中的密码重置功能使用弱随机数,这使得远程攻击者更容易通过不明向量修改任意用户的密码。</Description> <name>Joomla!: [20111102]-核心-密码更改 (CVE-2011-4321)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105886" id="105886" modified="2016-04-20" published="2011-11-23" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2011-4321</id>
<id name="URL">http://developer.joomla.org/security-centre/375-20111103-core-password-change.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.5</low>
<high inclusive="0">1.5.25</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://developer.joomla.org/security/news/9-security/10-core-security/375-20111103-core-password-change
http://www.joomla.org/download.html</Solutions> <cnnvd>CNNVD-201111-351</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Joomla!1.5.24至1.5.x版本中的密码重置功能使用弱随机数,这使得远程攻击者更容易通过不明向量修改任意用户的密码。</Description> <name>Joomla!:[20111103]-核心-密码更改(CVE-2011-4321)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105887" id="105887" modified="2016-05-27" published="2012-09-06" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-0819</id>
<id name="URL">http://developer.joomla.org/security-centre/382-20120101-core-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.4</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.joomla.org/announcements/release-news/5405-joomla-174-released.html</Solutions> <cnnvd>CNNVD-201204-242</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.6.x和1.7.4至1.7.x版本中存在未明漏洞。远程攻击者可通过未知向量获取敏感信息,不同于CVE-2012-0821的漏洞。</Description> <name>Joomla!:[20120101]-核心-信息披露(CVE-2012-0819)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105888" id="105888" modified="2016-05-27" published="2012-09-06" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-0820</id>
<id name="URL">http://developer.joomla.org/security-centre/383-20120102-core-xss-vulnerability.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.4</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.joomla.org/announcements/release-news/5405-joomla-174-released.html</Solutions> <cnnvd>CNNVD-201204-243</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>在Joomla!1.6.x版本和1.7.x至1.7.4版本中的跨站点脚本(XSS)漏洞,允许远程攻击者通过不明向量注入任意web脚本或HTML,不同于CVE-2012-0822的漏洞。</Description> <name>Joomla!: [20120102] -- 核心-XSS漏洞(CVE-2012-0820)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105889" id="105889" modified="2016-05-27" published="2012-09-06" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-0821</id>
<id name="URL">http://developer.joomla.org/security-centre/384-20120103-core-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.4</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.joomla.org/announcements/release-news/5405-joomla-174-released.html</Solutions> <cnnvd>CNNVD-201204-244</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.6.x和1.7.4至1.7.x版本中存在未明漏洞。远程攻击者可通过未知向量获取敏感信息,不同于 CVE-2012-0819的漏洞。</Description> <name>Joomla!: [20120103]-核心-信息泄露 (CVE-2012-0821)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105890" id="105890" modified="2016-05-27" published="2012-09-06" version="2.0">
<cvss>(AV:N/AC:M/Au:N/C:N/I:P/A:N)</cvss>
<Tags>
<tag>Joomla!</tag>
<tag>Web</tag>
<tag>XSS</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-0822</id>
<id name="URL">http://developer.joomla.org/security-centre/385-20120104-core-xss-vulnerability.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.4</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商已经发布了升级补丁以修复此安全问题,补丁获取链接:
http://www.joomla.org/announcements/release-news/5405-joomla-174-released.html</Solutions> <cnnvd>CNNVD-201204-245</cnnvd> <cvsscode>4.3</cvsscode> <severity>Severe</severity> <Description>Joomla! 1.6和1.7.4至1.7.x版本中存在跨站脚本(XSS)漏洞。远程攻击者可通过不明向量注入任意web脚本或HTML。</Description> <name>Joomla!: [20120104]-核心-XSS 漏洞 (CVE-2012-0822)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105891" id="105891" modified="2016-05-27" published="2012-09-06" version="2.0">
<cvss>(AV:N/AC:L/Au:N/C:P/I:N/A:N)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="CVE">CVE-2012-0835</id>
<id name="URL">http://developer.joomla.org/security-centre/387-20120201-core-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.5</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
http://www.joomla.org/announcements/release-news/5410-joomla-251-released.html
http://www.joomla.org/announcements/release-news/5411-joomla-175-released.html</Solutions> <cnnvd>CNNVD-201209-080</cnnvd> <cvsscode>5.0</cvsscode> <severity>Severe</severity> <Description>Joomla !1.7.x至1.7.5和2.5.x至2.5.1版本存在未知漏洞,允许攻击者借助与&quot;administrator.&quot;有关的未知向量获取敏感信息。</Description> <name>Joomla!:[20120201]-核心-信息披露(CVE-2012-0835)</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105892" id="105892" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Information Gathering</tag>
<tag>Joomla!</tag>
</Tags>
<AlternateIds>
<id name="URL">http://developer.joomla.org/security-centre/388-20120202-core-information-disclosure.html</id>
</AlternateIds>
<Check scope="endpoint"> <NetworkService> <Product> <version>
<range>
<low>1.7</low>
<high inclusive="0">1.7.5</high>
</range>
</version> </Product> </NetworkService> </Check> <Solutions>目前厂商还没有提供此漏洞的相关补丁或者升级程序,建议使用此软件的用户随时关注厂商的主页以获取最新版本:
https://www.alice-dsl.de/</Solutions> <cnnvd></cnnvd> <cvsscode>4.4</cvsscode> <severity>Severe</severity> <Description>在某些服务器错误日志可能会被未授权用户读取。</Description> <name>Joomla!:[20120202]-核心-信息披露</name> </Vulnerability> <Vulnerability added="2014-02-20" gvid="ID105893" id="105893" modified="2016-04-20" published="2014-02-13" version="2.0">
<cvss>(AV:L/AC:M/Au:N/C:P/I:P/A:P)</cvss>
<Tags>
<tag>Information Gathering</tag>