forked from nomi-sec/NVD-Exploit-List-Ja
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2006.tsv
More file actions
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 108.
1926 lines (1926 loc) · 287 KB
/
Copy path2006.tsv
File metadata and controls
1926 lines (1926 loc) · 287 KB
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
7246 1 2020-01-27T15:15:10.807 CVE-2006-7246 NetworkManager における証明書検証に関する脆弱性 https://bugzilla.gnome.org/show_bug.cgi?id=341323
7246 2 2020-01-27T15:15:10.807 CVE-2006-7246 NetworkManager における証明書検証に関する脆弱性 https://bugzilla.novell.com/show_bug.cgi?id=574266
7246 3 2020-01-27T15:15:10.807 CVE-2006-7246 NetworkManager における証明書検証に関する脆弱性 https://lwn.net/Articles/468868/
7246 4 2020-01-27T15:15:10.807 CVE-2006-7246 NetworkManager における証明書検証に関する脆弱性 https://bugzilla.gnome.org/show_bug.cgi?id=341323
7246 5 2020-01-27T15:15:10.807 CVE-2006-7246 NetworkManager における証明書検証に関する脆弱性 https://bugzilla.novell.com/show_bug.cgi?id=574266
7246 6 2020-01-27T15:15:10.807 CVE-2006-7246 NetworkManager における証明書検証に関する脆弱性 https://lwn.net/Articles/468868/
4245 1 2019-11-06T03:15:10.643 CVE-2006-4245 archivemail における競合状態に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=385253
4245 2 2019-11-06T03:15:10.643 CVE-2006-4245 archivemail における競合状態に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=385253
3100 1 2019-11-06T03:15:10.517 CVE-2006-3100 termpkg における古典的バッファオーバーフローの脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=358028
3100 2 2019-11-06T03:15:10.517 CVE-2006-3100 termpkg における古典的バッファオーバーフローの脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=358028
0062 1 2019-11-06T03:15:10.407 CVE-2006-0062 xlockmore における重要な機能に対する認証の欠如に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=309760
0062 2 2019-11-06T03:15:10.407 CVE-2006-0062 xlockmore における重要な機能に対する認証の欠如に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=309760
0061 1 2019-11-06T02:15:10.407 CVE-2006-0061 xlockmore における重要な機能に対する認証の欠如に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=318123
0061 2 2019-11-06T02:15:10.407 CVE-2006-0061 xlockmore における重要な機能に対する認証の欠如に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=399003
0061 3 2019-11-06T02:15:10.407 CVE-2006-0061 xlockmore における重要な機能に対する認証の欠如に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=318123
0061 4 2019-11-06T02:15:10.407 CVE-2006-0061 xlockmore における重要な機能に対する認証の欠如に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=399003
7247 1 2012-09-06T19:55:00.923 CVE-2006-7247 Joomla! および Mambo 用 Weblinks コンポーネントにおける SQL インジェクションの脆弱性 http://www.exploit-db.com/exploits/1922
7243 1 2011-01-18T20:00:10.580 CVE-2006-7243 PHP におけるアクセス制限を回避される脆弱性 http://bugs.php.net/39863
6404 1 2009-10-19T20:00:00.467 CVE-2006-6404 INNOVATION Data Processing FDR/UPSTREAM におけるサービス運用妨害 (DoS) の脆弱性 http://osvdb.org/ref/30/30782-fdr_portscan.txt
7237 1 2009-03-31T17:30:00.250 CVE-2006-7237 Ixprim における PHP リモートファイルインクルージョンの脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/19816.html
7237 2 2009-03-31T17:30:00.250 CVE-2006-7237 Ixprim における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19816
7222 1 2007-08-28T01:17:00.000 CVE-2006-7222 MPC の FLICSource.cpp におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/25437
7205 1 2007-05-24T02:30:00.000 CVE-2006-7205 PHP の array_fill 関数におけるサービス運用妨害 (DoS) の脆弱性 http://securitytracker.com/id?1015979
7205 2 2007-05-24T02:30:00.000 CVE-2006-7205 PHP の array_fill 関数におけるサービス運用妨害 (DoS) の脆弱性 http://www.infigo.hr/hr/in_focus/advisories/INFIGO-2006-04-02
7193 1 2007-04-12T19:19:00.000 CVE-2006-7193 - http://marc.info/?l=bugtraq&m=116163668213491&w=2
7193 2 2007-04-12T19:19:00.000 CVE-2006-7193 - http://marc.info/?l=bugtraq&m=116170769322920&w=2
7184 1 2007-03-30T21:19:00.000 CVE-2006-7184 EE における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20793
7184 2 2007-03-30T21:19:00.000 CVE-2006-7184 EE における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20793
4843 1 2007-03-29T21:19:00.000 CVE-2006-4843 IBM Lotus Domino Web Access の Active Content Filter 機能によるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/24633
7168 1 2007-03-20T10:19:00.000 CVE-2006-7168 PHP 用の Add Name モジュールにおける PHP リモートファイルインクルージョンの脆弱性 http://securityreason.com/securityalert/2450
7168 2 2007-03-20T10:19:00.000 CVE-2006-7168 PHP 用の Add Name モジュールにおける PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/archive/1/448630/100/0/threaded
7168 3 2007-03-20T10:19:00.000 CVE-2006-7168 PHP 用の Add Name モジュールにおける PHP リモートファイルインクルージョンの脆弱性 http://securityreason.com/securityalert/2450
7168 4 2007-03-20T10:19:00.000 CVE-2006-7168 PHP 用の Add Name モジュールにおける PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/archive/1/448630/100/0/threaded
7156 1 2007-03-07T20:19:00.000 CVE-2006-7156 miniBB のモジュールにおける PHP リモートファイルインクルージョンの脆弱性 http://www.attrition.org/pipermail/vim/2007-March/001411.html
7147 1 2007-03-07T20:19:00.000 CVE-2006-7147 phpBB Import Tools Mod の includes/functions_mod_user.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20525
7146 1 2007-03-07T20:19:00.000 CVE-2006-7146 - http://securityreason.com/securityalert/2387
7145 1 2007-03-07T20:19:00.000 CVE-2006-7145 Call Center Software の edit_user.php における重要な情報を取得される脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-10/0217.html
7144 1 2007-03-07T20:19:00.000 CVE-2006-7144 Call Center Software における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-10/0217.html
7143 1 2007-03-07T20:19:00.000 CVE-2006-7143 Call Center Software におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-10/0217.html
7141 1 2007-03-07T20:19:00.000 CVE-2006-7141 - http://www.0xdeadbeef.info/exploits/raptor_orafile.sql
7139 1 2007-03-07T20:19:00.000 CVE-2006-7139 KDE 用の Kmail におけるサービス運用妨害 (DoS) の脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-10/0293.html
7138 1 2007-03-07T20:19:00.000 CVE-2006-7138 WWV_FLOW_UTILITIES パッケージの wwv_flow_utilities.gen_popup_list における SQL インジェクションの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-October/050265.html
7130 1 2007-03-06T01:19:00.000 CVE-2006-7130 Jinzora における PHP リモートファイルインクルージョンの脆弱性 http://securityreason.com/securityalert/2351
7128 1 2007-03-06T01:19:00.000 CVE-2006-7128 forum/forum.php JAF CMS における PHP リモートファイルインクルージョンの脆弱性 http://www.rahim.webd.pl/exploity/Exploits/92.txt
7127 1 2007-03-06T01:19:00.000 CVE-2006-7127 JAF CMS における PHP リモートファイルインクルージョンの脆弱性 http://www.rahim.webd.pl/exploity/Exploits/92.txt
7118 1 2007-03-06T01:19:00.000 CVE-2006-7118 DMXReady Site Engine Manager の index.asp における SQL インジェクションの脆弱性 http://securityreason.com/securityalert/2358
7112 1 2007-03-06T01:19:00.000 CVE-2006-7112 MD-Pro の error.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20912
7128 2 2007-03-06T01:19:00.000 CVE-2006-7128 forum/forum.php JAF CMS における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20310
7127 2 2007-03-06T01:19:00.000 CVE-2006-7127 JAF CMS における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20329
7107 1 2007-03-03T21:19:00.000 CVE-2006-7107 Coalescent Systems freePBX の upgrade.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20785
7106 1 2007-03-03T21:19:00.000 CVE-2006-7106 Power Phlogger の config.inc.php3 における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20638
7102 1 2007-03-03T21:19:00.000 CVE-2006-7102 phpBurningPortal quiz-modul における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20547
7101 1 2007-03-03T21:19:00.000 CVE-2006-7101 PHPWind の admin.php における SQL インジェクションの脆弱性 http://secunia.com/advisories/22846
7106 2 2007-03-03T21:19:00.000 CVE-2006-7106 Power Phlogger の config.inc.php3 における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20644
7096 1 2007-03-02T21:18:00.000 CVE-2006-7096 dim3 の host.c におけるバッファオーバーフローの脆弱性 http://aluigi.altervista.org/adv/dim3bof-adv.txt
7095 1 2007-03-02T21:18:00.000 CVE-2006-7095 dim3 の socket.c における整数符号エラーの脆弱性 http://aluigi.altervista.org/adv/dim3bof-adv.txt
7091 1 2007-03-02T21:18:00.000 CVE-2006-7091 phpht Topsites FREE における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20486
7086 1 2007-03-02T21:18:00.000 CVE-2006-7086 Hot Links の dlback.php スクリプトにおける重要な情報を取得される脆弱性 http://www.securityfocus.com/bid/21112
7085 1 2007-03-02T21:18:00.000 CVE-2006-7085 RPS における XSS 攻撃を実行される脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-July/048006.html
7083 1 2007-03-02T21:18:00.000 CVE-2006-7083 RPS の index.php におけるディレクトリトラバーサルの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-July/048006.html
7082 1 2007-03-02T21:18:00.000 CVE-2006-7082 RPS における認証を回避される脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-July/048006.html
7080 1 2007-03-02T21:18:00.000 CVE-2006-7080 exV2 のアバターアップロード機能におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20161
7079 1 2007-03-02T21:18:00.000 CVE-2006-7079 exV2 の include/common.php における任意のコードを実行される脆弱性 https://www.exploit-db.com/exploits/2415
7077 1 2007-03-02T21:18:00.000 CVE-2006-7077 phpBB 用の Advanced Guestbook における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-07/0381.html
7075 1 2007-03-02T21:18:00.000 CVE-2006-7075 Aqualung の meta_decoder.c の meta_read_flac 関数におけるバッファオーバーフローの脆弱性 http://aluigi.altervista.org/adv/aquabof-adv.txt
7071 1 2007-03-02T21:18:00.000 CVE-2006-7071 IPB の classes/class_session.php における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-07/0249.html
7070 1 2007-03-02T21:18:00.000 CVE-2006-7070 Etomite CMS におけるファイルをアップロードされる脆弱性 http://retrogod.altervista.org/etomite_061_cmd.html
7069 1 2007-03-02T21:18:00.000 CVE-2006-7069 Socketwiz Bookmarks の smarty_config.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21857
7068 1 2007-03-02T21:18:00.000 CVE-2006-7068 CliServ Web Community における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19737
7067 1 2007-03-02T21:18:00.000 CVE-2006-7067 Oracle における内部エラーを誘発される脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-July/048251.html
7066 1 2007-03-02T21:18:00.000 CVE-2006-7066 Windows XP SP2 上の Microsoft Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19228
7065 1 2007-03-02T21:18:00.000 CVE-2006-7065 Microsoft Internet Explorer 6 および 7 におけるサービス運用妨害 (DoS) の脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-08/0163.html
7091 2 2007-03-02T21:18:00.000 CVE-2006-7091 phpht Topsites FREE における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20486
7086 2 2007-03-02T21:18:00.000 CVE-2006-7086 Hot Links の dlback.php スクリプトにおける重要な情報を取得される脆弱性 http://www.securityfocus.com/bid/21112
7079 2 2007-03-02T21:18:00.000 CVE-2006-7079 exV2 の include/common.php における任意のコードを実行される脆弱性 https://www.exploit-db.com/exploits/2415
7077 2 2007-03-02T21:18:00.000 CVE-2006-7077 phpBB 用の Advanced Guestbook における SQL インジェクションの脆弱性 http://secunia.com/advisories/19905
7071 2 2007-03-02T21:18:00.000 CVE-2006-7071 IPB の classes/class_session.php における SQL インジェクションの脆弱性 http://rst.void.ru/download/r57ipb216gui.txt
7069 2 2007-03-02T21:18:00.000 CVE-2006-7069 Socketwiz Bookmarks の smarty_config.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19935
7066 2 2007-03-02T21:18:00.000 CVE-2006-7066 Windows XP SP2 上の Microsoft Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19228
7065 2 2007-03-02T21:18:00.000 CVE-2006-7065 Microsoft Internet Explorer 6 および 7 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19364
7063 1 2007-02-24T01:28:00.000 CVE-2006-7063 TinyPHPforum の profile.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/18304
7060 1 2007-02-24T01:28:00.000 CVE-2006-7060 Scriptsez.net E-Dating System の cindex.php におけるフルパスを取得される脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-06/0067.html
7059 1 2007-02-24T01:28:00.000 CVE-2006-7059 Scriptsez.net E-Dating System におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-06/0067.html
7059 2 2007-02-24T01:28:00.000 CVE-2006-7059 Scriptsez.net E-Dating System におけるクロスサイトスクリプティングの脆弱性 http://securityreason.com/securityalert/2300
7046 1 2007-02-24T00:28:00.000 CVE-2006-7046 CMPRO 用 cmpro.intern/login.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/20484
7046 2 2007-02-24T00:28:00.000 CVE-2006-7046 CMPRO 用 cmpro.intern/login.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/26224
7046 3 2007-02-24T00:28:00.000 CVE-2006-7046 CMPRO 用 cmpro.intern/login.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/20484
7046 4 2007-02-24T00:28:00.000 CVE-2006-7046 CMPRO 用 cmpro.intern/login.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/26224
7025 1 2007-02-23T03:28:00.000 CVE-2006-7025 Bookmark4U の admin/config.php における SQL インジェクションの脆弱性 http://www.attrition.org/pipermail/vim/2007-February/001373.html
7024 1 2007-02-15T02:28:00.000 CVE-2006-7024 Harpia CMS における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/18614
7021 1 2007-02-15T02:28:00.000 CVE-2006-7021 Plume CMS の manager/tools/link/dbinstall.php における PHP リモートファイルインクルージョンの脆弱性 http://www.hamid.ir/security/plume.txt
7017 1 2007-02-15T02:28:00.000 CVE-2006-7017 Indexu における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-06/0318.html
7016 1 2007-02-15T02:28:00.000 CVE-2006-7016 phpjobboard における認証を回避される脆弱性 http://attrition.org/pipermail/vim/2006-June/000873.html
7012 1 2007-02-15T02:28:00.000 CVE-2006-7012 SCart の scart.cgi における任意のコマンドを実行される脆弱性 http://advisories.echo.or.id/adv/adv32-K-159-2006.txt
7011 1 2007-02-15T02:28:00.000 CVE-2006-7011 - http://www.attrition.org/pipermail/vim/2007-February/001321.html
7021 2 2007-02-15T02:28:00.000 CVE-2006-7021 Plume CMS の manager/tools/link/dbinstall.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securiteam.com/unixfocus/5KP031FJ5A.html
7005 1 2007-02-12T23:28:00.000 CVE-2006-7005 PSY Auction の item.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/17974
7003 1 2007-02-12T23:28:00.000 CVE-2006-7003 Fusion Polls の admin/index.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/archive/1/437127/30/4380/threaded
7005 2 2007-02-12T23:28:00.000 CVE-2006-7005 PSY Auction の item.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/data/vulnerabilities/exploits/PSYAuction-0515-sql-html.txt
7005 3 2007-02-12T23:28:00.000 CVE-2006-7005 PSY Auction の item.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/17974
7005 4 2007-02-12T23:28:00.000 CVE-2006-7005 PSY Auction の item.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/data/vulnerabilities/exploits/PSYAuction-0515-sql-html.txt
7001 1 2007-02-12T19:28:00.000 CVE-2006-7001 PhpMyChat Plus の avatar.php におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/22782
7001 2 2007-02-12T19:28:00.000 CVE-2006-7001 PhpMyChat Plus の avatar.php におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/22782
7000 1 2007-02-12T17:28:00.000 CVE-2006-7000 Headstart Solutions の DeskPRO におけるフルパスを取得される脆弱性 http://www.zion-security.com/text/Mul_Vulnerability_DeskPro.txt
6999 1 2007-02-12T17:28:00.000 CVE-2006-6999 Headstart Solutions の DeskPRO における全アップロードファイルを読み取られる脆弱性 http://www.zion-security.com/text/Mul_Vulnerability_DeskPro.txt
7000 2 2007-02-12T17:28:00.000 CVE-2006-7000 Headstart Solutions の DeskPRO におけるフルパスを取得される脆弱性 http://www.zion-security.com/text/Mul_Vulnerability_DeskPro.txt
6999 2 2007-02-12T17:28:00.000 CVE-2006-6999 Headstart Solutions の DeskPRO における全アップロードファイルを読み取られる脆弱性 http://www.zion-security.com/text/Mul_Vulnerability_DeskPro.txt
6978 1 2007-02-08T17:28:00.000 CVE-2006-6978 FCKEditorto の "Basic Toolbar Selection" におけるクロスサイトスクリプティングの脆弱性 http://www.newffr.com/viewtopic.php?forum=26&topic=11683
6977 1 2007-02-08T17:28:00.000 CVE-2006-6977 FreeTextBox の "Basic Toolbar Selection" におけるクロスサイトスクリプティングの脆弱性 http://www.newffr.com/viewtopic.php?forum=26&topic=11683
6976 1 2007-02-08T17:28:00.000 CVE-2006-6976 CentiPaid の centipaid_class.php における PHP リモートファイルインクルージョンの脆弱性 http://www.attrition.org/pipermail/vim/2007-February/001296.html
6974 1 2007-02-07T20:28:00.000 CVE-2006-6974 Headstart Solutions の DeskPRO における ディレクトリ内のファイルを一覧される脆弱性 http://www.zion-security.com/text/Mul_Vulnerability_DeskPro.txt
6973 1 2007-02-07T20:28:00.000 CVE-2006-6973 Headstart Solutions の DeskPRO におけるアプリケーションを再インストールされる脆弱性 http://www.zion-security.com/text/Mul_Vulnerability_DeskPro.txt
6974 2 2007-02-07T20:28:00.000 CVE-2006-6974 Headstart Solutions の DeskPRO における ディレクトリ内のファイルを一覧される脆弱性 http://www.zion-security.com/text/Mul_Vulnerability_DeskPro.txt
6973 2 2007-02-07T20:28:00.000 CVE-2006-6973 Headstart Solutions の DeskPRO におけるアプリケーションを再インストールされる脆弱性 http://www.zion-security.com/text/Mul_Vulnerability_DeskPro.txt
6970 1 2007-02-07T11:28:00.000 CVE-2006-6970 Opera における不正行為の保護メカニズムを回避される脆弱性 http://kaneda.bohater.net/security/20061220-opera_9.10_final_bypass_fraud_protection.php
6962 1 2007-01-29T16:28:00.000 CVE-2006-6962 Joomla! 用の RS Gallery2 コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/18705
6958 1 2007-01-29T16:28:00.000 CVE-2006-6958 phpBlueDragon における PHP リモートファイルインクルージョンの脆弱性 http://packetstormsecurity.org/0606-exploits/phpbluedragon-2.txt
6957 1 2007-01-29T16:28:00.000 CVE-2006-6957 Docebo の addons/mod_media/body.php における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-06/0109.html
6956 1 2007-01-29T16:28:00.000 CVE-2006-6956 Microsoft Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-06/0085.html
6955 1 2007-01-29T16:28:00.000 CVE-2006-6955 Opera におけるサービス運用妨害 (DoS) の脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-06/0085.html
6957 2 2007-01-29T16:28:00.000 CVE-2006-6957 Docebo の addons/mod_media/body.php における PHP リモートファイルインクルージョンの脆弱性 http://securityreason.com/securityalert/2194
6951 1 2007-01-23T02:28:00.000 CVE-2006-6951 OdysseusBlog の blog.php におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-11/0274.html
6933 1 2007-01-16T23:28:00.000 CVE-2006-6933 Easy Chat Server における特定のファイルをダウンロードされる脆弱性 http://secunia.com/advisories/22739
6487 1 2007-01-16T19:28:00.000 CVE-2006-6487 DT Guestbook の index.php におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/23778
6487 2 2007-01-16T19:28:00.000 CVE-2006-6487 DT Guestbook の index.php におけるクロスサイトスクリプティングの脆弱性 http://www.netvigilance.com/advisory0010
6487 3 2007-01-16T19:28:00.000 CVE-2006-6487 DT Guestbook の index.php におけるクロスサイトスクリプティングの脆弱性 http://www.osvdb.org/30787
6925 1 2007-01-13T02:28:00.000 CVE-2006-6925 bitweaver におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-11/0142.html
6924 1 2007-01-13T02:28:00.000 CVE-2006-6924 bitweaver における重要な情報を取得される脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-11/0142.html
6923 1 2007-01-13T02:28:00.000 CVE-2006-6923 bitweaver の newsletters/edition.php における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-11/0142.html
6919 1 2007-01-11T23:28:00.000 CVE-2006-6919 Firefox Sage エクステンションにおけるローカルコンテキストの任意の Javascript を実行される脆弱性 http://michaeldaw.org/md-hacks/rss-injection-in-sage-part-2/
7231 1 2006-12-31T05:00:00.000 CVE-2006-7231 Civica Software Civica の display.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20354
6910 1 2006-12-31T05:00:00.000 CVE-2006-6910 Fersch Formbankserver の formbankcgi.exe におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21841
6886 1 2006-12-31T05:00:00.000 CVE-2006-6886 phpwcms における重要な情報を取得される脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-05/0423.html
6883 1 2006-12-31T05:00:00.000 CVE-2006-6883 - http://attrition.org/pipermail/vim/2007-January/001206.html
6880 1 2006-12-31T05:00:00.000 CVE-2006-6880 PHP-Update の code/guestadd.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21772
6879 1 2006-12-31T05:00:00.000 CVE-2006-6879 PHP-Update の admin/uploads.php における任意のコードをアップロードおよび実行される脆弱性 http://www.securityfocus.com/bid/21789
6878 1 2006-12-31T05:00:00.000 CVE-2006-6878 PHP-Update の admin/uploads.php における権限を取得される脆弱性 http://www.securityfocus.com/bid/21789
6873 1 2006-12-31T05:00:00.000 CVE-2006-6873 eNdonesia の mod.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21333
6872 1 2006-12-31T05:00:00.000 CVE-2006-6872 eNdonesia の mod.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/21333
6871 1 2006-12-31T05:00:00.000 CVE-2006-6871 eNdonesia におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21333
6869 1 2006-12-31T05:00:00.000 CVE-2006-6869 MAXdev MDForum におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/21837
6867 1 2006-12-31T05:00:00.000 CVE-2006-6867 Vladimir Menshakov buratinable templator における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21838
6865 1 2006-12-31T05:00:00.000 CVE-2006-6865 SAFileUp の SAFileUpSamples/util/viewsrc.asp におけるディレクトリトラバーサルの脆弱性 http://ingehenriksen.blogspot.com/2006/12/softartisans-fileup-viewsrcasp-remote.html
6849 1 2006-12-31T05:00:00.000 CVE-2006-6849 Cahier de texte (CDT) の administration/index.php における不正な管理者操作を実行される脆弱性 http://acid-root.new.fr/poc/17061224.txt
6847 1 2006-12-31T05:00:00.000 CVE-2006-6847 RealNetworks RealPlayer の ierpplug.dll におけるサービス運用妨害 (DoS) の脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/21802.html
6842 1 2006-12-31T05:00:00.000 CVE-2006-6842 phpBB2 Plus の Acronym Mod の admin/admin_acronyms.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21805
6830 1 2006-12-31T05:00:00.000 CVE-2006-6830 b2verifauth.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21749
6827 1 2006-12-31T05:00:00.000 CVE-2006-6827 Macromedia Flash の Flash8b.ocx におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21818
4727 1 2006-12-31T05:00:00.000 CVE-2006-4727 Tumbleweed EMF Administration Module の emfadmin/statusView.do におけるクロスサイトスクリプティングの脆弱性 http://osvdb.org/ref/28/28722-tumbleweed-emf.txt
6886 2 2006-12-31T05:00:00.000 CVE-2006-6886 phpwcms における重要な情報を取得される脆弱性 http://www.kapda.ir/advisory-331.html
6847 2 2006-12-31T05:00:00.000 CVE-2006-6847 RealNetworks RealPlayer の ierpplug.dll におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21802
4727 2 2006-12-31T05:00:00.000 CVE-2006-4727 Tumbleweed EMF Administration Module の emfadmin/statusView.do におけるクロスサイトスクリプティングの脆弱性 http://www.osvdb.org/28722
6824 1 2006-12-29T11:28:00.000 CVE-2006-6824 Jim Hu and Chad Little PHP iCalendar におけるクロスサイトスクリプティングの脆弱性 http://lostmon.blogspot.com/2006/12/php-icalendar-multiple-variable-cross.html
6823 1 2006-12-29T11:28:00.000 CVE-2006-6823 Yrch! の plugins/metasearch/plug.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21794
6813 1 2006-12-29T11:28:00.000 CVE-2006-6813 Mxmania FUM の detail.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21754
6812 1 2006-12-29T11:28:00.000 CVE-2006-6812 myPHPCalendar における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21785
6811 1 2006-12-29T11:28:00.000 CVE-2006-6811 KsIRC におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21790
6809 1 2006-12-29T11:28:00.000 CVE-2006-6809 Vladimir Menshakov buratinable templator の process.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21793
6824 2 2006-12-29T11:28:00.000 CVE-2006-6824 Jim Hu and Chad Little PHP iCalendar におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017449
6811 2 2006-12-29T11:28:00.000 CVE-2006-6811 KsIRC におけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/3023
6811 3 2006-12-29T11:28:00.000 CVE-2006-6811 KsIRC におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21790
6811 4 2006-12-29T11:28:00.000 CVE-2006-6811 KsIRC におけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/3023
6807 1 2006-12-28T21:28:00.000 CVE-2006-6807 Softwebs Nepal Ananda Real Estate の list.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21771
6806 1 2006-12-28T21:28:00.000 CVE-2006-6806 Enthrallweb eMates の newsdetail.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/23521
6805 1 2006-12-28T21:28:00.000 CVE-2006-6805 Enthrallweb eJobs の newsdetail.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/23520
6804 1 2006-12-28T21:28:00.000 CVE-2006-6804 Dragon Business Directory - Pro の bus_details.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/23523
6802 1 2006-12-28T21:28:00.000 CVE-2006-6802 Enthrallweb ePages の actualpic.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/23522
6801 1 2006-12-28T21:28:00.000 CVE-2006-6801 SH-News の misc.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/23524
6800 1 2006-12-28T21:28:00.000 CVE-2006-6800 Limbo CMS の event モジュールにおける PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/23527
6804 2 2006-12-28T21:28:00.000 CVE-2006-6804 Dragon Business Directory - Pro の bus_details.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21747
6802 2 2006-12-28T21:28:00.000 CVE-2006-6802 Enthrallweb ePages の actualpic.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21750
6801 2 2006-12-28T21:28:00.000 CVE-2006-6801 SH-News の misc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21761
6796 1 2006-12-28T00:28:00.000 CVE-2006-6796 MTCMS の admin/admin_settings.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21770
6795 1 2006-12-28T00:28:00.000 CVE-2006-6795 MPN の gallery/displayCategory.php における PHP リモートファイルインクルージョンの脆弱性 http://cyber-security.org/DataDetayAll.asp?Data_id=586
6786 1 2006-12-28T00:28:00.000 CVE-2006-6786 Open Newsletter における任意の PHP コードを実行される脆弱性 http://www.securityfocus.com/bid/21775
6795 2 2006-12-28T00:28:00.000 CVE-2006-6795 MPN の gallery/displayCategory.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21744
6775 1 2006-12-27T23:28:00.000 CVE-2006-6775 acFTP におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21767
6774 1 2006-12-27T23:28:00.000 CVE-2006-6774 Ciberia Content Federator の members/maquetacion_member.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/23498
6771 1 2006-12-27T23:28:00.000 CVE-2006-6771 Irokez CMS における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/23497
6770 1 2006-12-27T23:28:00.000 CVE-2006-6770 Jinzora Media Jukebox における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/23501
6774 2 2006-12-27T23:28:00.000 CVE-2006-6774 Ciberia Content Federator の members/maquetacion_member.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21757
6771 2 2006-12-27T23:28:00.000 CVE-2006-6771 Irokez CMS における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21769
6770 2 2006-12-27T23:28:00.000 CVE-2006-6770 Jinzora Media Jukebox における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21741
6765 1 2006-12-27T02:28:00.000 CVE-2006-6765 Pagetool の src/admin/pt_upload.php における PHP ファイルインクルージョンの脆弱性 http://secunia.com/advisories/23508
6764 1 2006-12-27T02:28:00.000 CVE-2006-6764 KISGB の authenticate.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/23477
6763 1 2006-12-27T02:28:00.000 CVE-2006-6763 KISGB における PHP リモートファイルインクルージョンの脆弱性 http://www.security.nnov.ru/Pdocument470.html
6761 1 2006-12-27T02:28:00.000 CVE-2006-6761 Novell NetMail の IMAPD におけるスタックベースのバッファオーバーフローの脆弱性 http://secunia.com/advisories/23437
6760 1 2006-12-27T01:28:00.000 CVE-2006-6760 Phpmymanga の template.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20572
6759 1 2006-12-27T01:28:00.000 CVE-2006-6759 RealNetworks RealPlayer の rpau3260.dll におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21689
6757 1 2006-12-27T01:28:00.000 CVE-2006-6757 cwmExplorer の index.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/21683
6756 1 2006-12-27T01:28:00.000 CVE-2006-6756 Ixprim の install.fct.php の code 関数における管理パネルへのアクセス権を取得される脆弱性 http://acid-root.new.fr/poc/16061221.txt
6755 1 2006-12-27T01:28:00.000 CVE-2006-6755 Ixprim における重要な情報を取得される脆弱性 http://acid-root.new.fr/poc/16061221.txt
6754 1 2006-12-27T01:28:00.000 CVE-2006-6754 Ixprim における SQL インジェクションの脆弱性 http://acid-root.new.fr/poc/16061221.txt
6759 2 2006-12-27T01:28:00.000 CVE-2006-6759 RealNetworks RealPlayer の rpau3260.dll におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/data/vulnerabilities/exploits/21689.html
6754 2 2006-12-27T01:28:00.000 CVE-2006-6754 Ixprim における SQL インジェクションの脆弱性 http://secunia.com/advisories/23453
6751 1 2006-12-27T00:28:00.000 CVE-2006-6751 XM Easy Personal FTP Server におけるフォーマットストリングの脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/18632.txt
6750 1 2006-12-27T00:28:00.000 CVE-2006-6750 XM Easy Personal FTP Server におけるフォーマットストリングの脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/18632.pl
6750 2 2006-12-27T00:28:00.000 CVE-2006-6750 XM Easy Personal FTP Server におけるフォーマットストリングの脆弱性 http://www.securityfocus.com/bid/18632
6750 3 2006-12-27T00:28:00.000 CVE-2006-6750 XM Easy Personal FTP Server におけるフォーマットストリングの脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/18632.pl
6750 4 2006-12-27T00:28:00.000 CVE-2006-6750 XM Easy Personal FTP Server におけるフォーマットストリングの脆弱性 http://www.securityfocus.com/bid/18632
6739 1 2006-12-26T23:28:00.000 CVE-2006-6739 Paristemi の buycd.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21665
6738 1 2006-12-26T23:28:00.000 CVE-2006-6738 cwmCounter の statistic.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21671
6732 1 2006-12-26T23:28:00.000 CVE-2006-6732 cwmVote の archive.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21670
6722 1 2006-12-23T11:28:00.000 CVE-2006-6722 Bandwebsite における管理者アカウントを作成される脆弱性 http://www.securityfocus.com/bid/21625
6720 1 2006-12-23T11:28:00.000 CVE-2006-6720 Azucar CMS の admin/index_sitios.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21638
6716 1 2006-12-23T11:28:00.000 CVE-2006-6716 Eric GUILLAUME uploader&downloader における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21648
6722 2 2006-12-23T11:28:00.000 CVE-2006-6722 Bandwebsite における管理者アカウントを作成される脆弱性 http://www.securityfocus.com/data/vulnerabilities/exploits/21625.html
6710 1 2006-12-23T01:28:00.000 CVE-2006-6710 PgmReloaded における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21696
6698 1 2006-12-22T18:28:00.000 CVE-2006-6698 GConf の gconfd におけるサービス運用妨害 (DoS) の脆弱性 http://bugzilla.gnome.org/show_bug.cgi?id=167030
6698 2 2006-12-22T18:28:00.000 CVE-2006-6698 GConf の gconfd におけるサービス運用妨害 (DoS) の脆弱性 http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=219279
6660 1 2006-12-20T23:28:00.000 CVE-2006-6660 Konquerer などの製品で使用される KDE libkhtml におけるサービス運用妨害 (DoS) の脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/21662.html
6660 2 2006-12-20T23:28:00.000 CVE-2006-6660 Konquerer などの製品で使用される KDE libkhtml におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21662
6658 1 2006-12-20T02:28:00.000 CVE-2006-6658 Inktomi Search における重要な情報を取得される脆弱性 http://securitytracker.com/id?1017242
6651 1 2006-12-20T02:28:00.000 CVE-2006-6651 Intel 2200BG ワイアレスドライバの W29N51.SYS における任意のコードを実行される脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/21641.c
6650 1 2006-12-20T02:28:00.000 CVE-2006-6650 mxBB 用の mx_charts における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21623
6645 1 2006-12-20T02:28:00.000 CVE-2006-6645 mxBB 用の mx_links における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21622
6644 1 2006-12-20T02:28:00.000 CVE-2006-6644 mxBB 用の mx_meeting における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21624
6643 1 2006-12-20T02:28:00.000 CVE-2006-6643 Fightersoft Multimedia Star FTP サーバにおけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/21630
6658 2 2006-12-20T02:28:00.000 CVE-2006-6658 Inktomi Search における重要な情報を取得される脆弱性 http://securitytracker.com/id?1017242
6651 2 2006-12-20T02:28:00.000 CVE-2006-6651 Intel 2200BG ワイアレスドライバの W29N51.SYS における任意のコードを実行される脆弱性 http://www.securityfocus.com/bid/21641
6635 1 2006-12-18T11:28:00.000 CVE-2006-6635 JumbaCMS の includes/functions.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20693
6634 1 2006-12-18T11:28:00.000 CVE-2006-6634 Mambo 用の extcalendar コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-10/0179.html
6633 1 2006-12-18T11:28:00.000 CVE-2006-6633 YapBB の include/yapbb_session.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20615
6632 1 2006-12-18T11:28:00.000 CVE-2006-6632 Genepi の genepi.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20510
6631 1 2006-12-18T11:28:00.000 CVE-2006-6631 osprey の lib/xml/oai/GetRecord.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20552
6626 1 2006-12-18T11:28:00.000 CVE-2006-6626 Moodle のコンポーネントにおけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21596
6625 1 2006-12-18T11:28:00.000 CVE-2006-6625 Moodle の mod/forum/discuss.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21596
6626 2 2006-12-18T11:28:00.000 CVE-2006-6626 Moodle のコンポーネントにおけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/data/vulnerabilities/exploits/21596.html
6625 2 2006-12-18T11:28:00.000 CVE-2006-6625 Moodle の mod/forum/discuss.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/data/vulnerabilities/exploits/21596.html
6626 3 2006-12-18T11:28:00.000 CVE-2006-6626 Moodle のコンポーネントにおけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21596
6625 3 2006-12-18T11:28:00.000 CVE-2006-6625 Moodle の mod/forum/discuss.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21596
6626 4 2006-12-18T11:28:00.000 CVE-2006-6626 Moodle のコンポーネントにおけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/data/vulnerabilities/exploits/21596.html
6625 4 2006-12-18T11:28:00.000 CVE-2006-6625 Moodle の mod/forum/discuss.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/data/vulnerabilities/exploits/21596.html
6614 1 2006-12-18T02:28:00.000 CVE-2006-6614 FAI の save_log_local 関数におけるルートパスワードのハッシュを取得される脆弱性 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=402644
6612 1 2006-12-18T02:28:00.000 CVE-2006-6612 PhpMyCms の basic.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.attrition.org/pipermail/vim/2006-December/001185.html
6611 1 2006-12-18T02:28:00.000 CVE-2006-6611 Barman の interface.php における PHP リモートファイルインクルージョンの脆弱性 http://www.attrition.org/pipermail/vim/2006-December/001184.html
6600 1 2006-12-15T22:28:00.000 CVE-2006-6600 TorrentFlux の dir.php におけるクロスサイトスクリプティングの脆弱性 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%23400582
6598 1 2006-12-15T22:28:00.000 CVE-2006-6598 TorrentFlux および torrentflux-b4rt の viewnfo.php におけるディレクトリトラバーサルの脆弱性 http://tf-b4rt.berlios.de/changelog-torrentflux_2.1-b4rt.txt
6600 2 2006-12-15T22:28:00.000 CVE-2006-6600 TorrentFlux の dir.php におけるクロスサイトスクリプティングの脆弱性 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%23400582
6588 1 2006-12-15T19:28:00.000 CVE-2006-6588 Apache OFBiz の フォーラム実装におけるコンテンツを改ざんされる脆弱性 https://issues.apache.org/jira/browse/OFBIZ-178
6587 1 2006-12-15T19:28:00.000 CVE-2006-6587 Apache OFBiz の ecommerce コンポーネントにおけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-12/0177.html
6586 1 2006-12-15T19:28:00.000 CVE-2006-6586 vBlog における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1017204
6583 1 2006-12-15T19:28:00.000 CVE-2006-6583 ScriptMate User Manager における重要な情報を取得される脆弱性 http://securitytracker.com/id?1017384
6581 1 2006-12-15T19:28:00.000 CVE-2006-6581 Vernet Loic PHP_Debug の tests/debug_test.php における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1017219
6578 1 2006-12-15T19:28:00.000 CVE-2006-6578 Microsoft IIS 5.1 における任意のコマンドを実行される脆弱性 http://securityreason.com/securityalert/2036
6576 1 2006-12-15T19:28:00.000 CVE-2006-6576 goldenftpd におけるヒープベースのバッファオーバーフローの脆弱性 http://packetstormsecurity.com/files/161711/Golden-FTP-Server-4.70-Buffer-Overflow.html
6588 2 2006-12-15T19:28:00.000 CVE-2006-6588 Apache OFBiz の フォーラム実装におけるコンテンツを改ざんされる脆弱性 https://issues.apache.org/jira/browse/OFBIZ-178
6583 2 2006-12-15T19:28:00.000 CVE-2006-6583 ScriptMate User Manager における重要な情報を取得される脆弱性 http://www.hackerscenter.com/archive/view.asp?id=26656
6581 2 2006-12-15T19:28:00.000 CVE-2006-6581 Vernet Loic PHP_Debug の tests/debug_test.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21047
6578 2 2006-12-15T19:28:00.000 CVE-2006-6578 Microsoft IIS 5.1 における任意のコマンドを実行される脆弱性 http://www.securityfocus.com/archive/1/454268/100/0/threaded
6576 2 2006-12-15T19:28:00.000 CVE-2006-6576 goldenftpd におけるヒープベースのバッファオーバーフローの脆弱性 http://www.exploit-db.com/exploits/16036
6583 3 2006-12-15T19:28:00.000 CVE-2006-6583 ScriptMate User Manager における重要な情報を取得される脆弱性 http://securitytracker.com/id?1017384
6578 3 2006-12-15T19:28:00.000 CVE-2006-6578 Microsoft IIS 5.1 における任意のコマンドを実行される脆弱性 http://securityreason.com/securityalert/2036
6576 3 2006-12-15T19:28:00.000 CVE-2006-6576 goldenftpd におけるヒープベースのバッファオーバーフローの脆弱性 http://packetstormsecurity.com/files/161711/Golden-FTP-Server-4.70-Buffer-Overflow.html
6583 4 2006-12-15T19:28:00.000 CVE-2006-6583 ScriptMate User Manager における重要な情報を取得される脆弱性 http://www.hackerscenter.com/archive/view.asp?id=26656
6578 4 2006-12-15T19:28:00.000 CVE-2006-6578 Microsoft IIS 5.1 における任意のコマンドを実行される脆弱性 http://www.securityfocus.com/archive/1/454268/100/0/threaded
6576 4 2006-12-15T19:28:00.000 CVE-2006-6576 goldenftpd におけるヒープベースのバッファオーバーフローの脆弱性 http://www.exploit-db.com/exploits/16036
6565 1 2006-12-15T11:28:00.000 CVE-2006-6565 FileZilla Server におけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/2914
6563 1 2006-12-15T11:28:00.000 CVE-2006-6563 ProFTPD の mod_ctrls モジュールにおけるバッファオーバーフローの脆弱性 http://secunia.com/advisories/23371
6565 2 2006-12-15T11:28:00.000 CVE-2006-6565 FileZilla Server におけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/2914
6558 1 2006-12-14T18:28:00.000 CVE-2006-6558 Crob FTP Server におけるサービス運用妨害 (DoS) の脆弱性 http://secunia.com/advisories/23365
6536 1 2006-12-14T02:28:00.000 CVE-2006-6536 Cilem Haber Free Edition の hata.asp におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21511
6536 2 2006-12-14T02:28:00.000 CVE-2006-6536 Cilem Haber Free Edition の hata.asp におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21511
6534 1 2006-12-14T01:28:00.000 CVE-2006-6534 osCommerce におけるクロスサイトスクリプティングの脆弱性 http://lostmon.blogspot.com/2006/12/oscommerce-traversal-arbitrary-file.html
6533 1 2006-12-14T01:28:00.000 CVE-2006-6533 osCommerce の admin/templates_boxes_layout.php におけるディレクトリトラバーサルの脆弱性 http://lostmon.blogspot.com/2006/12/oscommerce-traversal-arbitrary-file.html
6513 1 2006-12-14T01:28:00.000 CVE-2006-6513 Wawi の CControl::Download 関数におけるルート配下のファイルタイプをダウンロードされる脆弱性 http://aluigi.altervista.org/adv/wawix-adv.txt
6534 2 2006-12-14T01:28:00.000 CVE-2006-6534 osCommerce におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017353
6513 2 2006-12-14T01:28:00.000 CVE-2006-6513 Wawi の CControl::Download 関数におけるルート配下のファイルタイプをダウンロードされる脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-December/051217.html
6513 3 2006-12-14T01:28:00.000 CVE-2006-6513 Wawi の CControl::Download 関数におけるルート配下のファイルタイプをダウンロードされる脆弱性 http://secunia.com/advisories/23292
6464 1 2006-12-11T18:28:00.000 CVE-2006-6464 Midicart の viewcart におけるショッピングカートで低い合計金額を取得される脆弱性 http://cupu.us/adv/15-iFX-2006-adv-midicart-phpbackdoor.txt
6461 1 2006-12-11T17:28:00.000 CVE-2006-6461 Yourfreeworld Stylish Text Ads Script の tr1.php におけるインストールパスを取得される脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-05/0381.html
6460 1 2006-12-11T17:28:00.000 CVE-2006-6460 Yourfreeworld.com Short Url & Url Tracker Script における重要な情報を取得される脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-05/0384.html
6451 1 2006-12-10T21:28:00.000 CVE-2006-6451 SWsoft Plesk におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017236
6451 2 2006-12-10T21:28:00.000 CVE-2006-6451 SWsoft Plesk におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21067
6414 1 2006-12-10T11:28:00.000 CVE-2006-6414 dol storye の dettaglio.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21463
6414 2 2006-12-10T11:28:00.000 CVE-2006-6414 dol storye の dettaglio.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21463
6407 1 2006-12-10T02:28:00.000 CVE-2006-6407 Linux x86 Mail Servers の F-Prot Antivirus におけるウイルス検知を回避される脆弱性 http://www.quantenblog.net/security/virus-scanner-bypass
6405 1 2006-12-10T02:28:00.000 CVE-2006-6405 SMB の BitDefender Mail Protection におけるウィルス検出を回避される脆弱性 http://www.quantenblog.net/security/virus-scanner-bypass
6402 1 2006-12-10T02:28:00.000 CVE-2006-6402 MyStats の mystats.php における SQL インジェクションの脆弱性 http://securitytracker.com/id?1017210
6401 1 2006-12-10T02:28:00.000 CVE-2006-6401 MyStats の mystats.php におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017210
6402 2 2006-12-10T02:28:00.000 CVE-2006-6402 MyStats の mystats.php における SQL インジェクションの脆弱性 http://securitytracker.com/id?1017210
6401 2 2006-12-10T02:28:00.000 CVE-2006-6401 MyStats の mystats.php におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017210
6391 1 2006-12-08T01:28:00.000 CVE-2006-6391 Open Solution Quick.Cart におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/23168
6390 1 2006-12-08T01:28:00.000 CVE-2006-6390 Open Solution Quick.Cart におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/21411
6387 1 2006-12-08T01:28:00.000 CVE-2006-6387 LINK CMS における SQL インジェクションの脆弱性 http://secunia.com/advisories/23107
6391 2 2006-12-08T01:28:00.000 CVE-2006-6391 Open Solution Quick.Cart におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/23168
6380 1 2006-12-07T21:28:00.000 CVE-2006-6380 Ultimate HelpDesk の index.asp におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21402
6377 1 2006-12-07T17:28:00.000 CVE-2006-6377 Uploadscript における admin パスワードハッシュを取得される脆弱性 http://secunia.com/advisories/23264
6367 1 2006-12-07T11:28:00.000 CVE-2006-6367 DUware DUdownload の detail.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21405
6353 1 2006-12-07T01:28:00.000 CVE-2006-6353 Mac OS X の BOMArchiveHelper におけるサービス運用妨害 (DoS) の脆弱性 http://security-protocols.com/2006/12/04/bomarchivehelper-needs-some-lovin/
6352 1 2006-12-07T01:28:00.000 CVE-2006-6352 FRISK Software F-Prot Antivirus におけるサービス運用妨害 (DoS) の脆弱性 http://gleg.net/fprot.txt
6353 2 2006-12-07T01:28:00.000 CVE-2006-6353 Mac OS X の BOMArchiveHelper におけるサービス運用妨害 (DoS) の脆弱性 http://security-protocols.com/2006/12/04/bomarchivehelper-needs-some-lovin/
6352 2 2006-12-07T01:28:00.000 CVE-2006-6352 FRISK Software F-Prot Antivirus におけるサービス運用妨害 (DoS) の脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-December/051096.html
6310 1 2006-12-06T20:28:00.000 CVE-2006-6310 Microsoft Internet Explorer 6.0 SP1 におけるサービス運用妨害 (DoS) の脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/21447.html
6301 1 2006-12-06T19:28:00.000 CVE-2006-6301 DenyHosts におけるサービス運用妨害 (DoS) の脆弱性 http://bugs.gentoo.org/show_bug.cgi?id=157163
6289 1 2006-12-05T11:28:00.000 CVE-2006-6289 wBB Lite における任意の SQL コマンドを実行される脆弱性 http://retrogod.altervista.org/wbblite_102_sql.html
6280 1 2006-12-04T11:28:00.000 CVE-2006-6280 O2PHP Bulletin Board の viewthread.php における SQL インジェクションの脆弱性 http://acid-root.new.fr/poc/14061118.txt
6261 1 2006-12-04T11:28:00.000 CVE-2006-6261 Quintessential Player におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/21331
6255 1 2006-12-04T11:28:00.000 CVE-2006-6255 NukeAI モジュールの util.php における任意の PHP コードをアップロードされる脆弱性 http://www.securityfocus.com/bid/21284
6254 1 2006-12-04T11:28:00.000 CVE-2006-6254 Cahier de texte の administration/telecharger.php におけるファイルの未解析コンテンツを取得される脆弱性 http://acid-root.new.fr/poc/15061124.txt
6253 1 2006-12-04T11:28:00.000 CVE-2006-6253 Cahier de texte における全ユーザのパスワードを取得される脆弱性 http://acid-root.new.fr/poc/15061124.txt
6250 1 2006-12-04T11:28:00.000 CVE-2006-6250 Songbird Media Player におけるフォーマットストリングの脆弱性 http://www.securityfocus.com/bid/21343
6254 2 2006-12-04T11:28:00.000 CVE-2006-6254 Cahier de texte の administration/telecharger.php におけるファイルの未解析コンテンツを取得される脆弱性 http://secunia.com/advisories/23122
6253 2 2006-12-04T11:28:00.000 CVE-2006-6253 Cahier de texte における全ユーザのパスワードを取得される脆弱性 http://secunia.com/advisories/23122
6242 1 2006-12-03T19:28:00.000 CVE-2006-6242 Serendipity におけるディレクトリトラバーサルの脆弱性 http://www.s9y.org/forums/viewtopic.php?t=7922
6238 1 2006-12-03T19:28:00.000 CVE-2006-6238 Apple Safari の AutoFill 機能における重要な情報を取得される脆弱性 http://tearesolutions.com/2006/11/how_to_steal_passwords_from_safaris_autofill.html
6237 1 2006-12-03T19:28:00.000 CVE-2006-6237 Woltlab Burning Board Lite の thread.php における SQL インジェクションの脆弱性 http://retrogod.altervista.org/wbblite_102_sql_mqg_bypass.html
6242 2 2006-12-03T19:28:00.000 CVE-2006-6242 Serendipity におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/21367
6238 2 2006-12-03T19:28:00.000 CVE-2006-6238 Apple Safari の AutoFill 機能における重要な情報を取得される脆弱性 http://www.securityfocus.com/bid/21329
6238 3 2006-12-03T19:28:00.000 CVE-2006-6238 Apple Safari の AutoFill 機能における重要な情報を取得される脆弱性 http://tearesolutions.com/2006/11/how_to_steal_passwords_from_safaris_autofill.html
6238 4 2006-12-03T19:28:00.000 CVE-2006-6238 Apple Safari の AutoFill 機能における重要な情報を取得される脆弱性 http://www.securityfocus.com/bid/21329
6220 1 2006-12-01T01:28:00.000 CVE-2006-6220 Recipes Website における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21270
6218 1 2006-12-01T01:28:00.000 CVE-2006-6218 dev4u CMS の index.php における SQL インジェクションの脆弱性 http://www.majorsecurity.de/index_2.php?major_rls=major_rls36
6216 1 2006-12-01T01:28:00.000 CVE-2006-6216 Nivisec Hacks List の admin_hacks_list.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21290
6214 1 2006-12-01T01:28:00.000 CVE-2006-6214 Wallpaper Website の wallpaper.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21274
6213 1 2006-12-01T01:28:00.000 CVE-2006-6213 PEGames の index.php における PHP リモートファイルインクルージョン攻撃を実行される脆弱性 http://www.attrition.org/pipermail/vim/2006-November/001153.html
6212 1 2006-12-01T01:28:00.000 CVE-2006-6212 Site News の centre.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21269
6208 1 2006-12-01T01:28:00.000 CVE-2006-6208 Enthrallweb eClassifieds における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=46
6202 1 2006-12-01T01:28:00.000 CVE-2006-6202 NukeAI モジュールの modules/NukeAI/util.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21284
6213 2 2006-12-01T01:28:00.000 CVE-2006-6213 PEGames の index.php における PHP リモートファイルインクルージョン攻撃を実行される脆弱性 http://www.securityfocus.com/bid/21266
6193 1 2006-12-01T00:28:00.000 CVE-2006-6193 BasicForum の edit.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21293
6191 1 2006-12-01T00:28:00.000 CVE-2006-6191 8pixel.net simpleblog の admin/edit.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/23098
6181 1 2006-12-01T00:28:00.000 CVE-2006-6181 ClickTech ClickContact の default.asp における SQL インジェクションの脆弱性 http://www.aria-security.com/forum/showthread.php?t=51
6170 1 2006-11-30T15:28:00.000 CVE-2006-6170 ProFTPD の mod_tls モジュールにおけるバッファオーバーフローの脆弱性 http://elegerov.blogspot.com/2006/10/do-you-remember-2-years-old-overflow.html
6170 2 2006-11-30T15:28:00.000 CVE-2006-6170 ProFTPD の mod_tls モジュールにおけるバッファオーバーフローの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-November/050935.html
6160 1 2006-11-28T23:28:00.000 CVE-2006-6160 Doug Luxem Liberum Help Desk の details.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21292
6151 1 2006-11-28T23:28:00.000 CVE-2006-6151 Messagerie Locale の centre.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21267
6138 1 2006-11-28T02:07:00.000 CVE-2006-6138 Sisfo Kampus の download.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/21294
6137 1 2006-11-28T02:07:00.000 CVE-2006-6137 Sisfo Kampus における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21294
6132 1 2006-11-28T01:07:00.000 CVE-2006-6132 Link Exchange Lite における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=53
6131 1 2006-11-28T01:07:00.000 CVE-2006-6131 Kerio WebSTAR の WSAdminServer における root 権限を取得される脆弱性 http://secunia.com/advisories/22906
6132 2 2006-11-28T01:07:00.000 CVE-2006-6132 Link Exchange Lite における SQL インジェクションの脆弱性 http://secunia.com/advisories/23068
5896 1 2006-11-27T21:07:00.000 CVE-2006-5896 REMLAB Web Mech Designer におけるスクリプトのフルパスを取得される脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-November/050879.html
6128 1 2006-11-27T00:07:00.000 CVE-2006-6128 Linux kernel の ReiserFS 機能におけるサービス運用妨害 (DoS) の脆弱性 http://projects.info-pull.com/mokb/MOKB-25-11-2006.html
6125 1 2006-11-27T00:07:00.000 CVE-2006-6125 NetGear WG311v1 ワイヤレスアダプタ用のワイヤレスドライバにおけるヒープベースのバッファオーバーフローの脆弱性 http://projects.info-pull.com/mokb/MOKB-22-11-2006.html
6125 2 2006-11-27T00:07:00.000 CVE-2006-6125 NetGear WG311v1 ワイヤレスアダプタ用のワイヤレスドライバにおけるヒープベースのバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/21251
6125 3 2006-11-27T00:07:00.000 CVE-2006-6125 NetGear WG311v1 ワイヤレスアダプタ用のワイヤレスドライバにおけるヒープベースのバッファオーバーフローの脆弱性 http://projects.info-pull.com/mokb/MOKB-22-11-2006.html
6125 4 2006-11-27T00:07:00.000 CVE-2006-6125 NetGear WG311v1 ワイヤレスアダプタ用のワイヤレスドライバにおけるヒープベースのバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/21251
6117 1 2006-11-26T22:07:00.000 CVE-2006-6117 fipsGallery の index1.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21254
6116 1 2006-11-26T22:07:00.000 CVE-2006-6116 fipsForum の default2.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21253
6115 1 2006-11-26T22:07:00.000 CVE-2006-6115 fipsCMS の index.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21258
6111 1 2006-11-26T22:07:00.000 CVE-2006-6111 Alan Ward A-Cart Pro における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=27
6110 1 2006-11-26T22:07:00.000 CVE-2006-6110 BPG-InfoTech Content Management System 製品における SQL インジェクションの脆弱性 http://aria-security.net/advisory/bpg.txt
6109 1 2006-11-26T22:07:00.000 CVE-2006-6109 CandyPress Store における SQL インジェクションの脆弱性 http://secunia.com/advisories/22954
6109 2 2006-11-26T22:07:00.000 CVE-2006-6109 CandyPress Store における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21090/info
6096 1 2006-11-24T18:07:00.000 CVE-2006-6096 ActiveNews Manager におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21167
6095 1 2006-11-24T18:07:00.000 CVE-2006-6095 ActiveNews Manager における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21167
6094 1 2006-11-24T18:07:00.000 CVE-2006-6094 ActiveNews Manager における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=31
6093 1 2006-11-24T18:07:00.000 CVE-2006-6093 PicturesPro Photo Cart の adminprint.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/23037
6090 1 2006-11-24T18:07:00.000 CVE-2006-6090 BaalAsp フォーラムにおける SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=35
6088 1 2006-11-24T18:07:00.000 CVE-2006-6088 BlueCollar i-Gallery におけるクロスサイトスクリプティングの脆弱性 http://aria-security.net/advisory/i-Gallery34.txt
6084 1 2006-11-24T18:07:00.000 CVE-2006-6084 aBitWhizzy の abitwhizzy.php におけるディレクトリトラバーサルの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=52
6083 1 2006-11-24T18:07:00.000 CVE-2006-6083 CreaScripts Creadirectory の search.asp における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=54
6082 1 2006-11-24T18:07:00.000 CVE-2006-6082 CreaScripts Creadirectory におけるクロスサイトスクリプティングの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=54
6096 2 2006-11-24T18:07:00.000 CVE-2006-6096 ActiveNews Manager におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21167
6093 2 2006-11-24T18:07:00.000 CVE-2006-6093 PicturesPro Photo Cart の adminprint.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/21163
6084 2 2006-11-24T18:07:00.000 CVE-2006-6084 aBitWhizzy の abitwhizzy.php におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/23055
6083 2 2006-11-24T18:07:00.000 CVE-2006-6083 CreaScripts Creadirectory の search.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/23067
6082 2 2006-11-24T18:07:00.000 CVE-2006-6082 CreaScripts Creadirectory におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/23067
6084 3 2006-11-24T18:07:00.000 CVE-2006-6084 aBitWhizzy の abitwhizzy.php におけるディレクトリトラバーサルの脆弱性 http://securitytracker.com/id?1017266
6078 1 2006-11-24T17:07:00.000 CVE-2006-6078 a-ConMan の common.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv61-matdhule-2006.txt
6074 1 2006-11-24T17:07:00.000 CVE-2006-6074 Enthrallweb eShopping Cart における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=21
6070 1 2006-11-22T02:07:00.000 CVE-2006-6070 ASP Nuke の module/account/register/register.asp における SQL インジェクションの脆弱性 http://securitytracker.com/id?1017255
6067 1 2006-11-22T02:07:00.000 CVE-2006-6067 20/20 DataShed における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=40
6066 1 2006-11-22T02:07:00.000 CVE-2006-6066 Dragon Calendar / Events Listing における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=32
6065 1 2006-11-22T02:07:00.000 CVE-2006-6065 MxBB Portal 用の CalSnails Module における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22931
6060 1 2006-11-22T01:07:00.000 CVE-2006-6060 Linux kernel の NTFS filesystem code におけるサービス運用妨害 (DoS) の脆弱性 http://projects.info-pull.com/mokb/MOKB-19-11-2006.html
6059 1 2006-11-22T01:07:00.000 CVE-2006-6059 NetGear MA521 PCMCIA アダプタ用の MA521nd5.SYS ドライバにおけるバッファオーバーフローの脆弱性 http://projects.info-pull.com/mokb/MOKB-18-11-2006.html
6057 1 2006-11-22T01:07:00.000 CVE-2006-6057 Fedora Core 6 などの Linux kernel におけるサービス運用妨害 (DoS) の脆弱性 http://projects.info-pull.com/mokb/MOKB-15-11-2006.html
6056 1 2006-11-22T01:07:00.000 CVE-2006-6056 Linux Kernel の superblock_doinit() 関数におけるサービス運用妨害 (DoS) の脆弱性 http://projects.info-pull.com/mokb/MOKB-14-11-2006.html
6054 1 2006-11-22T01:07:00.000 CVE-2006-6054 Linux Kernel の ext2 ファイルシステムにおけるサービス運用妨害 (DoS) の脆弱性 http://projects.info-pull.com/mokb/MOKB-12-11-2006.html
6053 1 2006-11-22T01:07:00.000 CVE-2006-6053 Linux Kernel の ext3fs_dirhash() 関数におけるサービス運用妨害 (DoS) の脆弱性 http://projects.info-pull.com/mokb/MOKB-10-11-2006.html
6059 2 2006-11-22T01:07:00.000 CVE-2006-6059 NetGear MA521 PCMCIA アダプタ用の MA521nd5.SYS ドライバにおけるバッファオーバーフローの脆弱性 http://securitytracker.com/id?1017254
6050 1 2006-11-22T00:07:00.000 CVE-2006-6050 ClickTech Texas Rank'em における SQL インジェクションの脆弱性 http://www.aria-security.com/forum/showthread.php?t=34
6049 1 2006-11-22T00:07:00.000 CVE-2006-6049 Mambo 用の shambo2 コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/30370
6048 1 2006-11-22T00:07:00.000 CVE-2006-6048 Etomite CMS の index.php における SQL インジェクションの脆弱性 http://www.0xcafebabe.it/sploits/etm_0612_sqlinj.pl
6047 1 2006-11-22T00:07:00.000 CVE-2006-6047 Etomite の manager/index.php におけるディレクトリトラバーサルの脆弱性 http://www.0xcafebabe.it/sploits/etm_0612_remote_com.pl
6046 1 2006-11-22T00:07:00.000 CVE-2006-6046 eggblog におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017246
6044 1 2006-11-22T00:07:00.000 CVE-2006-6044 PHPQuickGallery の gallery_top.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1017256
6042 1 2006-11-22T00:07:00.000 CVE-2006-6042 phpWebThings の core/editor.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/23001
6041 1 2006-11-22T00:07:00.000 CVE-2006-6041 Laurent Van den Reysen WORK system e-commerce における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1017249
6039 1 2006-11-22T00:07:00.000 CVE-2006-6039 Powie の PHP MatchMaker における SQL インジェクションの脆弱性 http://secunia.com/advisories/22966
6038 1 2006-11-22T00:07:00.000 CVE-2006-6038 Powie pForum の editpoll.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21144
6035 1 2006-11-22T00:07:00.000 CVE-2006-6035 BLOG:CMS の list.php におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017250
6046 2 2006-11-22T00:07:00.000 CVE-2006-6046 eggblog におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21134
6039 2 2006-11-22T00:07:00.000 CVE-2006-6039 Powie の PHP MatchMaker における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/21145
6035 2 2006-11-22T00:07:00.000 CVE-2006-6035 BLOG:CMS の list.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21173
6027 1 2006-11-21T23:07:00.000 CVE-2006-6027 Adobe Reader および Acrobat の AcroPDF ActiveX コントロールにおけるメモリ破壊の脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/21155-AcroPDF_DoS.html
6018 1 2006-11-21T23:07:00.000 CVE-2006-6018 - http://attrition.org/pipermail/vim/2006-November/001127.html
3890 1 2006-11-21T22:07:00.000 CVE-2006-3890 WinZip などで使用される Sky Software FileView ActiveX コントロールにおけるスタックベースのバッファオーバーフローの脆弱性 http://secunia.com/advisories/22891
5991 1 2006-11-21T02:07:00.000 CVE-2006-5991 wwWeb concepts CactuShop における SQL インジェクションの脆弱性 http://aria-security.net/advisory/WWWeb%20Cocepts.txt
5983 1 2006-11-20T21:07:00.000 CVE-2006-5983 JBMC Software DirectAdmin におけるクロスサイトスクリプティングの脆弱性 http://securityreason.com/securityalert/1885
5983 2 2006-11-20T21:07:00.000 CVE-2006-5983 JBMC Software DirectAdmin におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21049
5983 3 2006-11-20T21:07:00.000 CVE-2006-5983 JBMC Software DirectAdmin におけるクロスサイトスクリプティングの脆弱性 http://securityreason.com/securityalert/1885
5983 4 2006-11-20T21:07:00.000 CVE-2006-5983 JBMC Software DirectAdmin におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/21049
5961 1 2006-11-17T01:07:00.000 CVE-2006-5961 Windows 用の Mercury Mail Transport System におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/21110
5960 1 2006-11-17T01:07:00.000 CVE-2006-5960 A+ Store E-Commerce の account_login.asp におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-11/0248.html
5959 1 2006-11-17T01:07:00.000 CVE-2006-5959 A+ Store E-Commerce の browse.asp における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-11/0248.html
5961 2 2006-11-17T01:07:00.000 CVE-2006-5961 Windows 用の Mercury Mail Transport System におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/21110
5955 1 2006-11-17T00:07:00.000 CVE-2006-5955 20/20 DataShed の listings.asp における SQL インジェクションの脆弱性 http://aria-security.net/advisory/Real%20Estate%20Listing%20System.txt
5953 1 2006-11-17T00:07:00.000 CVE-2006-5953 Evolve ショッピンングカートの viewcart.asp における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=28
5924 1 2006-11-15T15:07:00.000 CVE-2006-5924 Efficient IPm の index.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20952
5917 1 2006-11-15T15:07:00.000 CVE-2006-5917 OmniStar Article Manager における SQL インジェクションの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=10
5916 1 2006-11-15T15:07:00.000 CVE-2006-5916 Intego VirusBarrier におけるウィルス保護を回避される脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-11/0141.html
5913 1 2006-11-15T15:07:00.000 CVE-2006-5913 Microsoft Internet Explorer 7 における安全な Web サイトからのセキュリティの証明書が無効と見なされる脆弱性 http://www.blogger.com/comment.g?blogID=15069726&postID=116257593427394541
5908 1 2006-11-15T15:07:00.000 CVE-2006-5908 Lucas Rodriguez San Pedro YANS の yans.func.php における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-11/0121.html
5907 1 2006-11-15T15:07:00.000 CVE-2006-5907 Jean-Christophe Ramos SCRIPT BANNIERES における SQL インジェクションの脆弱性 http://www.attrition.org/pipermail/vim/2006-November/001124.html
5924 2 2006-11-15T15:07:00.000 CVE-2006-5924 Efficient IPm の index.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20952
5894 1 2006-11-14T22:07:00.000 CVE-2006-5894 Rama CMS の lang.php におけるディレクトリトラバーサルの脆弱性 http://www.rahim.webd.pl/exploit127.html
5894 2 2006-11-14T22:07:00.000 CVE-2006-5894 Rama CMS の lang.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/21009
5883 1 2006-11-14T19:07:00.000 CVE-2006-5883 cPanel におけるクロスサイトスクリプティングの脆弱性 http://aria-security.net/advisory/cpanel.txt
5881 1 2006-11-14T19:07:00.000 CVE-2006-5881 Dynamic Dataworx NuCommunity の cl_CatListing.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/22827
5879 1 2006-11-14T19:07:00.000 CVE-2006-5879 ASPPortal の default1.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/22845
5851 1 2006-11-10T02:07:00.000 CVE-2006-5851 OpenBase SQL の openexec における任意のファイルを作成される脆弱性 http://www.digitalmunition.com/DMA%5B2006-1107a%5D.txt
5850 1 2006-11-10T02:07:00.000 CVE-2006-5850 Windows 上の Essentia Web Server におけるスタックベースのバッファオーバーフローの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-November/050537.html
5847 1 2006-11-10T02:07:00.000 CVE-2006-5847 FreeWebshop の index.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20969
5846 1 2006-11-10T02:07:00.000 CVE-2006-5846 FreeWebshop の index.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20969
5843 1 2006-11-10T02:07:00.000 CVE-2006-5843 Speedywiki の index.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20976
5841 1 2006-11-10T02:07:00.000 CVE-2006-5841 DodosMail の dodosmail.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22775
5837 1 2006-11-10T01:07:00.000 CVE-2006-5837 iWare Professional CMS 用の SimpleChat モジュールにおける chat_log.php へ任意の PHP コードを挿入される脆弱性 http://www.securityfocus.com/bid/20947
5834 1 2006-11-10T01:07:00.000 CVE-2006-5834 OpenSolution Quick.Cms.Lite の general.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20923
5833 1 2006-11-10T01:07:00.000 CVE-2006-5833 GreenBeast CMS の gbcms_php_files/up_loader.php におけるサービス運用妨害 (DoS) の脆弱性 http://newhack.org/advisories/GreenBeastCMS.txt
5828 1 2006-11-10T01:07:00.000 CVE-2006-5828 DeltaScripts PHP Classifieds の detail.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20935
5814 1 2006-11-08T23:07:00.000 CVE-2006-5814 Novell eDirectory における任意のコードを実行される脆弱性 http://gleg.net/vulndisco_meta.shtml
5813 1 2006-11-08T23:07:00.000 CVE-2006-5813 Novell eDirectory におけるサービス運用妨害 (DoS) の脆弱性 http://gleg.net/vulndisco_meta.shtml
5812 1 2006-11-08T23:07:00.000 CVE-2006-5812 Kerio MailServer におけるサービス運用妨害 (DoS) の脆弱性 http://gleg.net/vulndisco_meta.shtml
5811 1 2006-11-08T23:07:00.000 CVE-2006-5811 OpenEMR の library/translation.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv60-theday-2006.txt
5810 1 2006-11-08T23:07:00.000 CVE-2006-5810 XOOPS の modules/wfdownloads/newlist.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20927
5814 2 2006-11-08T23:07:00.000 CVE-2006-5814 Novell eDirectory における任意のコードを実行される脆弱性 http://securitytracker.com/id?1017169
5810 2 2006-11-08T23:07:00.000 CVE-2006-5810 XOOPS の modules/wfdownloads/newlist.php におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20927
5805 1 2006-11-08T22:07:00.000 CVE-2006-5805 Microsoft Internet Explorer 7 における安全な Web サイトからのセキュリティの証明書が無効と見なされる脆弱性 http://ingehenriksen.blogspot.com/2006/11/ie7-website-security-certificate.html
5805 2 2006-11-08T22:07:00.000 CVE-2006-5805 Microsoft Internet Explorer 7 における安全な Web サイトからのセキュリティの証明書が無効と見なされる脆弱性 http://securitytracker.com/id?1017165
5803 1 2006-11-08T20:07:00.000 CVE-2006-5803 mxBB Smart Album モジュールの modules/mx_smartor/album.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20932
5802 1 2006-11-08T20:07:00.000 CVE-2006-5802 The Web Drivers Simple Forum の message_details.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20937
5796 1 2006-11-08T20:07:00.000 CVE-2006-5796 Soholaunch Pro Edition における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv57-theday-2006.txt
5795 1 2006-11-08T20:07:00.000 CVE-2006-5795 OpenEMR における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv60-theday-2006.txt
5792 1 2006-11-07T23:07:00.000 CVE-2006-5792 XLink Omni-NFS Enterprise における任意のコードを実行される脆弱性 http://gleg.net/vulndisco_meta.shtml
5787 1 2006-11-07T23:07:00.000 CVE-2006-5787 IPrimal Forums の admin/index.php におけるユーザパスワードを変更される脆弱性 http://www.securityfocus.com/bid/20951
5786 1 2006-11-07T23:07:00.000 CVE-2006-5786 e107 の class2.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20913
5780 1 2006-11-07T18:07:00.000 CVE-2006-5780 XLink Omni-NFS Server の nfsd.exe におけるスタックベースのバッファオーバーフローの脆弱性 http://gleg.net/downloads/VULNDISCO_META_FREE.tar.gz
5779 1 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://gleg.net/downloads/VULNDISCO_META_FREE.tar.gz
5780 2 2006-11-07T18:07:00.000 CVE-2006-5780 XLink Omni-NFS Server の nfsd.exe におけるスタックベースのバッファオーバーフローの脆弱性 http://gleg.net/vulndisco_meta.shtml
5779 2 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://gleg.net/vulndisco_meta.shtml
5779 3 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://securitytracker.com/id?1017166
5779 4 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://www.openldap.org/its/index.cgi/Software%20Bugs?id=4740
5779 5 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/20939
5779 6 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://gleg.net/downloads/VULNDISCO_META_FREE.tar.gz
5779 7 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://gleg.net/vulndisco_meta.shtml
5779 8 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://securitytracker.com/id?1017166
5779 9 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://www.openldap.org/its/index.cgi/Software%20Bugs?id=4740
5779 10 2006-11-07T18:07:00.000 CVE-2006-5779 OpenLDAP の BIND リクエストによるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/20939
5768 1 2006-11-06T23:07:00.000 CVE-2006-5768 Cyberfolio における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv58-theday-2006.txt
5766 1 2006-11-06T23:07:00.000 CVE-2006-5766 Article System の volume.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20892
5761 1 2006-11-06T23:07:00.000 CVE-2006-5761 Rhadrix If-CMS の index.php におけるクロスサイトスクリプティングの脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=5
5759 1 2006-11-06T22:07:00.000 CVE-2006-5759 Rhadrix If-CMS の index.php における Web サーバのフルパスを取得される脆弱性 http://s-a-p.ca/index.php?page=OurAdvisories&id=5
5739 1 2006-11-06T18:07:00.000 CVE-2006-5739 Leicestershire communityPortals の cpadmin/cpa_index.php における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1017047
5728 1 2006-11-06T17:07:00.000 CVE-2006-5728 XM Easy Personal FTP Server におけるサービス運用妨害 (DoS) の脆弱性 http://secunia.com/advisories/22717
5727 1 2006-11-06T17:07:00.000 CVE-2006-5727 sazcart の admin/controls/cart.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22708
5726 1 2006-11-06T17:07:00.000 CVE-2006-5726 Solaris の UFS filesystem におけるサービス運用妨害 (DoS) の脆弱性 http://projects.info-pull.com/mokb/MOKB-04-11-2006.html
5466 1 2006-11-06T17:07:00.000 CVE-2006-5466 RPM Package Manager の librpm におけるヒープベースのバッファオーバーフローの脆弱性 http://secunia.com/advisories/22740
5726 2 2006-11-06T17:07:00.000 CVE-2006-5726 Solaris の UFS filesystem におけるサービス運用妨害 (DoS) の脆弱性 http://secunia.com/advisories/22714
5724 1 2006-11-04T01:07:00.000 CVE-2006-5724 ICQ の "Answering Service" 関数におけるヒープベースのバッファオーバーフローの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-October/050461.html
5715 1 2006-11-04T01:07:00.000 CVE-2006-5715 EFS Easy Address Book におけるWeb ルート配下の任意のファイルを読まれる脆弱性 http://www.securityfocus.com/bid/20861
5714 1 2006-11-04T01:07:00.000 CVE-2006-5714 EFS Web Server における Web ルート配下の任意のファイルを読まれる脆弱性 http://www.securityfocus.com/bid/20823
5713 1 2006-11-04T01:07:00.000 CVE-2006-5713 EFS Web Server におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20823
5711 1 2006-11-04T01:07:00.000 CVE-2006-5711 ECI Telecom B-FOCuS Wireless 802.11b/g ADSL2+ Router における任意のファイルを読み取られる脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-October/050459.html
5701 1 2006-11-03T23:07:00.000 CVE-2006-5701 Fedora Core 5 などで使用される Linux kernel におけるメモリ二重解放の脆弱性 http://projects.info-pull.com/mokb/MOKB-02-11-2006.html
5701 2 2006-11-03T23:07:00.000 CVE-2006-5701 Fedora Core 5 などで使用される Linux kernel におけるメモリ二重解放の脆弱性 http://secunia.com/advisories/22655
5672 1 2006-11-03T01:07:00.000 CVE-2006-5672 MySource CMS の web/init_mysource.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20817
5666 1 2006-11-03T01:07:00.000 CVE-2006-5666 E-Annu の includes/menu.inc.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20815
5653 1 2006-11-03T00:07:00.000 CVE-2006-5653 Sun Java System Messenger Express の index スクリプトにおけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22663
5643 1 2006-11-01T00:07:00.000 CVE-2006-5643 foresite CMS の search_de.html におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22648
5641 1 2006-11-01T00:07:00.000 CVE-2006-5641 Techno Dreams Announcement の MainAnnounce2.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20794
5640 1 2006-11-01T00:07:00.000 CVE-2006-5640 Techno Dreams Guest Book の guestbookview.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20802
5638 1 2006-11-01T00:07:00.000 CVE-2006-5638 PHPMyRing の cherche.php における SQL インジェクションの脆弱性 http://secunia.com/advisories/22620
5637 1 2006-11-01T00:07:00.000 CVE-2006-5637 Faq Administrator の faq_reply.php における PHP リモートファイルインクルージョンの脆弱性 http://www.attrition.org/pipermail/vim/2006-October/001100.html
5636 1 2006-11-01T00:07:00.000 CVE-2006-5636 SWS の common.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22618
5643 2 2006-11-01T00:07:00.000 CVE-2006-5643 foresite CMS の search_de.html におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017134
5638 2 2006-11-01T00:07:00.000 CVE-2006-5638 PHPMyRing の cherche.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20792
5643 3 2006-11-01T00:07:00.000 CVE-2006-5643 foresite CMS の search_de.html におけるクロスサイトスクリプティングの脆弱性 http://www.majorsecurity.de/index_2.php?major_rls=major_rls29
5633 1 2006-10-31T22:07:00.000 CVE-2006-5633 Firefox などにおけるサービス運用妨害 (DoS) の脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-October/050416.html
5633 2 2006-10-31T22:07:00.000 CVE-2006-5633 Firefox などにおけるサービス運用妨害 (DoS) の脆弱性 http://www.gotfault.net/research/advisory/gadv-firefox.txt
5626 1 2006-10-31T20:07:00.000 CVE-2006-5626 phpFaber CMS の cms_images/js/htmlarea/htmlarea.php におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22629
5625 1 2006-10-31T20:07:00.000 CVE-2006-5625 N/X 2002 Professional Edition WCMS における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20773
5624 1 2006-10-31T20:07:00.000 CVE-2006-5624 MPCS における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20751
5623 1 2006-10-31T20:07:00.000 CVE-2006-5623 EE Tool の ip.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20780
5622 1 2006-10-31T20:07:00.000 CVE-2006-5622 Coppermine Photo Gallery の picmgr.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20774
5621 1 2006-10-31T20:07:00.000 CVE-2006-5621 ask_rave の end.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20758
5618 1 2006-10-31T01:07:00.000 CVE-2006-5618 Netref の script/cat_for_aff.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20789
5608 1 2006-10-30T23:07:00.000 CVE-2006-5608 Drupal 用の xtracker における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20759
5604 1 2006-10-30T18:07:00.000 CVE-2006-5604 phpCards の phpcards.header.php におけるディレクトリトラバーサルの脆弱性 http://securitytracker.com/id?1017070
5603 1 2006-10-30T18:07:00.000 CVE-2006-5603 Snitz Forums 2000 の pop_mail.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20712
5603 2 2006-10-30T18:07:00.000 CVE-2006-5603 Snitz Forums 2000 の pop_mail.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20712
5598 1 2006-10-28T01:07:00.000 CVE-2006-5598 GOOP Gallery の index.php におけるクロスサイトスクリプティングの脆弱性 http://lostmon.blogspot.com/2006/10/goop-gallery-image-param-cross-site.html
5598 2 2006-10-28T01:07:00.000 CVE-2006-5598 GOOP Gallery の index.php におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1017081
5597 1 2006-10-28T00:07:00.000 CVE-2006-5597 MiniHTTP Web Forum & File Server PowerPack における任意のユーザアカウントを追加される脆弱性 http://www.securityfocus.com/bid/20743
5596 1 2006-10-28T00:07:00.000 CVE-2006-5596 AEP Smartgate の SSL サーバにおけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20722
5591 1 2006-10-27T18:07:00.000 CVE-2006-5591 PacPoll の Admin/check.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/22576
5587 1 2006-10-27T18:07:00.000 CVE-2006-5587 MDweb における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20687
5569 1 2006-10-27T16:07:00.000 CVE-2006-5569 FtpXQ Server における任意のファイルを読み取られる脆弱性 http://www.securityfocus.com/bid/20721
5565 1 2006-10-27T16:07:00.000 CVE-2006-5565 MAXdev MD-Pro における CRLF インジェクションの脆弱性 http://secunia.com/advisories/22564
5564 1 2006-10-27T16:07:00.000 CVE-2006-5564 MAXdev MD-Pro の user.php におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22564
5562 1 2006-10-27T16:07:00.000 CVE-2006-5562 SourceForge の include/database.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20692
5561 1 2006-10-27T16:07:00.000 CVE-2006-5561 Discuz! GBK の admincp.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20734
5558 1 2006-10-27T16:07:00.000 CVE-2006-5558 HP-UX の swask コマンドにおけるフォーマットストリングの脆弱性 http://blogs.23.nu/prdelka/stories/13144/
5557 1 2006-10-27T16:07:00.000 CVE-2006-5557 HP-UX の swpackage コマンドにおけるスタックベースのバッファオーバーフローの脆弱性 http://blogs.23.nu/prdelka/stories/13144/
5556 1 2006-10-27T16:07:00.000 CVE-2006-5556 HP-UX の libc の localtime_r 関数におけるバッファオーバーフローの脆弱性 http://blogs.23.nu/prdelka/stories/13144/
5569 2 2006-10-27T16:07:00.000 CVE-2006-5569 FtpXQ Server における任意のファイルを読み取られる脆弱性 http://www.securityfocus.com/bid/20721
5558 2 2006-10-27T16:07:00.000 CVE-2006-5558 HP-UX の swask コマンドにおけるフォーマットストリングの脆弱性 http://www.securityfocus.com/bid/20726
5556 2 2006-10-27T16:07:00.000 CVE-2006-5556 HP-UX の libc の localtime_r 関数におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/20718
5555 1 2006-10-26T17:07:00.000 CVE-2006-5555 EPNadmin の constantes.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.attrition.org/pipermail/vim/2006-October/001098.html
5554 1 2006-10-26T17:07:00.000 CVE-2006-5554 Imageview の index.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20731
5552 1 2006-10-26T17:07:00.000 CVE-2006-5552 RevilloC MailServer におけるヒープベースのバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/20709
5551 1 2006-10-26T17:07:00.000 CVE-2006-5551 QK SMTP におけるスタックベースのバッファオーバーフローの脆弱性 http://securitytracker.com/id?1017114
5550 1 2006-10-26T17:07:00.000 CVE-2006-5550 FreeBSD および OpenBSD のカーネルにおけるサービス運用妨害 (DoS) の脆弱性 http://elegerov.blogspot.com/2006/10/here-is-lame-proof-of-concept-code-for.html
5548 1 2006-10-26T17:07:00.000 CVE-2006-5548 OTSCMS の OTSCMS/OTSCMS.php における PHP リモートファイルインクルージョンの脆弱性 http://attrition.org/pipermail/vim/2006-October/001096.html
5547 1 2006-10-26T17:07:00.000 CVE-2006-5547 OTSCMS の OTSCMS/OTSCMS.php における PHP リモートファイルインクルージョンの脆弱性 http://attrition.org/pipermail/vim/2006-October/001096.html
5546 1 2006-10-26T17:07:00.000 CVE-2006-5546 OTSCMS の OTSCMS/OTSCMS.php における PHP リモートファイルインクルージョンの脆弱性 http://attrition.org/pipermail/vim/2006-October/001096.html
5538 1 2006-10-26T17:07:00.000 CVE-2006-5538 D-Link DSL-G624T における cgi-bin ディレクトリのコンテンツを一覧にされる脆弱性 http://www.eazel.es/advisory005-D-Link-DSL-G624T-directoy-transversal-xss-cross-site-scripting-directory-listing-vulnerabilities.html
5537 1 2006-10-26T17:07:00.000 CVE-2006-5537 D-Link DSL-G624T の cgi-bin/webcm におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22524
5536 1 2006-10-26T17:07:00.000 CVE-2006-5536 D-Link DSL-G624T の cgi-bin/webcm におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/22524
5531 1 2006-10-26T17:07:00.000 CVE-2006-5531 Ascended Guestbook の embedded.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20710
5530 1 2006-10-26T17:07:00.000 CVE-2006-5530 Boesch SimpNews におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20714
5528 1 2006-10-26T17:07:00.000 CVE-2006-5528 SchoolAlumni Portal の mod.php におけるディレクトリトラバーサルの脆弱性 http://securitytracker.com/id?1017105
5555 2 2006-10-26T17:07:00.000 CVE-2006-5555 EPNadmin の constantes.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20624
5551 2 2006-10-26T17:07:00.000 CVE-2006-5551 QK SMTP におけるスタックベースのバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/20681
5550 2 2006-10-26T17:07:00.000 CVE-2006-5550 FreeBSD および OpenBSD のカーネルにおけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/20713
5548 2 2006-10-26T17:07:00.000 CVE-2006-5548 OTSCMS の OTSCMS/OTSCMS.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20694
5547 2 2006-10-26T17:07:00.000 CVE-2006-5547 OTSCMS の OTSCMS/OTSCMS.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20694
5546 2 2006-10-26T17:07:00.000 CVE-2006-5546 OTSCMS の OTSCMS/OTSCMS.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20694
5550 3 2006-10-26T17:07:00.000 CVE-2006-5550 FreeBSD および OpenBSD のカーネルにおけるサービス運用妨害 (DoS) の脆弱性 http://elegerov.blogspot.com/2006/10/here-is-lame-proof-of-concept-code-for.html
5550 4 2006-10-26T17:07:00.000 CVE-2006-5550 FreeBSD および OpenBSD のカーネルにおけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/20713
5525 1 2006-10-26T16:07:00.000 CVE-2006-5525 PHP-Nuke の mainfile.php における SQL インジェクション攻撃を実行される脆弱性 http://www.securityfocus.com/bid/20674
5524 1 2006-10-26T16:07:00.000 CVE-2006-5524 phplist の index.php におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22431
5522 1 2006-10-26T16:07:00.000 CVE-2006-5522 Johannes Erdfelt Kawf における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20659
5519 1 2006-10-26T16:07:00.000 CVE-2006-5519 Mambo 用の MambWeather コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20667
5511 1 2006-10-25T22:07:00.000 CVE-2006-5511 JUBB の delete.php における任意の Web スクリプトなどを挿入される脆弱性 http://attrition.org/pipermail/vim/2006-October/001095.html
5511 2 2006-10-25T22:07:00.000 CVE-2006-5511 JUBB の delete.php における任意の Web スクリプトなどを挿入される脆弱性 http://www.securityfocus.com/bid/20679
5480 1 2006-10-24T20:07:00.000 CVE-2006-5480 2le.net Castor PHP Web Builder の lib/rs.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22527
5480 2 2006-10-24T20:07:00.000 CVE-2006-5480 2le.net Castor PHP Web Builder の lib/rs.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20658
5457 1 2006-10-23T17:07:00.000 CVE-2006-5457 Casinosoft Casino Script の登録フォームにおけるクロスサイトスクリプティングの脆弱性 http://www.securitylab.ru/forum/read.php?FID=16&TID=23884
5446 1 2006-10-23T17:07:00.000 CVE-2006-5446 Casinosoft Casino Script の lobby/config.php における SQL インジェクションの脆弱性 http://secunia.com/advisories/22398
5457 2 2006-10-23T17:07:00.000 CVE-2006-5457 Casinosoft Casino Script の登録フォームにおけるクロスサイトスクリプティングの脆弱性 http://www.securitylab.ru/forum/read.php?FID=16&TID=23884
5446 2 2006-10-23T17:07:00.000 CVE-2006-5446 Casinosoft Casino Script の lobby/config.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20646
5446 3 2006-10-23T17:07:00.000 CVE-2006-5446 Casinosoft Casino Script の lobby/config.php における SQL インジェクションの脆弱性 http://www.securitylab.ru/forum/read.php?FID=16&TID=23884
4926 1 2006-10-20T22:07:00.000 CVE-2006-4926 Kaspersky Anti-Virus などの NDIS-TDI フッキングエンジンにおけるコードを実行される脆弱性 http://securitytracker.com/id?1017093
4926 2 2006-10-20T22:07:00.000 CVE-2006-4926 Kaspersky Anti-Virus などの NDIS-TDI フッキングエンジンにおけるコードを実行される脆弱性 http://www.osvdb.org/29891
5429 1 2006-10-20T17:07:00.000 CVE-2006-5429 Barry Nauta BRIM における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22465
5419 1 2006-10-20T14:07:00.000 CVE-2006-5419 University of Glasgow SID の client.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20574
5413 1 2006-10-20T14:07:00.000 CVE-2006-5413 YaBBSM 用の SuperMod における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20568
5412 1 2006-10-20T14:07:00.000 CVE-2006-5412 PHP Outburst Easynews の admin.php における認証を回避される脆弱性 http://www.securityfocus.com/bid/20596
5402 1 2006-10-18T23:07:00.000 CVE-2006-5402 PHPmybibli における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv55-theday-2006.txt
5401 1 2006-10-18T23:07:00.000 CVE-2006-5401 AROUNDMe の template/barnraiser_01/p_new_password.tpl.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20553
5400 1 2006-10-18T23:07:00.000 CVE-2006-5400 CyberBrau の forum/track.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20555
5395 1 2006-10-18T19:07:00.000 CVE-2006-5395 Microsoft Class Package Export Tool におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/20561
5388 1 2006-10-18T19:07:00.000 CVE-2006-5388 WebSPELL の index.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20540
5384 1 2006-10-18T19:07:00.000 CVE-2006-5384 CDS Software Consortium CDS Agenda の modification/SendAlertEmail.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20508
5383 1 2006-10-18T19:07:00.000 CVE-2006-5383 Def-Blog の comadd.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20545
5320 1 2006-10-17T17:07:00.000 CVE-2006-5320 Album Photo Sans Nom の getimg.php におけるディレクトリトラバーサルの脆弱性 http://acid-root.new.fr/poc/13061007.txt
5319 1 2006-10-17T17:07:00.000 CVE-2006-5319 Foafgen の redir.php におけるディレクトリトラバーサルの脆弱性 http://acid-root.new.fr/poc/13061007.txt
5318 1 2006-10-17T17:07:00.000 CVE-2006-5318 Nayco JASmine の index.php における PHP リモートファイルインクルージョンの脆弱性 http://acid-root.new.fr/poc/13061007.txt
5317 1 2006-10-17T17:07:00.000 CVE-2006-5317 eboli の index.php における PHP リモートファイルインクルージョンの脆弱性 http://acid-root.new.fr/poc/13061007.txt
5316 1 2006-10-17T17:07:00.000 CVE-2006-5316 registroTL におけるデータベースをダウンロードされる脆弱性 http://acid-root.new.fr/poc/13061007.txt
5315 1 2006-10-17T17:07:00.000 CVE-2006-5315 registroTL の main.php における PHP リモートファイルインクルージョンの脆弱性 http://acid-root.new.fr/poc/13061007.txt
5314 1 2006-10-17T17:07:00.000 CVE-2006-5314 TribunaLibre の ftag.php における PHP リモートファイルインクルージョンの脆弱性 http://acid-root.new.fr/poc/13061007.txt
4342 1 2006-10-17T17:07:00.000 CVE-2006-4342 Red Hat Enterprise Linux 3 の SMP システムでのサービス運用妨害 (DoS) の脆弱性 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=205618
4342 2 2006-10-17T17:07:00.000 CVE-2006-4342 Red Hat Enterprise Linux 3 の SMP システムでのサービス運用妨害 (DoS) の脆弱性 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=205618
5304 1 2006-10-17T15:07:00.000 CVE-2006-5304 IncCMS Core の inc/settings.php における PHP リモートファイルインクルージョンの脆弱性 http://www.rahim.webd.pl/exploity/Exploits/100.txt
5304 2 2006-10-17T15:07:00.000 CVE-2006-5304 IncCMS Core の inc/settings.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20531
5292 1 2006-10-16T18:07:00.000 CVE-2006-5292 Exhibit Engine の photo_comment.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20447
5284 1 2006-10-13T19:07:00.000 CVE-2006-5284 Shen Cheng-Da PHP News Reader の auth/phpbb.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20480
5263 1 2006-10-12T22:07:00.000 CVE-2006-5263 phpMyAgenda の templates/header.php3 におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20453
5259 1 2006-10-12T22:07:00.000 CVE-2006-5259 Compteur の param_editor.php における PHP リモートファイルインクルージョンの脆弱性 http://acid-root.new.fr/poc/13061007.txt
5257 1 2006-10-12T22:07:00.000 CVE-2006-5257 Ciamos CMS の modules/forum/include/config.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20403
5254 1 2006-10-12T22:07:00.000 CVE-2006-5254 Mark Van Bellen registration_detailed における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20072
5253 1 2006-10-12T22:07:00.000 CVE-2006-5253 Dayana Networks phpOnline の strload.php における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-10/0085.html
5251 1 2006-10-12T22:07:00.000 CVE-2006-5251 Deep CMS の index.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20402
5251 2 2006-10-12T22:07:00.000 CVE-2006-5251 Deep CMS の index.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20402
5248 1 2006-10-12T00:07:00.000 CVE-2006-5248 Eazy Cart における顧客データベースをダウンロードされる脆弱性 http://secunia.com/advisories/22286
5247 1 2006-10-12T00:07:00.000 CVE-2006-5247 Eazy Cart におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22286
5244 1 2006-10-12T00:07:00.000 CVE-2006-5244 OpenDock Easy Blog における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv50-theday-2006.txt
5243 1 2006-10-12T00:07:00.000 CVE-2006-5243 OpenDock Easy Doc における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv49-theday-2006.txt
5241 1 2006-10-12T00:07:00.000 CVE-2006-5241 OpenDock Easy Gallery における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv52-theday-2006.txt
5248 2 2006-10-12T00:07:00.000 CVE-2006-5248 Eazy Cart における顧客データベースをダウンロードされる脆弱性 http://secunia.com/advisories/22286
5244 2 2006-10-12T00:07:00.000 CVE-2006-5244 OpenDock Easy Blog における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22335
5243 2 2006-10-12T00:07:00.000 CVE-2006-5243 OpenDock Easy Doc における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22334
5241 2 2006-10-12T00:07:00.000 CVE-2006-5241 OpenDock Easy Gallery における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22337
5224 1 2006-10-10T21:07:00.000 CVE-2006-5224 phpBB の dwingmods における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20370
5222 1 2006-10-10T21:07:00.000 CVE-2006-5222 Dimension of phpBB における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20367
5218 1 2006-10-10T04:06:00.000 CVE-2006-5218 OpenBSD などの製品で使用される systrace_preprepl 関数における整数オーバーフローの脆弱性 http://scary.beasts.org/security/CESA-2006-003.html
5208 1 2006-10-10T04:06:00.000 CVE-2006-5208 PHP Classifieds における SQL インジェクションの脆弱性 http://kzar.co.uk/exploits/phpclassifieds_exploit
5207 1 2006-10-10T04:06:00.000 CVE-2006-5207 phpMyTeam の images/smileys/smileys_packs.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22278
5202 1 2006-10-10T04:06:00.000 CVE-2006-5202 Linksys WRT54g における任意の設定を変更される脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-August/048495.html
5196 1 2006-10-10T04:06:00.000 CVE-2006-5196 Motorola SURFboard SB4200 Cable Modem におけるサービス運用妨害 (DoS) の脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/20309.pl
5192 1 2006-10-10T04:06:00.000 CVE-2006-5192 phpGreetz の includes/footer.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20352
5190 1 2006-10-10T04:06:00.000 CVE-2006-5190 osCommerce Milestone におけるクロスサイトスクリプティングの脆弱性 http://lostmon.blogspot.com/2006/10/oscommerce-multiple-scripts-page-param.html
5189 1 2006-10-10T04:06:00.000 CVE-2006-5189 klinza professional cms における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20323
5187 1 2006-10-10T04:06:00.000 CVE-2006-5187 BBaCE の includes/functions.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20302
5185 1 2006-10-10T04:06:00.000 CVE-2006-5185 HAMweather の Template.php における任意のコードを実行される脆弱性 http://secunia.com/advisories/22242
5182 1 2006-10-10T04:06:00.000 CVE-2006-5182 Dan Jensen Travelsized CMS の frontpage.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20321
5178 1 2006-10-10T04:06:00.000 CVE-2006-5178 PHP の symlink() 関数における open_basedir 制限回避の脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-October/049850.html
4997 1 2006-10-10T04:06:00.000 CVE-2006-4997 Linux Kernel の解放済み SkBuff バッファ参照によるサービス運用妨害(DoS)の脆弱性 http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=206265
5202 2 2006-10-10T04:06:00.000 CVE-2006-5202 Linksys WRT54g における任意の設定を変更される脆弱性 http://securitytracker.com/id?1016638
5190 2 2006-10-10T04:06:00.000 CVE-2006-5190 osCommerce Milestone におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22275
5185 2 2006-10-10T04:06:00.000 CVE-2006-5185 HAMweather の Template.php における任意のコードを実行される脆弱性 http://www.gulftech.org/?node=research&article_id=00115-09302006
5178 2 2006-10-10T04:06:00.000 CVE-2006-5178 PHP の symlink() 関数における open_basedir 制限回避の脆弱性 http://secunia.com/advisories/22235
4997 2 2006-10-10T04:06:00.000 CVE-2006-4997 Linux Kernel の解放済み SkBuff バッファ参照によるサービス運用妨害(DoS)の脆弱性 http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=206265
5202 3 2006-10-10T04:06:00.000 CVE-2006-5202 Linksys WRT54g における任意の設定を変更される脆弱性 http://www.securityfocus.com/bid/19347
5190 3 2006-10-10T04:06:00.000 CVE-2006-5190 osCommerce Milestone におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1016979
5185 3 2006-10-10T04:06:00.000 CVE-2006-5185 HAMweather の Template.php における任意のコードを実行される脆弱性 http://www.securityfocus.com/bid/20311
5167 1 2006-10-05T04:04:00.000 CVE-2006-5167 BasiliX における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22231
5165 1 2006-10-05T04:04:00.000 CVE-2006-5165 Skrypty PPA Gallery の inc/functions.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22155
5163 1 2006-10-05T04:04:00.000 CVE-2006-5163 Linux の IBM Informix Dynamic Server における任意のファイルへデータを追加される脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-10/0013.html
5162 1 2006-10-05T04:04:00.000 CVE-2006-5162 Microsoft Internet Explorer の wininet.dll におけるサービス運用妨害 (DoS) の脆弱性 http://securityreason.com/securityalert/1683
5155 1 2006-10-05T04:04:00.000 CVE-2006-5155 VideoDB の core/pdf.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20265
5148 1 2006-10-05T04:04:00.000 CVE-2006-5148 Forum82 における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20291
5147 1 2006-10-05T04:04:00.000 CVE-2006-5147 VAMP Webmail の wamp_dir/setup/yesno.phtml における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20289
5165 2 2006-10-05T04:04:00.000 CVE-2006-5165 Skrypty PPA Gallery の inc/functions.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20255
5162 2 2006-10-05T04:04:00.000 CVE-2006-5162 Microsoft Internet Explorer の wininet.dll におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19092
5162 3 2006-10-05T04:04:00.000 CVE-2006-5162 Microsoft Internet Explorer の wininet.dll におけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/2039
5162 4 2006-10-05T04:04:00.000 CVE-2006-5162 Microsoft Internet Explorer の wininet.dll におけるサービス運用妨害 (DoS) の脆弱性 http://securityreason.com/securityalert/1683
5162 5 2006-10-05T04:04:00.000 CVE-2006-5162 Microsoft Internet Explorer の wininet.dll におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19092
5162 6 2006-10-05T04:04:00.000 CVE-2006-5162 Microsoft Internet Explorer の wininet.dll におけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/2039
5140 1 2006-10-03T04:03:00.000 CVE-2006-5140 Lappy512 phpkimagehost の display.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20270
5135 1 2006-10-03T04:03:00.000 CVE-2006-5135 A-Blog における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20238
5125 1 2006-10-03T04:03:00.000 CVE-2006-5125 Joshua Muheim phpMyWebmin の window.php におけるディレクトリトラバーサルの脆弱性 http://kernel-32.blogspot.com/2006/09/php-mywebmin-10-remote-file-include.html
5124 1 2006-10-03T04:03:00.000 CVE-2006-5124 Joshua Muheim phpMyWebmin における PHP リモートファイルインクルージョンの脆弱性 http://kernel-32.blogspot.com/2006/09/php-mywebmin-10-remote-file-include.html
5112 1 2006-10-03T04:03:00.000 CVE-2006-5112 InterVations NaviCOPA Web Server におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/20250
5125 2 2006-10-03T04:03:00.000 CVE-2006-5125 Joshua Muheim phpMyWebmin の window.php におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20264
5124 2 2006-10-03T04:03:00.000 CVE-2006-5124 Joshua Muheim phpMyWebmin における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20264
5099 1 2006-09-29T23:07:00.000 CVE-2006-5099 DokuWiki の lib/exec/fetch.php における任意のコマンドを実行される脆弱性 http://bugs.splitbrain.org/?do=details&id=926
5098 1 2006-09-29T23:07:00.000 CVE-2006-5098 DokuWiki の lib/exec/fetch.php におけるサービス運用妨害 (DoS) の脆弱性 http://bugs.splitbrain.org/?do=details&id=924
5096 1 2006-09-29T21:07:00.000 CVE-2006-5096 VirtueMart Joomla! eCommerce Edition CMS の index.php におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/22162
5093 1 2006-09-29T21:07:00.000 CVE-2006-5093 TagIt! Tagboard の Tagmin Control Center における PHP リモートファイルインクルージョンの脆弱性 http://kernel-32.blogspot.com/2006/09/tagmin-cc-21b-remote-file-include.html
5087 1 2006-09-29T20:07:00.000 CVE-2006-5087 evoBB における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20189
5086 1 2006-09-29T00:07:00.000 CVE-2006-5086 Blog Pixel Motion における管理ユーザに対するユーザ名およびパスワードを変更される脆弱性 http://acid-root.new.fr/poc/12060927.txt
5085 1 2006-09-29T00:07:00.000 CVE-2006-5085 Blog Pixel Motion の config.php における任意の PHP コードを実行される脆弱性 http://acid-root.new.fr/poc/12060927.txt
5079 1 2006-09-29T00:07:00.000 CVE-2006-5079 Matt Humphrey paBugs の class.mysql.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20222
4925 1 2006-09-29T00:07:00.000 CVE-2006-4925 OpenSSH クライアントの無効なパケットの処理によるサービス運用妨害 (DoS) の脆弱性 http://bugs.gentoo.org/show_bug.cgi?id=148228
5070 1 2006-09-28T00:07:00.000 CVE-2006-5070 faceStones Personal の fsl2/objects/fs_form_links.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22107
5068 1 2006-09-28T00:07:00.000 CVE-2006-5068 Brudaswen BrudaNews の admin/index.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22115
5065 1 2006-09-28T00:07:00.000 CVE-2006-5065 ZoomStats の libs/dbmax/mysql.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20165
5058 1 2006-09-28T00:07:00.000 CVE-2006-5058 Call of Duty におけるバッファオーバーフローの脆弱性 http://aluigi.altervista.org/adv/codmapbof-adv.txt
5053 1 2006-09-28T00:07:00.000 CVE-2006-5053 Web-News の webnews/template.php における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/29106
5070 2 2006-09-28T00:07:00.000 CVE-2006-5070 faceStones Personal の fsl2/objects/fs_form_links.php における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/29178
5068 2 2006-09-28T00:07:00.000 CVE-2006-5068 Brudaswen BrudaNews の admin/index.php における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/29176
5058 2 2006-09-28T00:07:00.000 CVE-2006-5058 Call of Duty におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/20180
5053 2 2006-09-28T00:07:00.000 CVE-2006-5053 Web-News の webnews/template.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20166
5070 3 2006-09-28T00:07:00.000 CVE-2006-5070 faceStones Personal の fsl2/objects/fs_form_links.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20188
5068 3 2006-09-28T00:07:00.000 CVE-2006-5068 Brudaswen BrudaNews の admin/index.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20192
5035 1 2006-09-27T23:07:00.000 CVE-2006-5035 Paul Smith Computer Services vCAP におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/21862
5030 1 2006-09-27T23:07:00.000 CVE-2006-5030 exV2 の modules/messages/index.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20143
5021 1 2006-09-27T23:07:00.000 CVE-2006-5021 redgun RedBLoG における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20115
5035 2 2006-09-27T23:07:00.000 CVE-2006-5035 Paul Smith Computer Services vCAP におけるクロスサイトスクリプティングの脆弱性 http://www.osvdb.org/28809
5021 2 2006-09-27T23:07:00.000 CVE-2006-5021 redgun RedBLoG における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20115
5035 3 2006-09-27T23:07:00.000 CVE-2006-5035 Paul Smith Computer Services vCAP におけるクロスサイトスクリプティングの脆弱性 http://www.osvdb.org/28810
4975 1 2006-09-25T01:07:00.000 CVE-2006-4975 WAP 用の Yahoo! Messenger における任意の Web スクリプトまたは HTML を挿入される脆弱性 http://advisories.echo.or.id/adv/adv47-theday-2006.txt
4957 1 2006-09-23T10:07:00.000 CVE-2006-4957 MyReview の functions.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20105
4956 1 2006-09-23T10:07:00.000 CVE-2006-4956 Java 用の Neon WebMail におけるクロスサイトスクリプティングの脆弱性 http://vuln.sg/neonmail506-en.html
4955 1 2006-09-23T10:07:00.000 CVE-2006-4955 Java 用の Neon WebMail におけるディレクトリトラバーサルの脆弱性 http://vuln.sg/neonmail506-en.html
4954 1 2006-09-23T10:07:00.000 CVE-2006-4954 Neon WebMail の updateuser サーブレットにおける任意のユーザの情報を変更される脆弱性 http://vuln.sg/neonmail506-en.html
4953 1 2006-09-23T10:07:00.000 CVE-2006-4953 Neon WebMail における SQL インジェクションの脆弱性 http://vuln.sg/neonmail506-en.html
4952 1 2006-09-23T10:07:00.000 CVE-2006-4952 Neon WebMail の updatemail サーブレットにおける電子メールメッセージを移動される脆弱性 http://vuln.sg/neonmail506-en.html
4951 1 2006-09-23T10:07:00.000 CVE-2006-4951 Neon WebMail における任意の JSP コードを実行される脆弱性 http://vuln.sg/neonmail506-en.html
4956 2 2006-09-23T10:07:00.000 CVE-2006-4956 Java 用の Neon WebMail におけるクロスサイトスクリプティングの脆弱性 http://www.securityfocus.com/bid/20109
4955 2 2006-09-23T10:07:00.000 CVE-2006-4955 Java 用の Neon WebMail におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/20109
4954 2 2006-09-23T10:07:00.000 CVE-2006-4954 Neon WebMail の updateuser サーブレットにおける任意のユーザの情報を変更される脆弱性 http://www.securityfocus.com/bid/20109
4953 2 2006-09-23T10:07:00.000 CVE-2006-4953 Neon WebMail における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20109
4952 2 2006-09-23T10:07:00.000 CVE-2006-4952 Neon WebMail の updatemail サーブレットにおける電子メールメッセージを移動される脆弱性 http://www.securityfocus.com/bid/20109
4951 2 2006-09-23T10:07:00.000 CVE-2006-4951 Neon WebMail における任意の JSP コードを実行される脆弱性 http://www.securityfocus.com/bid/20109
4946 1 2006-09-23T01:07:00.000 CVE-2006-4946 BCWB の include/startup.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/22024
4945 1 2006-09-23T01:07:00.000 CVE-2006-4945 Cardway DigitalWebShop における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20107
4946 2 2006-09-23T01:07:00.000 CVE-2006-4946 BCWB の include/startup.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20116
4944 1 2006-09-23T00:07:00.000 CVE-2006-4944 ProgSys の includes/pear/Net/DNS/RR.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20141
4901 1 2006-09-22T22:07:00.000 CVE-2006-4901 CA eTrust Security Command Center および eTrust Audit における警告を偽装される脆弱性 http://secunia.com/advisories/22023
4900 1 2006-09-22T22:07:00.000 CVE-2006-4900 CA eTrust Security Command Center におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/22023
4899 1 2006-09-22T22:07:00.000 CVE-2006-4899 CA eTrust Security Command Center の ePPIServlet スクリプトにおけるサーバのパスを取得される脆弱性 http://secunia.com/advisories/22023
4914 1 2006-09-21T00:07:00.000 CVE-2006-4914 A.l-Pifou におけるディレクトリトラバーサルの脆弱性 http://seclists.org/fulldisclosure/2006/Sep/0341.html
4912 1 2006-09-21T00:07:00.000 CVE-2006-4912 PHP DocWriter における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20041
4908 1 2006-09-21T00:07:00.000 CVE-2006-4908 OSU における重要な情報を取得される脆弱性 http://secunia.com/advisories/22016
4906 1 2006-09-21T00:07:00.000 CVE-2006-4906 More.groupware の modules/calendar/week.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/20100
4898 1 2006-09-19T22:07:00.000 CVE-2006-4898 guanxiCRM の include/phpxd/phpXD.php における PHP リモートファイルインクルーションの脆弱性 http://www.securityfocus.com/bid/20071
4893 1 2006-09-19T22:07:00.000 CVE-2006-4893 phpBB XS の bb_usage_stats/includes/bb_usage_stats.php における PHP リモートファイルインクルージョンの脆弱性 http://nyubicrew.org/adv/Noge_adv_02.txt
4852 1 2006-09-19T01:07:00.000 CVE-2006-4852 QuadComm Q-Shop の browse.asp における SQL インジェクションの脆弱性 http://secunia.com/advisories/21929
4845 1 2006-09-19T01:07:00.000 CVE-2006-4845 TeamCal Pro の includes/footer.html.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20030
4844 1 2006-09-19T01:07:00.000 CVE-2006-4844 Dokeos などの製品で使用される Claroline の inc/claro_init_local.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21931
4845 2 2006-09-19T01:07:00.000 CVE-2006-4845 TeamCal Pro の includes/footer.html.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20036
4844 2 2006-09-19T01:07:00.000 CVE-2006-4844 Dokeos などの製品で使用される Claroline の inc/claro_init_local.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.gulftech.org/?node=research&article_id=00112-09142006
4832 1 2006-09-15T22:07:00.000 CVE-2006-4832 Verso NetPerformer FRAD ACT SDM におけるバッファオーバーフローの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-September/049434.html
4827 1 2006-09-15T22:07:00.000 CVE-2006-4827 Vmist Downstat における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21914
4832 2 2006-09-15T22:07:00.000 CVE-2006-4832 Verso NetPerformer FRAD ACT SDM におけるバッファオーバーフローの脆弱性 http://secunia.com/advisories/21876
4827 2 2006-09-15T22:07:00.000 CVE-2006-4827 Vmist Downstat における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/20007
4801 1 2006-09-14T22:07:00.000 CVE-2006-4801 Roxio Toast Titanium で使用されている Deja Vu における任意のコードを実行される脆弱性 http://www.netragard.com/pdfs/research/ROXIO_RACE_NETRAGARD-20060624.txt
4437 1 2006-09-14T22:07:00.000 CVE-2006-4437 Tagger LE における任意の PHP コードを実行される脆弱性 http://secunia.com/advisories/21449
4437 2 2006-09-14T22:07:00.000 CVE-2006-4437 Tagger LE における任意の PHP コードを実行される脆弱性 http://secunia.com/secunia_research/2006-62/advisory/
4789 1 2006-09-14T10:07:00.000 CVE-2006-4789 Open Movie Editor におけるバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/19938
4783 1 2006-09-14T10:07:00.000 CVE-2006-4783 WebSPELL の squads.php における SQL インジェクションの脆弱性 http://cms.webspell.org/index.php?site=files&file=11
4782 1 2006-09-14T10:07:00.000 CVE-2006-4782 WebSPELL の src/index.php における認証を回避される脆弱性 http://secunia.com/advisories/21881
4781 1 2006-09-14T10:07:00.000 CVE-2006-4781 FutureSoft TFTP Server MT におけるヒープベースのバッファオーバーフローの脆弱性 http://secunia.com/advisories/21844
4783 2 2006-09-14T10:07:00.000 CVE-2006-4783 WebSPELL の squads.php における SQL インジェクションの脆弱性 http://secunia.com/advisories/21881
4782 2 2006-09-14T10:07:00.000 CVE-2006-4782 WebSPELL の src/index.php における認証を回避される脆弱性 http://www.securityfocus.com/bid/19975
4781 2 2006-09-14T10:07:00.000 CVE-2006-4781 FutureSoft TFTP Server MT におけるヒープベースのバッファオーバーフローの脆弱性 http://www.securityfocus.com/bid/19925
4770 1 2006-09-13T23:07:00.000 CVE-2006-4770 MiniPort@l の menu.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19949
4769 1 2006-09-13T23:07:00.000 CVE-2006-4769 p4CMS の abf_js.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19971
4750 1 2006-09-13T22:07:00.000 CVE-2006-4750 OPENi-CMS の openi-admin/base/fileloader.php における PHP リモートファイルインクルージョンの脆弱性 http://bb.domaindlx.com/bingung/shellcore/advisories.asp?bug_report=display&infamous_group=103
4745 1 2006-09-13T22:07:00.000 CVE-2006-4745 ScaryBear PocketExpense Pro における認証を無効にされる脆弱性 http://airscanner.com/security/06062602_pocketexpensepro.htm
4750 2 2006-09-13T22:07:00.000 CVE-2006-4750 OPENi-CMS の openi-admin/base/fileloader.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21874
4750 3 2006-09-13T22:07:00.000 CVE-2006-4750 OPENi-CMS の openi-admin/base/fileloader.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19952
4723 1 2006-09-12T16:07:00.000 CVE-2006-4723 RaidenHTTPD の raidenhttpd-admin/slice/check.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19918
4721 1 2006-09-12T16:07:00.000 CVE-2006-4721 CCleague Pro Sports CMS の admin.php におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/21843
4720 1 2006-09-12T16:07:00.000 CVE-2006-4720 mcGalleryPRO の random2.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21850
4719 1 2006-09-12T16:07:00.000 CVE-2006-4719 MyABraCaDaWeb における PHP リモートファイルインクルージョンの脆弱性 http://attrition.org/pipermail/vim/2006-September/001027.html
4716 1 2006-09-12T16:07:00.000 CVE-2006-4716 FSB RC3 の demarrage.php における PHP リモートファイルインクルージョンの脆弱性 http://securitydot.net/xpl/exploits/vulnerabilities/articles/1446/exploit.html
4715 1 2006-09-12T16:07:00.000 CVE-2006-4715 SpoonLabs Vivvo Article Management CMS の pdf_version.php における SQL インジェクションの脆弱性 http://secunia.com/advisories/21855
4714 1 2006-09-12T16:07:00.000 CVE-2006-4714 SpoonLabs Vivvo Article Management CMS の index.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21855
4712 1 2006-09-12T16:07:00.000 CVE-2006-4712 Sage におけるクロスサイトスクリプティングの脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/sage-inputvalidation.xml
4711 1 2006-09-12T16:07:00.000 CVE-2006-4711 Sage におけるクロスサイトスクリプティングの脆弱性 http://mozdev.org/bugs/show_bug.cgi?id=15101
4707 1 2006-09-12T16:07:00.000 CVE-2006-4707 MyBB の admin/global.php におけるクロスサイトスクリプティングの脆弱性 http://myimei.com/security/2006-08-17/mybb-117-adminglobalphp-xss-attack.html
4706 1 2006-09-12T16:07:00.000 CVE-2006-4706 MyBB の inc/functions_post.php におけるクロスサイトスクリプティングの脆弱性 http://myimei.com/security/2006-08-15/mybb-117-htmlspeacialchar_uni-fixjavascript-functions_postphp-urlxss-attack.html
4719 2 2006-09-12T16:07:00.000 CVE-2006-4719 MyABraCaDaWeb における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21817
4716 2 2006-09-12T16:07:00.000 CVE-2006-4716 FSB RC3 の demarrage.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19899
4715 2 2006-09-12T16:07:00.000 CVE-2006-4715 SpoonLabs Vivvo Article Management CMS の pdf_version.php における SQL インジェクションの脆弱性 http://securitydot.net/xpl/exploits/vulnerabilities/articles/1464/exploit.html
4714 2 2006-09-12T16:07:00.000 CVE-2006-4714 SpoonLabs Vivvo Article Management CMS の index.php における PHP リモートファイルインクルージョンの脆弱性 http://securitydot.net/xpl/exploits/vulnerabilities/articles/1467/exploit.html
4715 3 2006-09-12T16:07:00.000 CVE-2006-4715 SpoonLabs Vivvo Article Management CMS の pdf_version.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19934
4681 1 2006-09-11T17:04:00.000 CVE-2006-4681 IBM Director の Redirect.bat におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/21802
4679 1 2006-09-11T17:04:00.000 CVE-2006-4679 DokuWiki における重要な情報を取得される脆弱性 http://retrogod.altervista.org/dokuwiki_2006-03-09b_cmd.html
4676 1 2006-09-11T17:04:00.000 CVE-2006-4676 TIBCO RendezVous における重要な情報を取得される脆弱性 http://www.securityfocus.com/bid/19883
4675 1 2006-09-11T17:04:00.000 CVE-2006-4675 DokuWiki の lib/exe/media.php における data/media フォルダへ実行可能なファイルをアップロードされる脆弱性 http://retrogod.altervista.org/dokuwiki_2006-03-09b_cmd.html
4681 2 2006-09-11T17:04:00.000 CVE-2006-4681 IBM Director の Redirect.bat におけるディレクトリトラバーサルの脆弱性 http://securitytracker.com/id?1016815
4681 3 2006-09-11T17:04:00.000 CVE-2006-4681 IBM Director の Redirect.bat におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/19898
4671 1 2006-09-11T16:04:00.000 CVE-2006-4671 Fantastic News の headlines.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21807
4668 1 2006-09-09T00:04:00.000 CVE-2006-4668 Rob Hensley AckerTodo の index.php におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/21810
4664 1 2006-09-09T00:04:00.000 CVE-2006-4664 Premod Shadow の includes/functions_portal.php における PHP リモートファイルインクルージョンの脆弱性 http://rst-crew.net/premodshadow.txt
4644 1 2006-09-08T21:04:00.000 CVE-2006-4644 phpFullAnnu の modules/home.module.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19875
4643 1 2006-09-08T21:04:00.000 CVE-2006-4643 Uni-Vert PhpLeague の consult/joueurs.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19880
4641 1 2006-09-08T21:04:00.000 CVE-2006-4641 Muratsoft Haber Portal の kategori.asp における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19821
4638 1 2006-09-08T20:04:00.000 CVE-2006-4638 ACGV News の article.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21765
4637 1 2006-09-08T20:04:00.000 CVE-2006-4637 ACGV News における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21765
4636 1 2006-09-08T20:04:00.000 CVE-2006-4636 SZEWO PhpCommander におけるディレクトリトラバーサルの脆弱性 http://www.securityfocus.com/bid/19867
4631 1 2006-09-08T20:04:00.000 CVE-2006-4631 SoftBB の admin/save_opt.php における任意の PHP コードを実行される脆弱性 http://acid-root.new.fr/advisories/10060904.txt
4622 1 2006-09-07T00:04:00.000 CVE-2006-4622 AnnonceV の annonce.php における PHP リモートファイルインクルージョンの脆弱性 http://kurdishsecurity.blogspot.com/2006/09/kurdish-security-26-annoncev-news.html
4615 1 2006-09-07T00:04:00.000 CVE-2006-4615 Pocket PC 用の Shape Services IM+ Mobile Instant Messenger における重要な情報を取得される脆弱性 http://airscanner.com/security/05081701_implus.htm
4610 1 2006-09-07T00:04:00.000 CVE-2006-4610 GrapAgenda の index.php における PHP リモートファイルインクルーションの脆弱性 http://kurdishsecurity.blogspot.com/2006/09/kurdish-security-25-grapagenda-remote.html
4608 1 2006-09-07T00:04:00.000 CVE-2006-4608 Longino Jacome php-Revista におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/21738
4607 1 2006-09-07T00:04:00.000 CVE-2006-4607 Longino Jacome php-Revista の admin/index.php における認証コントロールを回避される脆弱性 http://secunia.com/advisories/21738
4605 1 2006-09-07T00:04:00.000 CVE-2006-4605 Longino Jacome php-Revista の index.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21738
4604 1 2006-09-07T00:04:00.000 CVE-2006-4604 Lanifex DMO の LFXlib/access_manager.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19773
4601 1 2006-09-07T00:04:00.000 CVE-2006-4601 Annuaire 1Two の index.php における SQL インジェクションの脆弱性 http://acid-root.new.fr/poc/09060902.txt
4595 1 2006-09-07T00:04:00.000 CVE-2006-4595 muforum におけるユーザ名など重要な情報を取得される脆弱性 http://acid-root.new.fr/poc/08060901.txt
4594 1 2006-09-06T22:04:00.000 CVE-2006-4594 phpAtm における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19765
4590 1 2006-09-06T22:04:00.000 CVE-2006-4590 Jetstat.com JS ASP Faq Manager の admin/default.asp における SQL インジェクションの脆弱性 http://www.osvdb.org/28266
4586 1 2006-09-06T22:04:00.000 CVE-2006-4586 Tr Forum の admin パネルにおける許可されていない操作を実行される脆弱性 http://acid-root.new.fr/poc/10060903.txt
4585 1 2006-09-06T22:04:00.000 CVE-2006-4585 Tr Forum の admin/editer.php における SQL インジェクションの脆弱性 http://acid-root.new.fr/poc/10060903.txt
4584 1 2006-09-06T22:04:00.000 CVE-2006-4584 Tr Forum における認証を回避される脆弱性 http://acid-root.new.fr/poc/10060903.txt
4585 2 2006-09-06T22:04:00.000 CVE-2006-4585 Tr Forum の admin/editer.php における SQL インジェクションの脆弱性 http://secunia.com/advisories/21754
4563 1 2006-09-06T01:04:00.000 CVE-2006-4563 PHP-Nuke 用の MyHeadlines モジュールにおけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/21653
4560 1 2006-09-06T00:04:00.000 CVE-2006-4560 Windows XP SP2 上の Internet Explorer 6 における任意の JavaScript を実行される脆弱性 http://polyboy.net/xss/dnsslurp.html
4559 1 2006-09-06T00:04:00.000 CVE-2006-4559 YACS CMS における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21680
4558 1 2006-09-06T00:04:00.000 CVE-2006-4558 DeluxeBB における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-05/0318.html
4548 1 2006-09-06T00:04:00.000 CVE-2006-4548 e107 における PHP リモートファイルインクルージョンの脆弱性 http://retrogod.altervista.org/e107_075_xpl.html
4545 1 2006-09-06T00:04:00.000 CVE-2006-4545 - http://www.attrition.org/pipermail/vim/2006-September/001012.html
4544 1 2006-09-06T00:04:00.000 CVE-2006-4544 ExBB における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv46-matdhule-2006.txt
4558 2 2006-09-06T00:04:00.000 CVE-2006-4558 DeluxeBB における PHP リモートファイルインクルージョンの脆弱性 http://retrogod.altervista.org/deluxebb_106_xpl.html
4558 3 2006-09-06T00:04:00.000 CVE-2006-4558 DeluxeBB における PHP リモートファイルインクルージョンの脆弱性 http://securityreason.com/securityalert/1492
4558 4 2006-09-06T00:04:00.000 CVE-2006-4558 DeluxeBB における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-05/0318.html
4558 5 2006-09-06T00:04:00.000 CVE-2006-4558 DeluxeBB における PHP リモートファイルインクルージョンの脆弱性 http://retrogod.altervista.org/deluxebb_106_xpl.html
4558 6 2006-09-06T00:04:00.000 CVE-2006-4558 DeluxeBB における PHP リモートファイルインクルージョンの脆弱性 http://securityreason.com/securityalert/1492
4536 1 2006-09-05T18:04:00.000 CVE-2006-4536 CMS Frogss の module/rejestracja.php における SQL インジェクションの脆弱性 http://secwatch.org/advisories/1015206/
4536 2 2006-09-05T18:04:00.000 CVE-2006-4536 CMS Frogss の module/rejestracja.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19727
4532 1 2006-09-01T23:04:00.000 CVE-2006-4532 YACS CMS の articles/article.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21680
4532 2 2006-09-01T23:04:00.000 CVE-2006-4532 YACS CMS の articles/article.php における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1016775
4506 1 2006-08-31T23:04:00.000 CVE-2006-4506 Novell IDM の idmlib.sh における任意のコマンドを実行される脆弱性 http://www.securityfocus.com/bid/19688
4506 2 2006-08-31T23:04:00.000 CVE-2006-4506 Novell IDM の idmlib.sh における任意のコマンドを実行される脆弱性 http://www.securityfocus.com/bid/19688
4487 1 2006-08-31T22:04:00.000 CVE-2006-4487 DUware DUpoll におけるユーザ名およびパスワード等の重要な情報を取得される脆弱性 http://secunia.com/advisories/21670
4477 1 2006-08-31T21:04:00.000 CVE-2006-4477 Visual Shapers ezContents における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21703
4454 1 2006-08-30T16:04:00.000 CVE-2006-4454 HLstats の hlstats.php におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-08/0741.html
4441 1 2006-08-29T23:04:00.000 CVE-2006-4441 Ay System Solutions CMS における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21661
4425 1 2006-08-29T00:04:00.000 CVE-2006-4425 phpCOIN における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21624
4424 1 2006-08-29T00:04:00.000 CVE-2006-4424 phpCOIN の coin_includes/constants.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21624
4380 1 2006-08-28T18:04:00.000 CVE-2006-4380 MySQL におけるサービス運用妨害 (DoS) の脆弱性 http://bugs.mysql.com/10442
4359 1 2006-08-27T02:04:00.000 CVE-2006-4359 Windows 2000 上で稼動している Trident Software PowerZip におけるスタックベースのバッファオーバーフローの脆弱性 http://vuln.sg/powerzip706-en.html
4358 1 2006-08-27T02:04:00.000 CVE-2006-4358 Diesel Pay の index.php におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-08/0416.html
4367 1 2006-08-26T21:04:00.000 CVE-2006-4367 phpBB の All Topics Hack の alltopics.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19682
4329 1 2006-08-24T01:04:00.000 CVE-2006-4329 Shadows Rising RPG における PHP リモートファイルインクルージョンの脆弱性 http://www.attrition.org/pipermail/vim/2006-August/000986.html
4328 1 2006-08-24T01:04:00.000 CVE-2006-4328 CloudNine Interactive Links Manager の admin.php における SQL インジェクションの脆弱性 http://evuln.com/vulns/136/description.html
4327 1 2006-08-24T01:04:00.000 CVE-2006-4327 CloudNine Interactive Links Manager の add_url.php におけるクロスサイトスクリプティングの脆弱性 http://evuln.com/vulns/136/description.html
4325 1 2006-08-24T01:04:00.000 CVE-2006-4325 Doika guestbook の gbook.php におけるクロスサイトスクリプティングの脆弱性 http://evuln.com/vulns/134/description.html
4324 1 2006-08-24T01:04:00.000 CVE-2006-4324 CityForFree indexcity の add_url2.php におけるクロスサイトスクリプティングの脆弱性 http://evuln.com/vulns/135/description.html
4323 1 2006-08-24T01:04:00.000 CVE-2006-4323 CityForFree indexcity の list.php における SQL インジェクションの脆弱性 http://evuln.com/vulns/135/description.html
4321 1 2006-08-24T01:04:00.000 CVE-2006-4321 Mambo の cpg コンポーネント の cpg.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21539
4293 1 2006-08-22T17:04:00.000 CVE-2006-4293 cPanel 10 におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/21592
4291 1 2006-08-22T17:04:00.000 CVE-2006-4291 PHlyMail Lite の handlers/email/mod.listmail.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21582
4288 1 2006-08-22T17:04:00.000 CVE-2006-4288 Mambo の a6mambocredits コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21540
4287 1 2006-08-22T17:04:00.000 CVE-2006-4287 NES Game などの製品における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21593
4285 1 2006-08-22T17:04:00.000 CVE-2006-4285 Fantastic News の news.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21571
4291 2 2006-08-22T17:04:00.000 CVE-2006-4291 PHlyMail Lite の handlers/email/mod.listmail.php における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1016718
4288 2 2006-08-22T17:04:00.000 CVE-2006-4288 Mambo の a6mambocredits コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1016716
4291 3 2006-08-22T17:04:00.000 CVE-2006-4291 PHlyMail Lite の handlers/email/mod.listmail.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19587
4277 1 2006-08-21T22:04:00.000 CVE-2006-4277 Tutti Nova における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21572
4276 1 2006-08-21T22:04:00.000 CVE-2006-4276 Tutti Nova における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21572
4271 1 2006-08-21T21:04:00.000 CVE-2006-4271 - http://archives.neohapsis.com/archives/bugtraq/2006-07/0061.html
4267 1 2006-08-21T21:04:00.000 CVE-2006-4267 CubeCart における SQL インジェクションの脆弱性 http://bugs.cubecart.com/?do=details&id=523
4267 2 2006-08-21T21:04:00.000 CVE-2006-4267 CubeCart における SQL インジェクションの脆弱性 http://retrogod.altervista.org/cubecart_3011_adv.html
4267 3 2006-08-21T21:04:00.000 CVE-2006-4267 CubeCart における SQL インジェクションの脆弱性 http://retrogod.altervista.org/cubecart_3011_sql.html
4267 4 2006-08-21T21:04:00.000 CVE-2006-4267 CubeCart における SQL インジェクションの脆弱性 http://retrogod.altervista.org/cubecart_3011_sql_mqg_bypass.html
4242 1 2006-08-21T18:04:00.000 CVE-2006-4242 Joomla または Mambo 用の JIM コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21545
4240 1 2006-08-21T18:04:00.000 CVE-2006-4240 Fusion News における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-08/0317.html
4239 1 2006-08-21T18:04:00.000 CVE-2006-4239 OPT Max の include/urights.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21517
4238 1 2006-08-21T18:04:00.000 CVE-2006-4238 WTcom の torrents.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19569
4237 1 2006-08-21T18:04:00.000 CVE-2006-4237 IRSR の pageheaderdefault.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19567
4239 2 2006-08-21T18:04:00.000 CVE-2006-4239 OPT Max の include/urights.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19548
4234 1 2006-08-18T20:04:00.000 CVE-2006-4234 dotProject の classes/query.class.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19547
4233 1 2006-08-18T20:04:00.000 CVE-2006-4233 Globus Toolkit における重要な情報を取得される脆弱性 http://secunia.com/advisories/21516
4227 1 2006-08-18T20:04:00.000 CVE-2006-4227 MySQL の suid ルーチンにおける不正に権限を取得される脆弱性 http://bugs.mysql.com/bug.php?id=18630
4226 1 2006-08-18T20:04:00.000 CVE-2006-4226 MySQL の case-sensitive ファイルシステムにおける不正なデータベースを作成される脆弱性 http://bugs.mysql.com/bug.php?id=17647
4218 1 2006-08-17T23:04:00.000 CVE-2006-4218 Zen Cart におけるディレクトリトラバーサルの脆弱性 http://www.gulftech.org/?node=research&article_id=00109-08152006
4207 1 2006-08-17T21:04:00.000 CVE-2006-4207 Bob Jewell Discloser における PHP リモートファイルインクルージョンの脆弱性 http://securitydot.net/xpl/exploits/vulnerabilities/articles/1314/exploit.html
4205 1 2006-08-17T21:04:00.000 CVE-2006-4205 WebDynamite ProjectButler における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19503
4203 1 2006-08-17T21:04:00.000 CVE-2006-4203 Mambo 用の mmp コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19502
4202 1 2006-08-17T21:04:00.000 CVE-2006-4202 Spidey Blog Script の proje_goster.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19518
4196 1 2006-08-17T21:04:00.000 CVE-2006-4196 WEBInsta CMS の index.php における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv45-K-159-2006.txt
4191 1 2006-08-17T01:04:00.000 CVE-2006-4191 XMB の memcp.php におけるディレクトリトラバーサルの脆弱性 http://retrogod.altervista.org/xmb_196_sql.html
4189 1 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1016692
4191 2 2006-08-17T01:04:00.000 CVE-2006-4191 XMB の memcp.php におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/21293
4189 2 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28473
4189 3 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28474
4189 4 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28478
4189 5 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28479
4189 6 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28485
4189 7 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28492
4189 8 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28493
4189 9 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28496
4189 10 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28498
4189 11 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28499
4189 12 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28500
4189 13 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28501
4189 14 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28502
4189 15 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28503
4189 16 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28504
4189 17 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28505
4189 18 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28506
4189 19 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28507
4189 20 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28508
4189 21 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28509
4189 22 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28510
4189 23 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28511
4189 24 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28512
4189 25 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28513
4189 26 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28514
4189 27 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28515
4189 28 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28516
4189 29 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28517
4189 30 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28519
4189 31 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28520
4189 32 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28521
4189 33 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28522
4189 34 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28523
4189 35 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28524
4189 36 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28525
4189 37 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28526
4189 38 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28527
4189 39 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28528
4189 40 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28529
4189 41 2006-08-17T01:04:00.000 CVE-2006-4189 Dolphin における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/28530
4164 1 2006-08-16T22:04:00.000 CVE-2006-4164 phpPrintAnalyzer の inc/header.inc.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19474
4160 1 2006-08-16T22:04:00.000 CVE-2006-4160 Tony Bibbs and Vincent Furia MVCnPHP における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/27894
4159 1 2006-08-16T22:04:00.000 CVE-2006-4159 Chaussette における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21489
4160 2 2006-08-16T22:04:00.000 CVE-2006-4160 Tony Bibbs and Vincent Furia MVCnPHP における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/27895
4160 3 2006-08-16T22:04:00.000 CVE-2006-4160 Tony Bibbs and Vincent Furia MVCnPHP における PHP リモートファイルインクルージョンの脆弱性 http://www.osvdb.org/27896
4140 1 2006-08-14T23:04:00.000 CVE-2006-4140 IPCheck Server Monitor におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/21468
4126 1 2006-08-14T23:04:00.000 CVE-2006-4126 DConnect Daemon の cmd.dc.c の dc_chat 関数におけるサービス運用妨害 (DoS) の脆弱性 http://secunia.com/advisories/21384
4125 1 2006-08-14T23:04:00.000 CVE-2006-4125 DConnect Daemon の main.c におけるスタックベースのバッファオーバーフローの脆弱性 http://secunia.com/advisories/21384
4124 1 2006-08-14T23:04:00.000 CVE-2006-4124 LessTif の libXm ライブラリにおける権限を取得される脆弱性 http://karol.wiesek.pl/files/lesstif-advisory.pdf
4123 1 2006-08-14T23:04:00.000 CVE-2006-4123 Boite de News の boitenews4/index.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19440
4122 1 2006-08-14T23:04:00.000 CVE-2006-4122 Simple one-file guestbook における認証を回避される脆弱性 http://it.security.netsons.org/exploit/simplegb.txt
4121 1 2006-08-14T23:04:00.000 CVE-2006-4121 See-Commerce の owimg.php3 における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19443
4124 2 2006-08-14T23:04:00.000 CVE-2006-4124 LessTif の libXm ライブラリにおける権限を取得される脆弱性 http://www.securityfocus.com/bid/19430
4116 1 2006-08-14T21:04:00.000 CVE-2006-4116 Lhaz におけるスタックベースのバッファオーバーフローの脆弱性 http://secunia.com/advisories/21348
4113 1 2006-08-14T21:04:00.000 CVE-2006-4113 Brian Fraval hitweb の genpage-cgi.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21430
4110 1 2006-08-14T20:04:00.000 CVE-2006-4110 Apache における CGI プログラムのソースコードを読まれる脆弱性 http://secunia.com/advisories/21490
3817 1 2006-08-11T10:04:00.000 CVE-2006-3817 Novell GroupWise WebAccess におけるクロスサイトスクリプティングの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-August/048593.html
3817 2 2006-08-11T10:04:00.000 CVE-2006-3817 Novell GroupWise WebAccess におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/21411
4077 1 2006-08-11T01:04:00.000 CVE-2006-4077 Vincenzo Valvano CWFM の CheckUpload.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21432
4074 1 2006-08-11T01:04:00.000 CVE-2006-4074 Joomla! 用の JD-Wiki コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21389
4072 1 2006-08-11T01:04:00.000 CVE-2006-4072 Club-Nuke [XP] における SQL インジェクションの脆弱性 http://secunia.com/advisories/21431
4069 1 2006-08-10T00:04:00.000 CVE-2006-4069 Elaine Aquino OZJournals におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/21311
4065 1 2006-08-10T00:04:00.000 CVE-2006-4065 Dmitry Sheiko SAPID Gallery における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21413
4053 1 2006-08-10T00:04:00.000 CVE-2006-4053 ME Download System の templates/header.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21359
4052 1 2006-08-10T00:04:00.000 CVE-2006-4052 Turnkey Web Tools PHP Simple Shop における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv44-matdhule-2006.txt
4051 1 2006-08-10T00:04:00.000 CVE-2006-4051 Turnkey Web Tools PHP Live Helper の global.php における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv43-matdhule-2006.txt
4044 1 2006-08-09T23:04:00.000 CVE-2006-4044 Brad Fears phpCodeCabine の Beautifier/Core.php における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-08/0146.html
4043 1 2006-08-09T23:04:00.000 CVE-2006-4043 myWebland myBloggie の index.php における重要な情報を取得される脆弱性 http://retrogod.altervista.org/mybloggie_214_sql.html
4044 2 2006-08-09T23:04:00.000 CVE-2006-4044 Brad Fears phpCodeCabine の Beautifier/Core.php における PHP リモートファイルインクルージョンの脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/PHPCabinetRFIAugust052006.html
4043 2 2006-08-09T23:04:00.000 CVE-2006-4043 myWebland myBloggie の index.php における重要な情報を取得される脆弱性 http://secunia.com/advisories/21376
4044 3 2006-08-09T23:04:00.000 CVE-2006-4044 Brad Fears phpCodeCabine の Beautifier/Core.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19359
4039 1 2006-08-09T22:04:00.000 CVE-2006-4039 GaesteChaos の eintragen.php における SQL インジェクションの脆弱性 http://marc.info/?l=full-disclosure&m=115464286427745&w=2
4038 1 2006-08-09T22:04:00.000 CVE-2006-4038 GaesteChaos の eintragen.php におけるクロスサイトスクリプティングの脆弱性 http://marc.info/?l=full-disclosure&m=115464286427745&w=2
4035 1 2006-08-09T22:04:00.000 CVE-2006-4035 CounterChaos の counterchaos.php における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-08/0080.html
4031 1 2006-08-09T22:04:00.000 CVE-2006-4031 MySQL の MERGE テーブルに不正アクセスを受ける脆弱性 http://bugs.mysql.com/bug.php?id=15195
4024 1 2006-08-09T00:04:00.000 CVE-2006-4024 Festalon の FESTAHES_Load 関数におけるサービス運用妨害 (DoS) の脆弱性 http://aluigi.altervista.org/adv/festahc-adv.txt
4023 1 2006-08-09T00:04:00.000 CVE-2006-4023 PHP の ip2long 関数におけるネットワーク情報を取得される脆弱性 http://retrogod.altervista.org/php_ip2long.htm
4023 2 2006-08-09T00:04:00.000 CVE-2006-4023 PHP の ip2long 関数におけるネットワーク情報を取得される脆弱性 http://securitytracker.com/id?1016609
4012 1 2006-08-07T19:04:00.000 CVE-2006-4012 circeOS SaveWeb Portal における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/16522
4011 1 2006-08-07T19:04:00.000 CVE-2006-4011 Kayako eSupport における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19315
4006 1 2006-08-07T19:04:00.000 CVE-2006-4006 BomberClone の do_gameinfo などの関数におけるサーバメモリの一部を読み取られる脆弱性 http://aluigi.altervista.org/adv/bcloneboom-adv.txt
4005 1 2006-08-07T19:04:00.000 CVE-2006-4005 BomberClone におけるサービス運用妨害 (DoS) の脆弱性 http://aluigi.altervista.org/adv/bcloneboom-adv.txt
4004 1 2006-08-07T19:04:00.000 CVE-2006-4004 vbPortal の index.php におけるディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/21287
4006 2 2006-08-07T19:04:00.000 CVE-2006-4006 BomberClone の do_gameinfo などの関数におけるサーバメモリの一部を読み取られる脆弱性 http://aluigi.org/poc/bcloneboom.zip
4005 2 2006-08-07T19:04:00.000 CVE-2006-4005 BomberClone におけるサービス運用妨害 (DoS) の脆弱性 http://aluigi.org/poc/bcloneboom.zip
3998 1 2006-08-05T01:04:00.000 CVE-2006-3998 WoWRoster の conf.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19269
3994 1 2006-08-05T00:04:00.000 CVE-2006-3994 XMB の u2u.inc.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19280
3993 1 2006-08-05T00:04:00.000 CVE-2006-3993 Olaf Noehring TSEP の copyright.php における PHP リモートファイルインクルージョンの脆弱性 http://secunia.com/advisories/21291
3991 1 2006-08-05T00:04:00.000 CVE-2006-3991 Cisco Unified Wireless IP Phone 7921 における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19277
3983 1 2006-08-05T00:04:00.000 CVE-2006-3983 Reactor の editprofile.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19259
3972 1 2006-08-02T16:04:00.000 CVE-2006-3972 Scott Weedon Ajax Chat の visitor/livesupport/chat.php におけるディレクトリトラバーサルの脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-07/0716.html
3971 1 2006-08-02T16:04:00.000 CVE-2006-3971 Scott Weedon Ajax Chat の visitor/livesupport/chat.php におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-07/0716.html
3962 1 2006-08-01T22:04:00.000 CVE-2006-3962 bayesiannaivefilter コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19231
3959 1 2006-08-01T21:04:00.000 CVE-2006-3959 X-Scripts X-Protection の protect.php における SQL インジェクションの脆弱性 http://downloads.securityfocus.com/vulnerabilities/exploits/x-protection_poc.txt
3957 1 2006-08-01T21:04:00.000 CVE-2006-3957 BosDev BosDates の payment.php における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1016585
3950 1 2006-08-01T21:04:00.000 CVE-2006-3950 X-Scripts X-Statistics の x-statistics.php における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-07/0722.html
3957 2 2006-08-01T21:04:00.000 CVE-2006-3957 BosDev BosDates の payment.php における PHP リモートファイルインクルージョンの脆弱性 http://www.jaascois.com/exploits/18602020
3957 3 2006-08-01T21:04:00.000 CVE-2006-3957 BosDev BosDates の payment.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19191
3957 4 2006-08-01T21:04:00.000 CVE-2006-3957 BosDev BosDates の payment.php における PHP リモートファイルインクルージョンの脆弱性 http://securitytracker.com/id?1016585
3957 5 2006-08-01T21:04:00.000 CVE-2006-3957 BosDev BosDates の payment.php における PHP リモートファイルインクルージョンの脆弱性 http://www.jaascois.com/exploits/18602020
3957 6 2006-08-01T21:04:00.000 CVE-2006-3957 BosDev BosDates の payment.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19191
3946 1 2006-07-31T23:04:00.000 CVE-2006-3946 Apple Mac OS X の WebCore におけるメモリ管理エラーを引き起こす脆弱性 http://browserfun.blogspot.com/2006/07/mobb-31-safari-khtmlparserpoponeblock.html
3945 1 2006-07-31T23:04:00.000 CVE-2006-3945 Windows 上で稼動する Opera の CSS 機能におけるサービス運用妨害 (DoS) の脆弱性 http://browserfun.blogspot.com/2006/07/mobb-26-opera-css-background.html
3944 1 2006-07-31T23:04:00.000 CVE-2006-3944 Windows 上で稼動する Microsoft Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://browserfun.blogspot.com/2006/07/mobb-24-formslistbox1-listwidth.html
3943 1 2006-07-31T23:04:00.000 CVE-2006-3943 Windows 上で稼動する Microsoft Internet Explorer 6 の NDFXArtEffects におけるスタックベースのバッファオーバーフローの脆弱性 http://browserfun.blogspot.com/2006/07/mobb-27-ndfxarteffects-rgbextracolor.html
3945 2 2006-07-31T23:04:00.000 CVE-2006-3945 Windows 上で稼動する Opera の CSS 機能におけるサービス運用妨害 (DoS) の脆弱性 http://www.osvdb.org/27374
3945 3 2006-07-31T23:04:00.000 CVE-2006-3945 Windows 上で稼動する Opera の CSS 機能におけるサービス運用妨害 (DoS) の脆弱性 http://browserfun.blogspot.com/2006/07/mobb-26-opera-css-background.html
3945 4 2006-07-31T23:04:00.000 CVE-2006-3945 Windows 上で稼動する Opera の CSS 機能におけるサービス運用妨害 (DoS) の脆弱性 http://www.osvdb.org/27374
3936 1 2006-07-31T22:04:00.000 CVE-2006-3936 Alcacon OpenCms の system/workplace/editors/editor.jsp における任意の JSP ファイルのソースコードを読まれる脆弱性 http://o0o.nu/~meder/OpenCMS_multiple_vulnerabilities.txt
3934 1 2006-07-31T22:04:00.000 CVE-2006-3934 Alkacon OpenCms の downloadTrigger.jsp における絶対パストラバーサルの脆弱性 http://o0o.nu/~meder/OpenCMS_multiple_vulnerabilities.txt
3933 1 2006-07-31T22:04:00.000 CVE-2006-3933 Alkacon OpenCms におけるクロスサイトスクリプティングの脆弱性 http://o0o.nu/~meder/OpenCMS_multiple_vulnerabilities.txt
3934 2 2006-07-31T22:04:00.000 CVE-2006-3934 Alkacon OpenCms の downloadTrigger.jsp における絶対パストラバーサルの脆弱性 http://secunia.com/advisories/21193
3933 2 2006-07-31T22:04:00.000 CVE-2006-3933 Alkacon OpenCms におけるクロスサイトスクリプティングの脆弱性 http://secunia.com/advisories/21193
3931 1 2006-07-31T21:04:00.000 CVE-2006-3931 Tuomas Airaksinen Midirecord の midirecord.cc におけるバッファオーバーフローの脆弱性 http://advisories.echo.or.id/adv/adv41-theday-2006.txt
3927 1 2006-07-31T21:04:00.000 CVE-2006-3927 PhpProBid の auctionsearch.php におけるクロスサイトスクリプティングの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-07/0474.html
3926 1 2006-07-31T21:04:00.000 CVE-2006-3926 PhpProBid における SQL インジェクションの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-07/0474.html
3919 1 2006-07-28T00:04:00.000 CVE-2006-3919 SD Studio CMS の index.php における SQL インジェクションの脆弱性 http://security-net.biz/adv/D24706a.txt
3918 1 2006-07-28T00:04:00.000 CVE-2006-3918 Hitachi Web Server における複数の脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-05/0151.html
3917 1 2006-07-28T00:04:00.000 CVE-2006-3917 R. Corson PHP Forge の inc/gabarits.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19139
3915 1 2006-07-28T00:04:00.000 CVE-2006-3915 Windows 上で稼動する Microsoft Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://browserfun.blogspot.com/2006/07/mobb-25-native-function-iterator.html
3913 1 2006-07-28T00:04:00.000 CVE-2006-3913 Freeciv および SVN におけるバッファオーバーフローの脆弱性 http://aluigi.altervista.org/adv/freecivx-adv.txt
3910 1 2006-07-28T00:04:00.000 CVE-2006-3910 Windows 上で稼動する Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://browserfun.blogspot.com/2006/07/mobb-20-ovctl-newdefaultitem.html
3918 2 2006-07-28T00:04:00.000 CVE-2006-3918 Hitachi Web Server における複数の脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-07/0425.html
3915 2 2006-07-28T00:04:00.000 CVE-2006-3915 Windows 上で稼動する Microsoft Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19140
3918 3 2006-07-28T00:04:00.000 CVE-2006-3918 Hitachi Web Server における複数の脆弱性 http://securityreason.com/securityalert/1294
3915 3 2006-07-28T00:04:00.000 CVE-2006-3915 Windows 上で稼動する Microsoft Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://browserfun.blogspot.com/2006/07/mobb-25-native-function-iterator.html
3918 4 2006-07-28T00:04:00.000 CVE-2006-3918 Hitachi Web Server における複数の脆弱性 http://svn.apache.org/viewvc?view=rev&revision=394965
3915 4 2006-07-28T00:04:00.000 CVE-2006-3915 Windows 上で稼動する Microsoft Internet Explorer 6 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19140
3909 1 2006-07-27T22:04:00.000 CVE-2006-3909 WWWthreads の calendar.php におけるクロスサイトスクリプティングの脆弱性 http://www.aria-security.net/advisory/wwwthreads.txt
3905 1 2006-07-27T22:04:00.000 CVE-2006-3905 Webland MyBloggie における SQL インジェクションの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-May/046094.html
3903 1 2006-07-27T22:04:00.000 CVE-2006-3903 myWebland MyBloggie における CRLF インジェクションの脆弱性 http://lists.grok.org.uk/pipermail/full-disclosure/2006-May/046094.html
3899 1 2006-07-27T11:04:00.000 CVE-2006-3899 Windows 上で稼動する Microsoft Internet Explorer 6.0 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19102
3898 1 2006-07-27T11:04:00.000 CVE-2006-3898 Windows 上で稼動する Microsoft Internet Explorer 6.0 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19109
3897 1 2006-07-27T11:04:00.000 CVE-2006-3897 Windows 上で稼動する Microsoft Internet Explorer 6 におけるスタックオーバフローの脆弱性 http://www.securityfocus.com/bid/19114
3899 2 2006-07-27T11:04:00.000 CVE-2006-3899 Windows 上で稼動する Microsoft Internet Explorer 6.0 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19102
3898 2 2006-07-27T11:04:00.000 CVE-2006-3898 Windows 上で稼動する Microsoft Internet Explorer 6.0 におけるサービス運用妨害 (DoS) の脆弱性 http://www.securityfocus.com/bid/19109
3897 2 2006-07-27T11:04:00.000 CVE-2006-3897 Windows 上で稼動する Microsoft Internet Explorer 6 におけるスタックオーバフローの脆弱性 http://www.securityfocus.com/bid/19114
3879 1 2006-07-27T01:04:00.000 CVE-2006-3879 Mikmod Sound System の libmikmod における整数オーバーフローの脆弱性 http://aluigi.altervista.org/adv/lmmgt2ho-adv.txt
3879 2 2006-07-27T01:04:00.000 CVE-2006-3879 Mikmod Sound System の libmikmod における整数オーバーフローの脆弱性 http://aluigi.org/poc/lmmgt2ho.zip
3851 1 2006-07-25T23:04:00.000 CVE-2006-3851 X7 Chat の upgradev1.php における SQL インジェクションの脆弱性 http://www.securityfocus.com/bid/19123
3847 1 2006-07-25T23:04:00.000 CVE-2006-3847 MoSpray の admin.php における PHP リモートファイルインクルージョンの脆弱性 http://kurdishsecurity.blogspot.com/2006/07/kurdish-security-14-mospray-basedir.html
3845 1 2006-07-25T23:04:00.000 CVE-2006-3845 WinRAR の lzh.fmt におけるスタックベースのバッファオーバーフローの脆弱性 http://hustlelabs.com/advisories/04072006_rarlabs.pdf
3835 1 2006-07-25T13:22:00.000 CVE-2006-3835 Apache Tomcat における不正にディレクトリの一覧を取得される脆弱性 http://archives.neohapsis.com/archives/fulldisclosure/2006-07/0467.html
3832 1 2006-07-25T13:22:00.000 CVE-2006-3832 Gerrit van Aaken Loudblog の index.php における SQL インジェクションの脆弱性 http://loudblog.de/forum/viewtopic.php?id=762
3830 1 2006-07-25T13:22:00.000 CVE-2006-3830 Kailash Nadh boastMachine におけるファイルをアップロードされる脆弱性 http://www.acid-root.new.fr/advisories/boastmachine.txt
3814 1 2006-07-25T13:22:00.000 CVE-2006-3814 Cheese Tracker の loader_xm.cpp におけるバッファオーバーフローの脆弱性 http://aluigi.altervista.org/adv/cheesebof-adv.txt
3830 2 2006-07-25T13:22:00.000 CVE-2006-3830 Kailash Nadh boastMachine におけるファイルをアップロードされる脆弱性 http://www.acid-root.new.fr/advisories/boastmachine.txt
3775 1 2006-07-24T12:19:00.000 CVE-2006-3775 MyBB の class_session.php における SQL インジェクションの脆弱性 http://retrogod.altervista.org/mybb_115_sql.html
3771 1 2006-07-24T12:19:00.000 CVE-2006-3771 iManage CMS の component.php における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv40-matdhule-2006.txt
3761 1 2006-07-21T14:03:00.000 CVE-2006-3761 MyBB の inc/functions_post.php におけるクロスサイトスクリプティングの脆弱性 http://myimei.com/security/2006-06-22/mybb-114-function_postphpxss-attack-in-url-tag.html
3754 1 2006-07-21T14:03:00.000 CVE-2006-3754 FlushCMS の Include/editor/rich_files/class.rich.php における PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19023
3752 1 2006-07-21T14:03:00.000 CVE-2006-3752 Professional Home Page Tools Guestbook の class.php における SQL インジェクションの脆弱性 http://artemis.abenteuer-mittelerde.de/pub/adv02-phptgb.txt
3751 1 2006-07-21T14:03:00.000 CVE-2006-3751 ImageManager 用の HTMLArea3 Addon Component における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv38-matdhule-2006.txt
3750 1 2006-07-21T14:03:00.000 CVE-2006-3750 Joomla! 用の com_hashcash の server.php における PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv38-matdhule-2006.txt
3749 1 2006-07-21T14:03:00.000 CVE-2006-3749 Mambo 用の Sitemap コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://advisories.echo.or.id/adv/adv38-matdhule-2006.txt
3748 1 2006-07-21T14:03:00.000 CVE-2006-3748 Mambo 用の LoudMouth コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://www.securityfocus.com/bid/19044
3730 1 2006-07-21T14:03:00.000 CVE-2006-3730 Microsoft の Windows Shell における整数オーバーフローの脆弱性 http://browserfun.blogspot.com/2006/07/mobb-18-webviewfoldericon-setslice.html
3729 1 2006-07-21T14:03:00.000 CVE-2006-3729 Internet Explorer 6 の DataSourceControl におけるサービス運用妨害 (クラッシュ) の脆弱性 http://browserfun.blogspot.com/2006/07/mobb-19-datasourcecontrol.html
3727 1 2006-07-21T14:03:00.000 CVE-2006-3727 Eskolar CMS における SQL インジェクションの脆弱性 http://secunia.com/advisories/21101
3726 1 2006-07-21T14:03:00.000 CVE-2006-3726 FileCOPA FTP Server におけるバッファオーバーフローの脆弱性 http://www.appsec.ch/docs/2006-07-19-fileCopa.txt
3680 1 2006-07-21T14:03:00.000 CVE-2006-3680 Photocycle の photocycle におけるクロスサイトスクリプティングの脆弱性 http://securitytracker.com/id?1016492
0818 1 2006-07-21T14:03:00.000 CVE-2006-0818 MERAK Mail Server および VisNetic MailServer における絶対パスディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/18953
0817 1 2006-07-21T14:03:00.000 CVE-2006-0817 MERAK Mail Server および VisNetic MailServer における絶対パスディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/18953
3751 2 2006-07-21T14:03:00.000 CVE-2006-3751 ImageManager 用の HTMLArea3 Addon Component における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-07/0180.html
3750 2 2006-07-21T14:03:00.000 CVE-2006-3750 Joomla! 用の com_hashcash の server.php における PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-07/0180.html
3749 2 2006-07-21T14:03:00.000 CVE-2006-3749 Mambo 用の Sitemap コンポーネントにおける PHP リモートファイルインクルージョンの脆弱性 http://archives.neohapsis.com/archives/bugtraq/2006-07/0180.html
3729 2 2006-07-21T14:03:00.000 CVE-2006-3729 Internet Explorer 6 の DataSourceControl におけるサービス運用妨害 (クラッシュ) の脆弱性 http://www.securityfocus.com/bid/19069
0818 2 2006-07-21T14:03:00.000 CVE-2006-0818 MERAK Mail Server および VisNetic MailServer における絶対パスディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/18966
0817 2 2006-07-21T14:03:00.000 CVE-2006-0817 MERAK Mail Server および VisNetic MailServer における絶対パスディレクトリトラバーサルの脆弱性 http://secunia.com/advisories/18966
3729 3 2006-07-21T14:03:00.000 CVE-2006-3729 Internet Explorer 6 の DataSourceControl におけるサービス運用妨害 (クラッシュ) の脆弱性 http://browserfun.blogspot.com/2006/07/mobb-19-datasourcecontrol.html
0818 3 2006-07-21T14:03:00.000 CVE-2006-0818 MERAK Mail Server および VisNetic MailServer における絶対パスディレクトリトラバーサルの脆弱性 http://secunia.com/secunia_research/2006-12/advisory/
0817 3 2006-07-21T14:03:00.000 CVE-2006-0817 MERAK Mail Server および VisNetic MailServer における絶対パスディレクトリトラバーサルの脆弱性 http://secunia.com/secunia_research/2006-12/advisory/
3729 4 2006-07-21T14:03:00.000 CVE-2006-3729 Internet Explorer 6 の DataSourceControl におけるサービス運用妨害 (クラッシュ) の脆弱性 http://www.securityfocus.com/bid/19069
0818 4 2006-07-21T14:03:00.000 CVE-2006-0818 MERAK Mail Server および VisNetic MailServer における絶対パスディレクトリトラバーサルの脆弱性 http://secunia.com/secunia_research/2006-14/advisory/
0817 4 2006-07-21T14:03:00.000 CVE-2006-0817 MERAK Mail Server および VisNetic MailServer における絶対パスディレクトリトラバーサルの脆弱性 http://secunia.com/secunia_research/2006-14/advisory/
3674 1 2006-07-18T15:47:00.000 CVE-2006-3674 Armagetron Advanced の nNetObject.cpp におけるサービス運用妨害 (DoS) の脆弱性 http://aluigi.altervista.org/adv/atrondos-adv.txt