-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy path2016.tsv
We can't make this file beautiful and searchable because it's too large.
2938 lines (2938 loc) · 595 KB
/
2016.tsv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
15042 1 2024-10-16T08:15Z CVE-2016-15042 N-Media の frontend file manager および post front-end form における危険なタイプのファイルの無制限アップロードに関する脆弱性 https://www.pluginvulnerabilities.com/2016/09/19/arbitrary-file-upload-vulnerability-in-front-end-file-upload-and-manager-plugin/
15042 2 2024-10-16T08:15Z CVE-2016-15042 N-Media の frontend file manager および post front-end form における危険なタイプのファイルの無制限アップロードに関する脆弱性 https://www.pluginvulnerabilities.com/2016/09/19/arbitrary-file-upload-vulnerability-in-n-media-post-front-end-form/
15033 1 2023-06-07T02:15Z CVE-2016-15033 delete all comments project の WordPress 用 delete all comments における危険なタイプのファイルの無制限アップロードに関する脆弱性 http://blog.nintechnet.com/arbitrary-file-upload-vulnerability-in-wordpress-delete-all-comments-plugin/
15033 2 2023-06-07T02:15Z CVE-2016-15033 delete all comments project の WordPress 用 delete all comments における危険なタイプのファイルの無制限アップロードに関する脆弱性 http://blog.nintechnet.com/arbitrary-file-upload-vulnerability-in-wordpress-delete-all-comments-plugin/
15018 1 2023-01-15T19:15Z CVE-2016-15018 krail-jpa における SQL インジェクションの脆弱性 https://github.com/KrailOrg/krail-jpa/issues/18
15018 2 2023-01-15T19:15Z CVE-2016-15018 krail-jpa における SQL インジェクションの脆弱性 https://github.com/KrailOrg/krail-jpa/issues/18
20018 1 2022-12-19T09:15Z CVE-2016-20018 Node.js 用 Knex.js における SQL インジェクションの脆弱性 https://github.com/knex/knex/issues/1227
20018 2 2022-12-19T09:15Z CVE-2016-20018 Node.js 用 Knex.js における SQL インジェクションの脆弱性 https://github.com/knex/knex/issues/1227
20018 3 2022-12-19T09:15Z CVE-2016-20018 Node.js 用 Knex.js における SQL インジェクションの脆弱性 https://www.ghostccamm.com/blog/knex_sqli/
20018 4 2022-12-19T09:15Z CVE-2016-20018 Node.js 用 Knex.js における SQL インジェクションの脆弱性 https://www.ghostccamm.com/blog/knex_sqli/
20017 1 2022-10-19T05:15Z CVE-2016-20017 D-Link Systems, Inc. の dsl-2750b ファームウェアにおけるコマンドインジェクションの脆弱性 https://seclists.org/fulldisclosure/2016/Feb/53
20016 1 2022-10-19T05:15Z CVE-2016-20016 mvpower の tv-7104he ファームウェアおよび tv7108he ファームウェアにおける脆弱性 https://www.exploit-db.com/exploits/41471
20017 2 2022-10-19T05:15Z CVE-2016-20017 D-Link Systems, Inc. の dsl-2750b ファームウェアにおけるコマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/44760
20016 2 2022-10-19T05:15Z CVE-2016-20016 mvpower の tv-7104he ファームウェアおよび tv7108he ファームウェアにおける脆弱性 https://www.exploit-db.com/exploits/41471
20017 3 2022-10-19T05:15Z CVE-2016-20017 D-Link Systems, Inc. の dsl-2750b ファームウェアにおけるコマンドインジェクションの脆弱性 https://seclists.org/fulldisclosure/2016/Feb/53
20016 3 2022-10-19T05:15Z CVE-2016-20016 mvpower の tv-7104he ファームウェアおよび tv7108he ファームウェアにおける脆弱性 https://www.pentestpartners.com/security-blog/pwning-cctv-cameras/
20017 4 2022-10-19T05:15Z CVE-2016-20017 D-Link Systems, Inc. の dsl-2750b ファームウェアにおけるコマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/44760
20016 4 2022-10-19T05:15Z CVE-2016-20016 mvpower の tv-7104he ファームウェアおよび tv7108he ファームウェアにおける脆弱性 https://www.pentestpartners.com/security-blog/pwning-cctv-cameras/
2338 1 2022-09-29T03:15Z CVE-2016-2338 Ruby-lang.org の Ruby 他複数ベンダの製品における境界外書き込みに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0032/
2338 2 2022-09-29T03:15Z CVE-2016-2338 Ruby-lang.org の Ruby 他複数ベンダの製品における境界外書き込みに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0032/
20015 1 2022-09-20T18:15Z CVE-2016-20015 smokeping における脆弱性 https://bugs.gentoo.org/602652
20015 2 2022-09-20T18:15Z CVE-2016-20015 smokeping における脆弱性 https://bugs.gentoo.org/602652
4991 1 2022-07-28T17:15Z CVE-2016-4991 nodepdf project の Node.js 用 nodepdf におけるコマンドインジェクションの脆弱性 https://lf.lc/cve/cve-2016-4991/
3709 1 2022-07-28T17:15Z CVE-2016-3709 xmlsoft.org の libxml2 におけるクロスサイトスクリプティングの脆弱性 https://mail.gnome.org/archives/xml/2018-January/msg00010.html
0796 1 2022-07-28T17:15Z CVE-2016-0796 WordPress プラグイン mb.miniAudioPlayer-an HTML5 audio player for your mp3 files における別領域リソースに対する外部からの制御可能な参照に関する脆弱性 http://www.vapidlabs.com/advisory.php?v=162
4991 2 2022-07-28T17:15Z CVE-2016-4991 nodepdf project の Node.js 用 nodepdf におけるコマンドインジェクションの脆弱性 https://lf.lc/cve/cve-2016-4991/
3709 2 2022-07-28T17:15Z CVE-2016-3709 xmlsoft.org の libxml2 におけるクロスサイトスクリプティングの脆弱性 https://mail.gnome.org/archives/xml/2018-January/msg00010.html
0796 2 2022-07-28T17:15Z CVE-2016-0796 WordPress プラグイン mb.miniAudioPlayer-an HTML5 audio player for your mp3 files における別領域リソースに対する外部からの制御可能な参照に関する脆弱性 http://www.vapidlabs.com/advisory.php?v=162
0796 3 2022-07-28T17:15Z CVE-2016-0796 WordPress プラグイン mb.miniAudioPlayer-an HTML5 audio player for your mp3 files における別領域リソースに対する外部からの制御可能な参照に関する脆弱性 https://www.acunetix.com/vulnerabilities/web/wordpress-plugin-mb-miniaudioplayer-an-html5-audio-player-for-your-mp3-files-multiple-vulnerabilities-1-7-6/
0796 4 2022-07-28T17:15Z CVE-2016-0796 WordPress プラグイン mb.miniAudioPlayer-an HTML5 audio player for your mp3 files における別領域リソースに対する外部からの制御可能な参照に関する脆弱性 https://www.acunetix.com/vulnerabilities/web/wordpress-plugin-mb-miniaudioplayer-an-html5-audio-player-for-your-mp3-files-multiple-vulnerabilities-1-7-6/
2139 1 2022-07-28T15:15Z CVE-2016-2139 kippo-graph project の kippo-graph におけるクロスサイトスクリプティングの脆弱性 https://github.com/ikoniaris/kippo-graph/issues/35
2138 1 2022-07-28T15:15Z CVE-2016-2138 kippo-graph project の kippo-graph におけるクロスサイトスクリプティングの脆弱性 https://github.com/ikoniaris/kippo-graph/issues/35
2139 2 2022-07-28T15:15Z CVE-2016-2139 kippo-graph project の kippo-graph におけるクロスサイトスクリプティングの脆弱性 https://github.com/ikoniaris/kippo-graph/issues/35
2138 2 2022-07-28T15:15Z CVE-2016-2138 kippo-graph project の kippo-graph におけるクロスサイトスクリプティングの脆弱性 https://github.com/ikoniaris/kippo-graph/issues/35
15004 1 2022-07-23T07:15Z CVE-2016-15004 InfiniteWP Client プラグインにおけるインジェクションに関する脆弱性 http://seclists.org/fulldisclosure/2017/Jan/72
15004 2 2022-07-23T07:15Z CVE-2016-15004 InfiniteWP Client プラグインにおけるインジェクションに関する脆弱性 http://seclists.org/fulldisclosure/2017/Jan/72
15004 3 2022-07-23T07:15Z CVE-2016-15004 InfiniteWP Client プラグインにおけるインジェクションに関する脆弱性 https://sumofpwn.nl/advisory/2016/infinitewp_client_wordpress_plugin_unauthenticated_php_object_injection_vulnerability.html
15004 4 2022-07-23T07:15Z CVE-2016-15004 InfiniteWP Client プラグインにおけるインジェクションに関する脆弱性 https://sumofpwn.nl/advisory/2016/infinitewp_client_wordpress_plugin_unauthenticated_php_object_injection_vulnerability.html
15003 1 2022-07-18T09:15Z CVE-2016-15003 filezilla-project の filezilla client における引用されない検索パスまたは要素に関する脆弱性 https://www.exploit-db.com/exploits/39803/
15003 2 2022-07-18T09:15Z CVE-2016-15003 filezilla-project の filezilla client における引用されない検索パスまたは要素に関する脆弱性 https://www.exploit-db.com/exploits/39803/
15003 3 2022-07-18T09:15Z CVE-2016-15003 filezilla-project の filezilla client における引用されない検索パスまたは要素に関する脆弱性 https://youtu.be/r06VwwJ9J4M
15003 4 2022-07-18T09:15Z CVE-2016-15003 filezilla-project の filezilla client における引用されない検索パスまたは要素に関する脆弱性 https://youtu.be/r06VwwJ9J4M
15002 1 2022-06-09T17:15Z CVE-2016-15002 ideracorp の webyog monyog ultimate における検証および完全性チェックを行っていない Cookie への依存に関する脆弱性 https://youtu.be/KKlwi-u6wyA
15002 2 2022-06-09T17:15Z CVE-2016-15002 ideracorp の webyog monyog ultimate における検証および完全性チェックを行っていない Cookie への依存に関する脆弱性 https://youtu.be/KKlwi-u6wyA
20013 1 2022-02-19T05:15Z CVE-2016-20013 sha256crypt project の sha256crypt 他複数ベンダの製品における制限またはスロットリング無しのリソースの割り当てに関する脆弱性 https://akkadia.org/drepper/SHA-crypt.txt
20013 2 2022-02-19T05:15Z CVE-2016-20013 sha256crypt project の sha256crypt 他複数ベンダの製品における制限またはスロットリング無しのリソースの割り当てに関する脆弱性 https://akkadia.org/drepper/SHA-crypt.txt
20013 3 2022-02-19T05:15Z CVE-2016-20013 sha256crypt project の sha256crypt 他複数ベンダの製品における制限またはスロットリング無しのリソースの割り当てに関する脆弱性 https://pthree.org/2018/05/23/do-not-use-sha256crypt-sha512crypt-theyre-dangerous/
20013 4 2022-02-19T05:15Z CVE-2016-20013 sha256crypt project の sha256crypt 他複数ベンダの製品における制限またはスロットリング無しのリソースの割り当てに関する脆弱性 https://pthree.org/2018/05/23/do-not-use-sha256crypt-sha512crypt-theyre-dangerous/
6556 1 2021-09-24T21:15Z CVE-2016-6556 OpenNMS におけるクロスサイトスクリプティングの脆弱性 https://www.rapid7.com/blog/post/2016/11/15/r7-2016-24-opennms-stored-xss-via-snmp-cve-2016-6555-cve-2016-6556/
6555 1 2021-09-24T21:15Z CVE-2016-6555 OpenNMS におけるクロスサイトスクリプティングの脆弱性 https://www.rapid7.com/blog/post/2016/11/15/r7-2016-24-opennms-stored-xss-via-snmp-cve-2016-6555-cve-2016-6556/
6556 2 2021-09-24T21:15Z CVE-2016-6556 OpenNMS におけるクロスサイトスクリプティングの脆弱性 https://www.rapid7.com/blog/post/2016/11/15/r7-2016-24-opennms-stored-xss-via-snmp-cve-2016-6555-cve-2016-6556/
6555 2 2021-09-24T21:15Z CVE-2016-6555 OpenNMS におけるクロスサイトスクリプティングの脆弱性 https://www.rapid7.com/blog/post/2016/11/15/r7-2016-24-opennms-stored-xss-via-snmp-cve-2016-6555-cve-2016-6556/
20012 1 2021-09-15T20:15Z CVE-2016-20012 OpenSSH における脆弱性 https://github.com/openssh/openssh-portable/blob/d0fffc88c8fe90c1815c6f4097bc8cbcabc0f3dd/auth2-pubkey.c#L261-L265
20012 2 2021-09-15T20:15Z CVE-2016-20012 OpenSSH における脆弱性 https://github.com/openssh/openssh-portable/blob/d0fffc88c8fe90c1815c6f4097bc8cbcabc0f3dd/auth2-pubkey.c#L261-L265
20012 3 2021-09-15T20:15Z CVE-2016-20012 OpenSSH における脆弱性 https://rushter.com/blog/public-ssh-keys/
20012 4 2021-09-15T20:15Z CVE-2016-20012 OpenSSH における脆弱性 https://rushter.com/blog/public-ssh-keys/
20009 1 2021-03-11T22:15Z CVE-2016-20009 Wind River VxWorks における境界外書き込みに関する脆弱性 https://blog.exodusintel.com/2016/08/09/vxworks-execute-my-packets/
20009 2 2021-03-11T22:15Z CVE-2016-20009 Wind River VxWorks における境界外書き込みに関する脆弱性 https://blog.exodusintel.com/2016/08/09/vxworks-execute-my-packets/
11086 1 2020-09-24T20:15Z CVE-2016-11086 Ruby 用 oauth-ruby gem における証明書検証に関する脆弱性 https://github.com/oauth-xx/oauth-ruby/issues/137
11086 2 2020-09-24T20:15Z CVE-2016-11086 Ruby 用 oauth-ruby gem における証明書検証に関する脆弱性 https://github.com/oauth-xx/oauth-ruby/issues/137
11085 1 2020-08-16T18:15Z CVE-2016-11085 WordPress 用 quiz-master-next プラグインにおけるクロスサイトスクリプティングの脆弱性 https://security.dxw.com/advisories/csrfstored-xss-in-quiz-and-survey-master-formerly-quiz-master-next-allows-unauthenticated-attackers-to-do-almost-anything-an-admin-can/
11085 2 2020-08-16T18:15Z CVE-2016-11085 WordPress 用 quiz-master-next プラグインにおけるクロスサイトスクリプティングの脆弱性 https://security.dxw.com/advisories/csrfstored-xss-in-quiz-and-survey-master-formerly-quiz-master-next-allows-unauthenticated-attackers-to-do-almost-anything-an-admin-can/
7063 1 2020-07-21T17:15Z CVE-2016-7063 pritunl-client におけるパストラバーサルの脆弱性 https://lf.lc/CVE-2016-7063.txt
7063 2 2020-07-21T17:15Z CVE-2016-7063 pritunl-client におけるパストラバーサルの脆弱性 https://lf.lc/CVE-2016-7063.txt
11022 1 2020-03-23T15:15Z CVE-2016-11022 複数の NETGEAR Prosafe デバイスにおける OS コマンドインジェクションの脆弱性 http://firmware.re/vulns/acsa-2015-002.php
11022 2 2020-03-23T15:15Z CVE-2016-11022 複数の NETGEAR Prosafe デバイスにおける OS コマンドインジェクションの脆弱性 http://firmware.re/vulns/acsa-2015-002.php
11022 3 2020-03-23T15:15Z CVE-2016-11022 複数の NETGEAR Prosafe デバイスにおける OS コマンドインジェクションの脆弱性 https://github.com/threat9/routersploit/blob/master/routersploit/modules/exploits/routers/netgear/prosafe_rce.py
11022 4 2020-03-23T15:15Z CVE-2016-11022 複数の NETGEAR Prosafe デバイスにおける OS コマンドインジェクションの脆弱性 https://github.com/threat9/routersploit/blob/master/routersploit/modules/exploits/routers/netgear/prosafe_rce.py
11021 1 2020-03-09T01:15Z CVE-2016-11021 D-Link DCS-930L デバイスにおける OS コマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/39437
11021 2 2020-03-09T01:15Z CVE-2016-11021 D-Link DCS-930L デバイスにおける OS コマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/39437
1000109 1 2020-02-19T13:15Z CVE-2016-1000109 HHVM における初期化に関する脆弱性 https://httpoxy.org/
1000109 2 2020-02-19T13:15Z CVE-2016-1000109 HHVM における初期化に関する脆弱性 https://httpoxy.org/
9928 1 2020-02-06T14:15Z CVE-2016-9928 MCabber における権限管理に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845258
7524 1 2020-02-06T14:15Z CVE-2016-7524 ImageMagick における境界外読み取りに関する脆弱性 https://bugs.launchpad.net/ubuntu/+source/imagemagick/+bug/1537422
7523 1 2020-02-06T14:15Z CVE-2016-7523 ImageMagick における境界外読み取りに関する脆弱性 https://bugs.launchpad.net/ubuntu/+source/imagemagick/+bug/1537420
9928 2 2020-02-06T14:15Z CVE-2016-9928 MCabber における権限管理に関する脆弱性 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=845258
7524 2 2020-02-06T14:15Z CVE-2016-7524 ImageMagick における境界外読み取りに関する脆弱性 https://bugs.launchpad.net/ubuntu/+source/imagemagick/+bug/1537422
7523 2 2020-02-06T14:15Z CVE-2016-7523 ImageMagick における境界外読み取りに関する脆弱性 https://bugs.launchpad.net/ubuntu/+source/imagemagick/+bug/1537420
9928 3 2020-02-06T14:15Z CVE-2016-9928 MCabber における権限管理に関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1403790
7523 3 2020-02-06T14:15Z CVE-2016-7523 ImageMagick における境界外読み取りに関する脆弱性 https://github.com/ImageMagick/ImageMagick/issues/94
9928 4 2020-02-06T14:15Z CVE-2016-9928 MCabber における権限管理に関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1403790
7523 4 2020-02-06T14:15Z CVE-2016-7523 ImageMagick における境界外読み取りに関する脆弱性 https://github.com/ImageMagick/ImageMagick/issues/94
2032 1 2020-01-31T20:15Z CVE-2016-2032 Aruba AirWave Management Platform における認証に関する脆弱性 http://packetstormsecurity.com/files/136997/Aruba-Authentication-Bypass-Insecure-Transport-Tons-Of-Issues.html
2031 1 2020-01-31T20:15Z CVE-2016-2031 Aruba Instant における入力確認に関する脆弱性 http://packetstormsecurity.com/files/136997/Aruba-Authentication-Bypass-Insecure-Transport-Tons-Of-Issues.html
2032 2 2020-01-31T20:15Z CVE-2016-2032 Aruba AirWave Management Platform における認証に関する脆弱性 http://packetstormsecurity.com/files/136997/Aruba-Authentication-Bypass-Insecure-Transport-Tons-Of-Issues.html
2031 2 2020-01-31T20:15Z CVE-2016-2031 Aruba Instant における入力確認に関する脆弱性 http://packetstormsecurity.com/files/136997/Aruba-Authentication-Bypass-Insecure-Transport-Tons-Of-Issues.html
2032 3 2020-01-31T20:15Z CVE-2016-2032 Aruba AirWave Management Platform における認証に関する脆弱性 http://seclists.org/fulldisclosure/2016/May/19
2031 3 2020-01-31T20:15Z CVE-2016-2031 Aruba Instant における入力確認に関する脆弱性 http://seclists.org/fulldisclosure/2016/May/19
2032 4 2020-01-31T20:15Z CVE-2016-2032 Aruba AirWave Management Platform における認証に関する脆弱性 http://seclists.org/fulldisclosure/2016/May/19
2031 4 2020-01-31T20:15Z CVE-2016-2031 Aruba Instant における入力確認に関する脆弱性 http://seclists.org/fulldisclosure/2016/May/19
11018 1 2020-01-21T19:15Z CVE-2016-11018 WordPress 用 Huge-IT gallery-images プラグインにおける SQL インジェクションの脆弱性 http://10degres.net/cve-2016-11018-image-gallery-sql-injection/
11018 2 2020-01-21T19:15Z CVE-2016-11018 WordPress 用 Huge-IT gallery-images プラグインにおける SQL インジェクションの脆弱性 http://10degres.net/cve-2016-11018-image-gallery-sql-injection/
5346 1 2020-01-08T19:15Z CVE-2016-5346 Android における情報漏えいに関する脆弱性 https://github.com/ele7enxxh/poc-exp/tree/master/CVE-2016-5346
5346 2 2020-01-08T19:15Z CVE-2016-5346 Android における情報漏えいに関する脆弱性 https://github.com/ele7enxxh/poc-exp/tree/master/CVE-2016-5346
6593 1 2020-01-08T16:15Z CVE-2016-6593 Symantec VIP Access Desktop における信頼性のない検索パスに関する脆弱性 http://packetstormsecurity.com/files/140098/Symantec-VIP-Access-Arbitrary-DLL-Execution.html
6593 2 2020-01-08T16:15Z CVE-2016-6593 Symantec VIP Access Desktop における信頼性のない検索パスに関する脆弱性 http://packetstormsecurity.com/files/140098/Symantec-VIP-Access-Arbitrary-DLL-Execution.html
11017 1 2020-01-06T17:15Z CVE-2016-11017 AKIPS Network Monitor における OS コマンドインジェクションの脆弱性 https://ctrlu.net/vuln/0002.html
11017 2 2020-01-06T17:15Z CVE-2016-11017 AKIPS Network Monitor における OS コマンドインジェクションの脆弱性 https://ctrlu.net/vuln/0002.html
11017 3 2020-01-06T17:15Z CVE-2016-11017 AKIPS Network Monitor における OS コマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/39564
11017 4 2020-01-06T17:15Z CVE-2016-11017 AKIPS Network Monitor における OS コマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/39564
1000027 1 2020-01-02T23:15Z CVE-2016-1000027 Pivotal Spring Framework における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://raw.githubusercontent.com/distributedweaknessfiling/cvelist/master/2016/1000xxx/CVE-2016-1000027.json
1000027 2 2020-01-02T23:15Z CVE-2016-1000027 Pivotal Spring Framework における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://raw.githubusercontent.com/distributedweaknessfiling/cvelist/master/2016/1000xxx/CVE-2016-1000027.json
1000027 3 2020-01-02T23:15Z CVE-2016-1000027 Pivotal Spring Framework における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://www.tenable.com/security/research/tra-2016-20
1000027 4 2020-01-02T23:15Z CVE-2016-1000027 Pivotal Spring Framework における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://www.tenable.com/security/research/tra-2016-20
4983 1 2019-11-05T22:15Z CVE-2016-4983 dovecot rpm における重要なリソースに対する不適切なパーミッションの割り当てに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1346055
4983 2 2019-11-05T22:15Z CVE-2016-4983 dovecot rpm における重要なリソースに対する不適切なパーミッションの割り当てに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1346055
4983 3 2019-11-05T22:15Z CVE-2016-4983 dovecot rpm における重要なリソースに対する不適切なパーミッションの割り当てに関する脆弱性 https://bugzilla.suse.com/show_bug.cgi?id=984639
4983 4 2019-11-05T22:15Z CVE-2016-4983 dovecot rpm における重要なリソースに対する不適切なパーミッションの割り当てに関する脆弱性 https://bugzilla.suse.com/show_bug.cgi?id=984639
1000002 1 2019-11-05T14:15Z CVE-2016-1000002 gdm3 における情報漏えいに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-1000002
1000002 2 2019-11-05T14:15Z CVE-2016-1000002 gdm3 における情報漏えいに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-1000002
4289 1 2019-10-29T19:15Z CVE-2016-4289 GMER アプリケーションにおける境界外書き込みに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0127/
4289 2 2019-10-29T19:15Z CVE-2016-4289 GMER アプリケーションにおける境界外書き込みに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0127/
2360 1 2019-10-25T15:15Z CVE-2016-2360 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2359 1 2019-10-25T15:15Z CVE-2016-2359 Milesight IP security cameras における認証に関する脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2358 1 2019-10-25T15:15Z CVE-2016-2358 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2357 1 2019-10-25T15:15Z CVE-2016-2357 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2356 1 2019-10-25T15:15Z CVE-2016-2356 Milesight IP security cameras における古典的バッファオーバーフローの脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2360 2 2019-10-25T15:15Z CVE-2016-2360 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2359 2 2019-10-25T15:15Z CVE-2016-2359 Milesight IP security cameras における認証に関する脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2358 2 2019-10-25T15:15Z CVE-2016-2358 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2357 2 2019-10-25T15:15Z CVE-2016-2357 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2356 2 2019-10-25T15:15Z CVE-2016-2356 Milesight IP security cameras における古典的バッファオーバーフローの脆弱性 http://kirils.org/slides/2016-10-06_Milesight_initial.pdf
2360 3 2019-10-25T15:15Z CVE-2016-2360 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2359 3 2019-10-25T15:15Z CVE-2016-2359 Milesight IP security cameras における認証に関する脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2358 3 2019-10-25T15:15Z CVE-2016-2358 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2357 3 2019-10-25T15:15Z CVE-2016-2357 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2356 3 2019-10-25T15:15Z CVE-2016-2356 Milesight IP security cameras における古典的バッファオーバーフローの脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2360 4 2019-10-25T15:15Z CVE-2016-2360 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2359 4 2019-10-25T15:15Z CVE-2016-2359 Milesight IP security cameras における認証に関する脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2358 4 2019-10-25T15:15Z CVE-2016-2358 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2357 4 2019-10-25T15:15Z CVE-2016-2357 Milesight IP security cameras におけるハードコードされた認証情報の使用に関する脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
2356 4 2019-10-25T15:15Z CVE-2016-2356 Milesight IP security cameras における古典的バッファオーバーフローの脆弱性 https://www.youtube.com/watch?v=scckkI7CAW0
11016 1 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://cybersecurityworks.com/zerodays/cve-2016-11016-netgear.html
11015 1 2019-10-16T11:15Z CVE-2016-11015 NETGEAR JNR1010 デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://cybersecurityworks.com/zerodays/cve-2016-11015-netgear.html
11014 1 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://cybersecurityworks.com/zerodays/cve-2016-11014-netgear.html
11016 2 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://cybersecurityworks.com/zerodays/cve-2016-11016-netgear.html
11015 2 2019-10-16T11:15Z CVE-2016-11015 NETGEAR JNR1010 デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://cybersecurityworks.com/zerodays/cve-2016-11015-netgear.html
11014 2 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://cybersecurityworks.com/zerodays/cve-2016-11014-netgear.html
11016 3 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://github.com/cybersecurityworks/Disclosed/issues/12
11015 3 2019-10-16T11:15Z CVE-2016-11015 NETGEAR JNR1010 デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://github.com/cybersecurityworks/Disclosed/issues/13
11014 3 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://github.com/cybersecurityworks/Disclosed/issues/14
11016 4 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://github.com/cybersecurityworks/Disclosed/issues/12
11015 4 2019-10-16T11:15Z CVE-2016-11015 NETGEAR JNR1010 デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://github.com/cybersecurityworks/Disclosed/issues/13
11014 4 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://github.com/cybersecurityworks/Disclosed/issues/14
11016 5 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://khalil-shreateh.com/khalil.shtml/it-highlights/592-Netgear-1.0.0.24-Cross-Site-Request-Forgery--.html
11015 5 2019-10-16T11:15Z CVE-2016-11015 NETGEAR JNR1010 デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://lists.openwall.net/full-disclosure/2016/01/11/4
11014 5 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://khalil-shreateh.com/khalil.shtml/it-highlights/593-Netgear-1.0.0.24-Bypass---Improper-Session-Management--.html
11016 6 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://khalil-shreateh.com/khalil.shtml/it-highlights/592-Netgear-1.0.0.24-Cross-Site-Request-Forgery--.html
11015 6 2019-10-16T11:15Z CVE-2016-11015 NETGEAR JNR1010 デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://lists.openwall.net/full-disclosure/2016/01/11/4
11014 6 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://khalil-shreateh.com/khalil.shtml/it-highlights/593-Netgear-1.0.0.24-Bypass---Improper-Session-Management--.html
11016 7 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://lists.openwall.net/full-disclosure/2016/01/11/1
11015 7 2019-10-16T11:15Z CVE-2016-11015 NETGEAR JNR1010 デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://packetstormsecurity.com/files/135215/Netgear-1.0.0.24-Cross-Site-Request-Forgery.html
11014 7 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://lists.openwall.net/full-disclosure/2016/01/11/5
11016 8 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://lists.openwall.net/full-disclosure/2016/01/11/1
11015 8 2019-10-16T11:15Z CVE-2016-11015 NETGEAR JNR1010 デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://packetstormsecurity.com/files/135215/Netgear-1.0.0.24-Cross-Site-Request-Forgery.html
11014 8 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://lists.openwall.net/full-disclosure/2016/01/11/5
11016 9 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://packetstormsecurity.com/files/135194/Netgear-1.0.0.24-Cross-Site-Scripting.html
11014 9 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://packetstormsecurity.com/files/135216/Netgear-1.0.0.24-Bypass-Improper-Session-Management.html
11016 10 2019-10-16T11:15Z CVE-2016-11016 NETGEAR JNR1010 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://packetstormsecurity.com/files/135194/Netgear-1.0.0.24-Cross-Site-Scripting.html
11014 10 2019-10-16T11:15Z CVE-2016-11014 NETGEAR JNR1010 デバイスにおけるセッション期限に関する脆弱性 https://packetstormsecurity.com/files/135216/Netgear-1.0.0.24-Bypass-Improper-Session-Management.html
11012 1 2019-09-20T15:15Z CVE-2016-11012 WordPress 用 sola-support-tickets プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8389
11011 1 2019-09-20T15:15Z CVE-2016-11011 WordPress 用 wp-invoice プラグインにおける権限管理に関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11010 1 2019-09-20T15:15Z CVE-2016-11010 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11009 1 2019-09-20T15:15Z CVE-2016-11009 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11008 1 2019-09-20T15:15Z CVE-2016-11008 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11007 1 2019-09-20T15:15Z CVE-2016-11007 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11006 1 2019-09-20T15:15Z CVE-2016-11006 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11005 1 2019-09-20T15:15Z CVE-2016-11005 WordPress 用 instalinker プラグインにおけるクロスサイトスクリプティングの脆弱性 https://rastating.github.io/instalinker-reflected-xss-information-disclosure/
11001 1 2019-09-20T15:15Z CVE-2016-11001 WordPress 用 user-submitted-posts プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.securityfocus.com/archive/1/537616/30/0/threaded
11000 1 2019-09-20T15:15Z CVE-2016-11000 WordPress 用 wp-ultimate-exporter プラグインにおける SQL インジェクションの脆弱性 https://seclists.org/bugtraq/2016/Feb/183
10999 1 2019-09-20T15:15Z CVE-2016-10999 WordPress 用 Goodnews テーマにおけるクロスサイトスクリプティングの脆弱性 https://www.vulnerability-lab.com/get_content.php?id=1771
10998 1 2019-09-20T15:15Z CVE-2016-10998 WordPress 用 ocim-mp3 プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8425
10997 1 2019-09-20T15:15Z CVE-2016-10997 WordPress 用 beauty-premium テーマにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.exploit-db.com/exploits/39552
11012 2 2019-09-20T15:15Z CVE-2016-11012 WordPress 用 sola-support-tickets プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8389
11011 2 2019-09-20T15:15Z CVE-2016-11011 WordPress 用 wp-invoice プラグインにおける権限管理に関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11010 2 2019-09-20T15:15Z CVE-2016-11010 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11009 2 2019-09-20T15:15Z CVE-2016-11009 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11008 2 2019-09-20T15:15Z CVE-2016-11008 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11007 2 2019-09-20T15:15Z CVE-2016-11007 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11006 2 2019-09-20T15:15Z CVE-2016-11006 WordPress 用 wp-invoice プラグインにおける誤った領域へのリソースの漏えいに関する脆弱性 http://www.pritect.net/blog/wp-invoice-4-1-1-security-vulnerabilities
11005 2 2019-09-20T15:15Z CVE-2016-11005 WordPress 用 instalinker プラグインにおけるクロスサイトスクリプティングの脆弱性 https://rastating.github.io/instalinker-reflected-xss-information-disclosure/
11001 2 2019-09-20T15:15Z CVE-2016-11001 WordPress 用 user-submitted-posts プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.securityfocus.com/archive/1/537616/30/0/threaded
11000 2 2019-09-20T15:15Z CVE-2016-11000 WordPress 用 wp-ultimate-exporter プラグインにおける SQL インジェクションの脆弱性 https://seclists.org/bugtraq/2016/Feb/183
10999 2 2019-09-20T15:15Z CVE-2016-10999 WordPress 用 Goodnews テーマにおけるクロスサイトスクリプティングの脆弱性 https://www.vulnerability-lab.com/get_content.php?id=1771
10998 2 2019-09-20T15:15Z CVE-2016-10998 WordPress 用 ocim-mp3 プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8425
10997 2 2019-09-20T15:15Z CVE-2016-10997 WordPress 用 beauty-premium テーマにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.exploit-db.com/exploits/39552
10994 1 2019-09-18T12:15Z CVE-2016-10994 WordPress 用 Truemag テーマにおけるクロスサイトスクリプティングの脆弱性 https://www.vulnerability-lab.com/get_content.php?id=1839
10994 2 2019-09-18T12:15Z CVE-2016-10994 WordPress 用 Truemag テーマにおけるクロスサイトスクリプティングの脆弱性 https://www.vulnerability-lab.com/get_content.php?id=1839
10993 1 2019-09-17T15:15Z CVE-2016-10993 WordPress 用 ScoreMe テーマにおけるクロスサイトスクリプティングの脆弱性 https://www.vulnerability-lab.com/get_content.php?id=1808
10992 1 2019-09-17T15:15Z CVE-2016-10992 WordPress 用 music-store プラグインにおけるクロスサイトスクリプティングの脆弱性 https://packetstormsecurity.com/files/136445/
10990 1 2019-09-17T15:15Z CVE-2016-10990 WordPress 用 wp-cerber プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8430
10989 1 2019-09-17T15:15Z CVE-2016-10989 WordPress 用 leenkme プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/4
10988 1 2019-09-17T15:15Z CVE-2016-10988 WordPress 用 leenkme プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/4
10987 1 2019-09-17T15:15Z CVE-2016-10987 WordPress 用 persian-woocommerce-sms プラグインにおけるクロスサイトスクリプティングの脆弱性 https://0x62626262.wordpress.com/2016/04/21/persian-woocommerce-sms-xss-vulnerability/
10986 1 2019-09-17T15:15Z CVE-2016-10986 WordPress 用 tweet-wheel プラグインにおけるクロスサイトスクリプティングの脆弱性 https://0x62626262.wordpress.com/2016/04/21/tweet-wheel-xss-vulnerability/
10985 1 2019-09-17T15:15Z CVE-2016-10985 WordPress 用 echosign プラグインにおけるクロスサイトスクリプティングの脆弱性 https://0x62626262.wordpress.com/2016/04/21/echosign-plugin-for-wordpress-xss-vulnerability/
10984 1 2019-09-17T15:15Z CVE-2016-10984 WordPress 用 echosign プラグインにおけるクロスサイトスクリプティングの脆弱性 https://0x62626262.wordpress.com/2016/04/21/echosign-plugin-for-wordpress-xss-vulnerability/
10983 1 2019-09-17T15:15Z CVE-2016-10983 WordPress 用 ghost プラグインにおける認証に関する脆弱性 https://packetstormsecurity.com/files/136887/
10982 1 2019-09-17T15:15Z CVE-2016-10982 WordPress 用 kento-post-view-counter プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/3
10981 1 2019-09-17T15:15Z CVE-2016-10981 WordPress 用 kento-post-view-counter プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/3
10980 1 2019-09-17T15:15Z CVE-2016-10980 WordPress 用 kento-post-view-counter プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/2
10977 1 2019-09-17T15:15Z CVE-2016-10977 WordPress 用 nelio-ab-testing プラグインにおけるパストラバーサルの脆弱性 https://www.openwall.com/lists/oss-security/2016/05/10/1
10976 1 2019-09-17T15:15Z CVE-2016-10976 WordPress 用 safe-editor プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8497
10975 1 2019-09-17T15:15Z CVE-2016-10975 WordPress 用 fluid-responsive-slideshow プラグインにおけるクロスサイトスクリプティングの脆弱性 https://klikki.fi/adv/fluid_responsive_slideshow.html
10974 1 2019-09-17T15:15Z CVE-2016-10974 WordPress 用 fluid-responsive-slideshow プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://klikki.fi/adv/fluid_responsive_slideshow.html
10993 2 2019-09-17T15:15Z CVE-2016-10993 WordPress 用 ScoreMe テーマにおけるクロスサイトスクリプティングの脆弱性 https://www.vulnerability-lab.com/get_content.php?id=1808
10992 2 2019-09-17T15:15Z CVE-2016-10992 WordPress 用 music-store プラグインにおけるクロスサイトスクリプティングの脆弱性 https://packetstormsecurity.com/files/136445/
10990 2 2019-09-17T15:15Z CVE-2016-10990 WordPress 用 wp-cerber プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8430
10989 2 2019-09-17T15:15Z CVE-2016-10989 WordPress 用 leenkme プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/4
10988 2 2019-09-17T15:15Z CVE-2016-10988 WordPress 用 leenkme プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/4
10987 2 2019-09-17T15:15Z CVE-2016-10987 WordPress 用 persian-woocommerce-sms プラグインにおけるクロスサイトスクリプティングの脆弱性 https://0x62626262.wordpress.com/2016/04/21/persian-woocommerce-sms-xss-vulnerability/
10986 2 2019-09-17T15:15Z CVE-2016-10986 WordPress 用 tweet-wheel プラグインにおけるクロスサイトスクリプティングの脆弱性 https://0x62626262.wordpress.com/2016/04/21/tweet-wheel-xss-vulnerability/
10985 2 2019-09-17T15:15Z CVE-2016-10985 WordPress 用 echosign プラグインにおけるクロスサイトスクリプティングの脆弱性 https://0x62626262.wordpress.com/2016/04/21/echosign-plugin-for-wordpress-xss-vulnerability/
10984 2 2019-09-17T15:15Z CVE-2016-10984 WordPress 用 echosign プラグインにおけるクロスサイトスクリプティングの脆弱性 https://0x62626262.wordpress.com/2016/04/21/echosign-plugin-for-wordpress-xss-vulnerability/
10983 2 2019-09-17T15:15Z CVE-2016-10983 WordPress 用 ghost プラグインにおける認証に関する脆弱性 https://packetstormsecurity.com/files/136887/
10982 2 2019-09-17T15:15Z CVE-2016-10982 WordPress 用 kento-post-view-counter プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/3
10981 2 2019-09-17T15:15Z CVE-2016-10981 WordPress 用 kento-post-view-counter プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/3
10980 2 2019-09-17T15:15Z CVE-2016-10980 WordPress 用 kento-post-view-counter プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.openwall.com/lists/oss-security/2016/04/16/2
10977 2 2019-09-17T15:15Z CVE-2016-10977 WordPress 用 nelio-ab-testing プラグインにおけるパストラバーサルの脆弱性 https://www.openwall.com/lists/oss-security/2016/05/10/1
10976 2 2019-09-17T15:15Z CVE-2016-10976 WordPress 用 safe-editor プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8497
10975 2 2019-09-17T15:15Z CVE-2016-10975 WordPress 用 fluid-responsive-slideshow プラグインにおけるクロスサイトスクリプティングの脆弱性 https://klikki.fi/adv/fluid_responsive_slideshow.html
10974 2 2019-09-17T15:15Z CVE-2016-10974 WordPress 用 fluid-responsive-slideshow プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://klikki.fi/adv/fluid_responsive_slideshow.html
10973 1 2019-09-16T17:15Z CVE-2016-10973 WordPress 用 Brafton プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8614
10972 1 2019-09-16T17:15Z CVE-2016-10972 WordPress 用 newspaper テーマにおける権限管理に関する脆弱性 https://www.exploit-db.com/exploits/39894
10973 2 2019-09-16T17:15Z CVE-2016-10973 WordPress 用 Brafton プラグインにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8614
10972 2 2019-09-16T17:15Z CVE-2016-10972 WordPress 用 newspaper テーマにおける権限管理に関する脆弱性 https://www.exploit-db.com/exploits/39894
10973 3 2019-09-16T17:15Z CVE-2016-10973 WordPress 用 Brafton プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.openwall.com/lists/oss-security/2016/05/20/5
10973 4 2019-09-16T17:15Z CVE-2016-10973 WordPress 用 Brafton プラグインにおけるクロスサイトスクリプティングの脆弱性 https://www.openwall.com/lists/oss-security/2016/05/20/5
10967 1 2019-09-16T13:15Z CVE-2016-10967 WordPress 用 real3d-flipbook-lite プラグインにおけるクロスサイトスクリプティングの脆弱性 https://mukarramkhalid.com/wordpress-real-3d-flipbook-plugin-exploit/
10966 1 2019-09-16T13:15Z CVE-2016-10966 WordPress 用 real3d-flipbook-lite プラグインにおけるパストラバーサルの脆弱性 https://mukarramkhalid.com/wordpress-real-3d-flipbook-plugin-exploit/
10965 1 2019-09-16T13:15Z CVE-2016-10965 WordPress 用 real3d-flipbook-lite プラグインにおけるパストラバーサルの脆弱性 https://mukarramkhalid.com/wordpress-real-3d-flipbook-plugin-exploit/
10964 1 2019-09-16T13:15Z CVE-2016-10964 WordPress 用 dwnldr プラグインにおけるクロスサイトスクリプティングの脆弱性 https://rastating.github.io/dwnldr-1-0-stored-xss-disclosure/
10961 1 2019-09-16T13:15Z CVE-2016-10961 WordPress 用 colorway テーマにおけるクロスサイトスクリプティングの脆弱性 https://sumofpwn.nl/advisory/2016/cross_site_scripting_vulnerability_in_colorway_wordpress_theme.html
10960 1 2019-09-16T13:15Z CVE-2016-10960 WordPress 用 wsecure プラグインにおける入力確認に関する脆弱性 https://www.pluginvulnerabilities.com/2016/07/12/remote-code-execution-rce-vulnerability-in-wsecure-lite/
10959 1 2019-09-16T13:15Z CVE-2016-10959 WordPress 用 estatik プラグインにおける危険なタイプのファイルの無制限アップロードに関する脆弱性 https://www.pluginvulnerabilities.com/2016/08/19/authenticated-arbitrary-file-upload-vulnerability-in-estatik/
10958 1 2019-09-16T13:15Z CVE-2016-10958 WordPress 用 estatik プラグインにおける危険なタイプのファイルの無制限アップロードに関する脆弱性 https://www.pluginvulnerabilities.com/2016/08/01/arbitrary-file-upload-vulnerability-in-estatik/
10957 1 2019-09-16T13:15Z CVE-2016-10957 WordPress 用 Akal テーマにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8607
10967 2 2019-09-16T13:15Z CVE-2016-10967 WordPress 用 real3d-flipbook-lite プラグインにおけるクロスサイトスクリプティングの脆弱性 https://mukarramkhalid.com/wordpress-real-3d-flipbook-plugin-exploit/
10966 2 2019-09-16T13:15Z CVE-2016-10966 WordPress 用 real3d-flipbook-lite プラグインにおけるパストラバーサルの脆弱性 https://mukarramkhalid.com/wordpress-real-3d-flipbook-plugin-exploit/
10965 2 2019-09-16T13:15Z CVE-2016-10965 WordPress 用 real3d-flipbook-lite プラグインにおけるパストラバーサルの脆弱性 https://mukarramkhalid.com/wordpress-real-3d-flipbook-plugin-exploit/
10964 2 2019-09-16T13:15Z CVE-2016-10964 WordPress 用 dwnldr プラグインにおけるクロスサイトスクリプティングの脆弱性 https://rastating.github.io/dwnldr-1-0-stored-xss-disclosure/
10961 2 2019-09-16T13:15Z CVE-2016-10961 WordPress 用 colorway テーマにおけるクロスサイトスクリプティングの脆弱性 https://sumofpwn.nl/advisory/2016/cross_site_scripting_vulnerability_in_colorway_wordpress_theme.html
10960 2 2019-09-16T13:15Z CVE-2016-10960 WordPress 用 wsecure プラグインにおける入力確認に関する脆弱性 https://www.pluginvulnerabilities.com/2016/07/12/remote-code-execution-rce-vulnerability-in-wsecure-lite/
10959 2 2019-09-16T13:15Z CVE-2016-10959 WordPress 用 estatik プラグインにおける危険なタイプのファイルの無制限アップロードに関する脆弱性 https://www.pluginvulnerabilities.com/2016/08/19/authenticated-arbitrary-file-upload-vulnerability-in-estatik/
10958 2 2019-09-16T13:15Z CVE-2016-10958 WordPress 用 estatik プラグインにおける危険なタイプのファイルの無制限アップロードに関する脆弱性 https://www.pluginvulnerabilities.com/2016/08/01/arbitrary-file-upload-vulnerability-in-estatik/
10957 2 2019-09-16T13:15Z CVE-2016-10957 WordPress 用 Akal テーマにおけるクロスサイトスクリプティングの脆弱性 https://wpvulndb.com/vulnerabilities/8607
10957 3 2019-09-16T13:15Z CVE-2016-10957 WordPress 用 Akal テーマにおけるクロスサイトスクリプティングの脆弱性 https://www.saotn.org/wordpress-advisory-akal-theme-xss-vulnerability/
10957 4 2019-09-16T13:15Z CVE-2016-10957 WordPress 用 Akal テーマにおけるクロスサイトスクリプティングの脆弱性 https://www.saotn.org/wordpress-advisory-akal-theme-xss-vulnerability/
10956 1 2019-09-16T12:15Z CVE-2016-10956 WordPress 用 mail-masta プラグインにおける入力確認に関する脆弱性 https://cxsecurity.com/issue/WLB-2016080220
10956 2 2019-09-16T12:15Z CVE-2016-10956 WordPress 用 mail-masta プラグインにおける入力確認に関する脆弱性 https://cxsecurity.com/issue/WLB-2016080220
10956 3 2019-09-16T12:15Z CVE-2016-10956 WordPress 用 mail-masta プラグインにおける入力確認に関する脆弱性 https://wpvulndb.com/vulnerabilities/8609
10956 4 2019-09-16T12:15Z CVE-2016-10956 WordPress 用 mail-masta プラグインにおける入力確認に関する脆弱性 https://wpvulndb.com/vulnerabilities/8609
10955 1 2019-09-13T13:15Z CVE-2016-10955 WordPress 用 cysteme-finder プラグインにおける危険なタイプのファイルの無制限アップロードに関する脆弱性 https://wpvulndb.com/vulnerabilities/8612
10952 1 2019-09-13T13:15Z CVE-2016-10952 WordPress 用 quotes-collection プラグインにおけるクロスサイトスクリプティングの脆弱性 https://sumofpwn.nl/advisory/2016/cross_site_scripting_vulnerability_in_quotes_collection_wordpress_plugin.html
10951 1 2019-09-13T13:15Z CVE-2016-10951 WordPress 用 fs-shopping-cart プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/2016/11/10/firestorm-shopping-cart-ecommerce-plugin-2-07-02-for-wordpress/
10950 1 2019-09-13T13:15Z CVE-2016-10950 WordPress 用 sirv プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/2016/11/10/sirv-1-3-1-plugin-for-wordpress/
10949 1 2019-09-13T13:15Z CVE-2016-10949 WordPress 用 Relevanssi Premium プラグインにおける SQL インジェクションの脆弱性 https://advisories.dxw.com/advisories/sql-injection-and-unserialization-vulnerability-in-relevanssi-premium-could-allow-admins-to-execute-arbitrary-code-in-some-circumstances/
10948 1 2019-09-13T13:15Z CVE-2016-10948 WordPress 用 Post Indexer プラグインにおける 入力確認に関する脆弱性 https://advisories.dxw.com/advisories/unserialisation-in-post-indexer-could-allow-man-in-the-middle-to-execute-arbitrary-code-in-some-circumstances/
10947 1 2019-09-13T13:15Z CVE-2016-10947 WordPress 用 Post Indexer プラグインにおける SQL インジェクションの脆弱性 https://advisories.dxw.com/advisories/sql-injection-in-post-indexer-allows-super-admins-to-read-the-contents-of-the-database/
10946 1 2019-09-13T13:15Z CVE-2016-10946 WordPress 用 wp-d3 プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://wpvulndb.com/vulnerabilities/8679
10955 2 2019-09-13T13:15Z CVE-2016-10955 WordPress 用 cysteme-finder プラグインにおける危険なタイプのファイルの無制限アップロードに関する脆弱性 https://wpvulndb.com/vulnerabilities/8612
10952 2 2019-09-13T13:15Z CVE-2016-10952 WordPress 用 quotes-collection プラグインにおけるクロスサイトスクリプティングの脆弱性 https://sumofpwn.nl/advisory/2016/cross_site_scripting_vulnerability_in_quotes_collection_wordpress_plugin.html
10951 2 2019-09-13T13:15Z CVE-2016-10951 WordPress 用 fs-shopping-cart プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/2016/11/10/firestorm-shopping-cart-ecommerce-plugin-2-07-02-for-wordpress/
10950 2 2019-09-13T13:15Z CVE-2016-10950 WordPress 用 sirv プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/2016/11/10/sirv-1-3-1-plugin-for-wordpress/
10949 2 2019-09-13T13:15Z CVE-2016-10949 WordPress 用 Relevanssi Premium プラグインにおける SQL インジェクションの脆弱性 https://advisories.dxw.com/advisories/sql-injection-and-unserialization-vulnerability-in-relevanssi-premium-could-allow-admins-to-execute-arbitrary-code-in-some-circumstances/
10948 2 2019-09-13T13:15Z CVE-2016-10948 WordPress 用 Post Indexer プラグインにおける 入力確認に関する脆弱性 https://advisories.dxw.com/advisories/unserialisation-in-post-indexer-could-allow-man-in-the-middle-to-execute-arbitrary-code-in-some-circumstances/
10947 2 2019-09-13T13:15Z CVE-2016-10947 WordPress 用 Post Indexer プラグインにおける SQL インジェクションの脆弱性 https://advisories.dxw.com/advisories/sql-injection-in-post-indexer-allows-super-admins-to-read-the-contents-of-the-database/
10946 2 2019-09-13T13:15Z CVE-2016-10946 WordPress 用 wp-d3 プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://wpvulndb.com/vulnerabilities/8679
10945 1 2019-09-13T12:15Z CVE-2016-10945 WordPress 用 PageLines テーマにおけるクロスサイトリクエストフォージェリの脆弱性 https://klikki.fi/adv/pagelines.html
10944 1 2019-09-13T12:15Z CVE-2016-10944 WordPress 用 multisite-post-duplicator プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://advisories.dxw.com/advisories/csrf-vulnerability-in-multisite-post-duplicator-could-allow-an-attacker-to-do-almost-anything-an-admin-user-can-do/
10943 1 2019-09-13T12:15Z CVE-2016-10943 WordPress 用 zx-csv-upload プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/2016/12/16/english-zx_csv-upload-1-plugin-wordpress-sql-injection/
10940 1 2019-09-13T12:15Z CVE-2016-10940 WordPress 用 zm-gallery プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/2016/12/16/zm-gallery-1-plugin-wordpress-blind-injection/
10939 1 2019-09-13T12:15Z CVE-2016-10939 WordPress 用 xtremelocator プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/blog/2016/12/16/xtreme-locator-dealer-locator-plugin-wordpress-sql-injection/
10938 1 2019-09-13T12:15Z CVE-2016-10938 WordPress 用 copy-me プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://advisories.dxw.com/advisories/copy-me-vulnerable-to-csrf-allowing-unauthenticated-attacker-to-copy-posts/
10945 2 2019-09-13T12:15Z CVE-2016-10945 WordPress 用 PageLines テーマにおけるクロスサイトリクエストフォージェリの脆弱性 https://klikki.fi/adv/pagelines.html
10944 2 2019-09-13T12:15Z CVE-2016-10944 WordPress 用 multisite-post-duplicator プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://advisories.dxw.com/advisories/csrf-vulnerability-in-multisite-post-duplicator-could-allow-an-attacker-to-do-almost-anything-an-admin-user-can-do/
10943 2 2019-09-13T12:15Z CVE-2016-10943 WordPress 用 zx-csv-upload プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/2016/12/16/english-zx_csv-upload-1-plugin-wordpress-sql-injection/
10940 2 2019-09-13T12:15Z CVE-2016-10940 WordPress 用 zm-gallery プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/2016/12/16/zm-gallery-1-plugin-wordpress-blind-injection/
10939 2 2019-09-13T12:15Z CVE-2016-10939 WordPress 用 xtremelocator プラグインにおける SQL インジェクションの脆弱性 http://lenonleite.com.br/en/blog/2016/12/16/xtreme-locator-dealer-locator-plugin-wordpress-sql-injection/
10938 2 2019-09-13T12:15Z CVE-2016-10938 WordPress 用 copy-me プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://advisories.dxw.com/advisories/copy-me-vulnerable-to-csrf-allowing-unauthenticated-attacker-to-copy-posts/
10943 3 2019-09-13T12:15Z CVE-2016-10943 WordPress 用 zx-csv-upload プラグインにおける SQL インジェクションの脆弱性 https://wpvulndb.com/vulnerabilities/8702
10938 3 2019-09-13T12:15Z CVE-2016-10938 WordPress 用 copy-me プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://wpvulndb.com/vulnerabilities/8706
10943 4 2019-09-13T12:15Z CVE-2016-10943 WordPress 用 zx-csv-upload プラグインにおける SQL インジェクションの脆弱性 https://wpvulndb.com/vulnerabilities/8702
10938 4 2019-09-13T12:15Z CVE-2016-10938 WordPress 用 copy-me プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://wpvulndb.com/vulnerabilities/8706
7398 1 2019-09-06T19:15Z CVE-2016-7398 PHP pecl-http extension における不正な型変換に関する脆弱性 https://bugs.php.net/bug.php?id=73055
7398 2 2019-09-06T19:15Z CVE-2016-7398 PHP pecl-http extension における不正な型変換に関する脆弱性 https://bugs.php.net/bug.php?id=73055
7398 3 2019-09-06T19:15Z CVE-2016-7398 PHP pecl-http extension における不正な型変換に関する脆弱性 https://bugs.php.net/bug.php?id=73055&edit=1
7398 4 2019-09-06T19:15Z CVE-2016-7398 PHP pecl-http extension における不正な型変換に関する脆弱性 https://bugs.php.net/bug.php?id=73055&edit=1
6154 1 2019-08-23T22:15Z CVE-2016-6154 WatchGuard Fireware におけるオープンリダイレクトの脆弱性 https://www.sec-1.com/blog/2016/sec-1-advisory-reflected-cross-site-scripting-open-redirect-watchguard-fireware-v11-11
6154 2 2019-08-23T22:15Z CVE-2016-6154 WatchGuard Fireware におけるオープンリダイレクトの脆弱性 https://www.sec-1.com/blog/2016/sec-1-advisory-reflected-cross-site-scripting-open-redirect-watchguard-fireware-v11-11
10865 1 2019-08-09T13:15Z CVE-2016-10865 WordPress 用 Lightbox Plus Colorbox プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.pluginvulnerabilities.com/2016/04/05/cross-site-request-forgery-csrfcross-site-scripting-xss-vulnerability-in-lightbox-plus-colorbox/
10865 2 2019-08-09T13:15Z CVE-2016-10865 WordPress 用 Lightbox Plus Colorbox プラグインにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.pluginvulnerabilities.com/2016/04/05/cross-site-request-forgery-csrfcross-site-scripting-xss-vulnerability-in-lightbox-plus-colorbox/
10863 1 2019-08-08T21:15Z CVE-2016-10863 Edimax Wi-Fi Extender デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.pentestpartners.com/security-blog/edimax-wi-fi-extender-can-disclose-your-wpa-key/
10862 1 2019-08-08T21:15Z CVE-2016-10862 Neet AirStream NAS デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.pentestpartners.com/security-blog/a-neet-csrf-to-reverse-shell-in-wi-fi-music-streamer/
10863 2 2019-08-08T21:15Z CVE-2016-10863 Edimax Wi-Fi Extender デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.pentestpartners.com/security-blog/edimax-wi-fi-extender-can-disclose-your-wpa-key/
10862 2 2019-08-08T21:15Z CVE-2016-10862 Neet AirStream NAS デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.pentestpartners.com/security-blog/a-neet-csrf-to-reverse-shell-in-wi-fi-music-streamer/
10864 1 2019-08-08T13:15Z CVE-2016-10864 NETGEAR EX7000 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://www.pentestpartners.com/security-blog/netgear-ex7000-wi-fi-range-extender-minor-xss-and-poor-password-handling/
10864 2 2019-08-08T13:15Z CVE-2016-10864 NETGEAR EX7000 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://www.pentestpartners.com/security-blog/netgear-ex7000-wi-fi-range-extender-minor-xss-and-poor-password-handling/
10763 1 2019-07-18T12:15Z CVE-2016-10763 WordPress 用 CampTix Event Ticketing プラグインにおけるクロスサイトスクリプティングの脆弱性 https://hackerone.com/reports/152958
10762 1 2019-07-18T12:15Z CVE-2016-10762 WordPress 用 CampTix Event Ticketing プラグインにおけるコマンドインジェクションの脆弱性 https://hackerone.com/reports/151516
10763 2 2019-07-18T12:15Z CVE-2016-10763 WordPress 用 CampTix Event Ticketing プラグインにおけるクロスサイトスクリプティングの脆弱性 https://hackerone.com/reports/152958
10762 2 2019-07-18T12:15Z CVE-2016-10762 WordPress 用 CampTix Event Ticketing プラグインにおけるコマンドインジェクションの脆弱性 https://hackerone.com/reports/151516
10760 1 2019-06-11T21:29Z CVE-2016-10760 Seowon Intech ルータにおけるコマンドインジェクションの脆弱性 https://ethical-hacker.org/en/seowonintech-remote-root/
10760 2 2019-06-11T21:29Z CVE-2016-10760 Seowon Intech ルータにおけるコマンドインジェクションの脆弱性 https://ethical-hacker.org/en/seowonintech-remote-root/
10759 1 2019-05-24T18:29Z CVE-2016-10759 Precurio におけるパストラバーサルの脆弱性 https://blog.ripstech.com/2016/precurio-remote-command-execution-via-xinha-plugin/
10758 1 2019-05-24T18:29Z CVE-2016-10758 PHPKIT における危険なタイプのファイルの無制限アップロードに関する脆弱性 https://demo.ripstech.com/projects/phpkit_1.6.6
10757 1 2019-05-24T18:29Z CVE-2016-10757 Redaxo におけるクロスサイトリクエストフォージェリの脆弱性 https://blog.ripstech.com/2016/redaxo-remote-code-execution-via-csrf/
10756 1 2019-05-24T18:29Z CVE-2016-10756 Kliqqi におけるクロスサイトリクエストフォージェリの脆弱性 https://blog.ripstech.com/2016/kliqqi-from-cross-site-request-forgery-to-code-execution/
10754 1 2019-05-24T18:29Z CVE-2016-10754 Vtiger CRM における SQL インジェクションの脆弱性 https://blog.ripstech.com/2016/vtiger-sql-injection/
10753 1 2019-05-24T18:29Z CVE-2016-10753 e107 における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://blog.ripstech.com/2016/e107-sql-injection-through-object-injection/
10759 2 2019-05-24T18:29Z CVE-2016-10759 Precurio におけるパストラバーサルの脆弱性 https://blog.ripstech.com/2016/precurio-remote-command-execution-via-xinha-plugin/
10758 2 2019-05-24T18:29Z CVE-2016-10758 PHPKIT における危険なタイプのファイルの無制限アップロードに関する脆弱性 https://demo.ripstech.com/projects/phpkit_1.6.6
10757 2 2019-05-24T18:29Z CVE-2016-10757 Redaxo におけるクロスサイトリクエストフォージェリの脆弱性 https://blog.ripstech.com/2016/redaxo-remote-code-execution-via-csrf/
10756 2 2019-05-24T18:29Z CVE-2016-10756 Kliqqi におけるクロスサイトリクエストフォージェリの脆弱性 https://blog.ripstech.com/2016/kliqqi-from-cross-site-request-forgery-to-code-execution/
10754 2 2019-05-24T18:29Z CVE-2016-10754 Vtiger CRM における SQL インジェクションの脆弱性 https://blog.ripstech.com/2016/vtiger-sql-injection/
10753 2 2019-05-24T18:29Z CVE-2016-10753 e107 における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://blog.ripstech.com/2016/e107-sql-injection-through-object-injection/
8900 1 2019-05-24T17:29Z CVE-2016-8900 Exponent CMS におけるインジェクションに関する脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/5
8898 1 2019-05-24T17:29Z CVE-2016-8898 Exponent CMS における SQL インジェクションの脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/5
8900 2 2019-05-24T17:29Z CVE-2016-8900 Exponent CMS におけるインジェクションに関する脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/5
8898 2 2019-05-24T17:29Z CVE-2016-8898 Exponent CMS における SQL インジェクションの脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/5
8899 1 2019-05-23T19:29Z CVE-2016-8899 Exponent CMS におけるインジェクションに関する脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/5
8897 1 2019-05-23T19:29Z CVE-2016-8897 Exponent CMS における SQL インジェクションの脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/5
8899 2 2019-05-23T19:29Z CVE-2016-8899 Exponent CMS におけるインジェクションに関する脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/5
8897 2 2019-05-23T19:29Z CVE-2016-8897 Exponent CMS における SQL インジェクションの脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/5
9969 1 2019-05-23T18:29Z CVE-2016-9969 libwebp における二重解放に関する脆弱性 https://bugs.chromium.org/p/webp/issues/detail?id=322
8901 1 2019-05-23T18:29Z CVE-2016-8901 b2evolution におけるインジェクションに関する脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/3
9969 2 2019-05-23T18:29Z CVE-2016-9969 libwebp における二重解放に関する脆弱性 https://bugs.chromium.org/p/webp/issues/detail?id=322
8901 2 2019-05-23T18:29Z CVE-2016-8901 b2evolution におけるインジェクションに関する脆弱性 http://www.openwall.com/lists/oss-security/2016/09/30/3
7151 1 2019-05-15T14:29Z CVE-2016-7151 Capstone における境界外読み取りに関する脆弱性 https://github.com/aquynh/capstone/pull/725
10719 1 2019-05-15T14:29Z CVE-2016-10719 TP-Link Archer CR-700 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://packetstormsecurity.com/files/138881/TP-Link-Archer-CR-700-Cross-Site-Scripting.html
7151 2 2019-05-15T14:29Z CVE-2016-7151 Capstone における境界外読み取りに関する脆弱性 https://github.com/aquynh/capstone/pull/725
10719 2 2019-05-15T14:29Z CVE-2016-10719 TP-Link Archer CR-700 デバイスにおけるクロスサイトスクリプティングの脆弱性 https://packetstormsecurity.com/files/138881/TP-Link-Archer-CR-700-Cross-Site-Scripting.html
10749 1 2019-04-29T14:29Z CVE-2016-10749 cJSON における境界外読み取りに関する脆弱性 https://github.com/DaveGamble/cJSON/issues/30
10749 2 2019-04-29T14:29Z CVE-2016-10749 cJSON における境界外読み取りに関する脆弱性 https://github.com/DaveGamble/cJSON/issues/30
10749 3 2019-04-29T14:29Z CVE-2016-10749 cJSON における境界外読み取りに関する脆弱性 https://www.openwall.com/lists/oss-security/2016/11/07/2
10749 4 2019-04-29T14:29Z CVE-2016-10749 cJSON における境界外読み取りに関する脆弱性 https://www.openwall.com/lists/oss-security/2016/11/07/2
10742 1 2019-02-17T16:29Z CVE-2016-10742 Zabbix におけるオープンリダイレクトの脆弱性 https://support.zabbix.com/browse/ZBX-10272
10742 2 2019-02-17T16:29Z CVE-2016-10742 Zabbix におけるオープンリダイレクトの脆弱性 https://support.zabbix.com/browse/ZBX-10272
1000282 1 2019-02-05T17:29Z CVE-2016-1000282 Haraka におけるコマンドインジェクションの脆弱性 https://github.com/outflanknl/Exploits/blob/master/harakiri-CVE-2016-1000282.py
1000282 2 2019-02-05T17:29Z CVE-2016-1000282 Haraka におけるコマンドインジェクションの脆弱性 https://github.com/outflanknl/Exploits/blob/master/harakiri-CVE-2016-1000282.py
1000271 1 2019-02-04T21:29Z CVE-2016-1000271 DT Register における SQL インジェクションの脆弱性 https://packetstormsecurity.com/files/140141/Joomla-DT-Register-SQL-Injection.html
1000271 2 2019-02-04T21:29Z CVE-2016-1000271 DT Register における SQL インジェクションの脆弱性 https://packetstormsecurity.com/files/140141/Joomla-DT-Register-SQL-Injection.html
10737 1 2019-01-16T04:29Z CVE-2016-10737 Serendipity におけるクロスサイトスクリプティングの脆弱性 https://www.exploit-db.com/exploits/40650
10737 2 2019-01-16T04:29Z CVE-2016-10737 Serendipity におけるクロスサイトスクリプティングの脆弱性 https://www.exploit-db.com/exploits/40650
10736 1 2019-01-09T23:29Z CVE-2016-10736 WordPress 用 Social Pug - Easy Social Share Buttons プラグインにおけるクロスサイトスクリプティングの脆弱性 https://advisories.dxw.com/advisories/reflected-xss-in-social-pug-easy-social-share-buttons-could-allow-an-attacker-to-do-almost-anything-an-admin-user-can/
10736 2 2019-01-09T23:29Z CVE-2016-10736 WordPress 用 Social Pug - Easy Social Share Buttons プラグインにおけるクロスサイトスクリプティングの脆弱性 https://advisories.dxw.com/advisories/reflected-xss-in-social-pug-easy-social-share-buttons-could-allow-an-attacker-to-do-almost-anything-an-admin-user-can/
10735 1 2019-01-09T05:29Z CVE-2016-10735 Bootstrap におけるクロスサイトスクリプティングの脆弱性 https://github.com/twbs/bootstrap/issues/20184
10735 2 2019-01-09T05:29Z CVE-2016-10735 Bootstrap におけるクロスサイトスクリプティングの脆弱性 https://github.com/twbs/bootstrap/issues/20184
10729 1 2018-10-24T21:29Z CVE-2016-10729 Amanda におけるコマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/39217/
10729 2 2018-10-24T21:29Z CVE-2016-10729 Amanda におけるコマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/39217/
9045 1 2018-09-17T15:29Z CVE-2016-9045 ProcessMaker Enterprise Core における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://talosintelligence.com/vulnerability_reports/TALOS-2017-0314
9045 2 2018-09-17T15:29Z CVE-2016-9045 ProcessMaker Enterprise Core における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://talosintelligence.com/vulnerability_reports/TALOS-2017-0314
9048 1 2018-09-10T16:29Z CVE-2016-9048 ProcessMaker Enterprise Core における SQL インジェクションの脆弱性 https://talosintelligence.com/vulnerability_reports/TALOS-2017-0313
9048 2 2018-09-10T16:29Z CVE-2016-9048 ProcessMaker Enterprise Core における SQL インジェクションの脆弱性 https://talosintelligence.com/vulnerability_reports/TALOS-2017-0313
7077 1 2018-09-10T15:29Z CVE-2016-7077 foreman における情報漏えいに関する脆弱性 https://projects.theforeman.org/issues/16971
7077 2 2018-09-10T15:29Z CVE-2016-7077 foreman における情報漏えいに関する脆弱性 https://projects.theforeman.org/issues/16971
7075 1 2018-09-10T14:29Z CVE-2016-7075 Kubernetes および Openshift Enterprise における証明書検証に関する脆弱性 https://github.com/kubernetes/kubernetes/issues/34517
7067 1 2018-09-10T14:29Z CVE-2016-7067 Monit におけるクロスサイトリクエストフォージェリの脆弱性 https://bitbucket.org/tildeslash/monit/commits/c6ec3820e627f85417053e6336de2987f2d863e3?at=master
7075 2 2018-09-10T14:29Z CVE-2016-7075 Kubernetes および Openshift Enterprise における証明書検証に関する脆弱性 https://github.com/kubernetes/kubernetes/issues/34517
7067 2 2018-09-10T14:29Z CVE-2016-7067 Monit におけるクロスサイトリクエストフォージェリの脆弱性 https://bitbucket.org/tildeslash/monit/commits/c6ec3820e627f85417053e6336de2987f2d863e3?at=master
9040 1 2018-09-07T12:29Z CVE-2016-9040 Joyent SmartOS におけるリソースの枯渇に関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0258
9040 2 2018-09-07T12:29Z CVE-2016-9040 Joyent SmartOS におけるリソースの枯渇に関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0258
8527 1 2018-08-06T20:29Z CVE-2016-8527 Aruba Airwave におけるクロスサイトスクリプティングの脆弱性 https://www.exploit-db.com/exploits/41482/
8526 1 2018-08-06T20:29Z CVE-2016-8526 Aruba Airwave における XML 外部エンティティの脆弱性 https://www.exploit-db.com/exploits/41482/
8527 2 2018-08-06T20:29Z CVE-2016-8527 Aruba Airwave におけるクロスサイトスクリプティングの脆弱性 https://www.exploit-db.com/exploits/41482/
8526 2 2018-08-06T20:29Z CVE-2016-8526 Aruba Airwave における XML 外部エンティティの脆弱性 https://www.exploit-db.com/exploits/41482/
9583 1 2018-08-01T17:29Z CVE-2016-9583 jasper における境界外読み取りに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9583
9583 2 2018-08-01T17:29Z CVE-2016-9583 jasper における境界外読み取りに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9583
9580 1 2018-08-01T16:29Z CVE-2016-9580 openjpeg におけるヒープベースのバッファオーバーフローの脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9580
9579 1 2018-08-01T16:29Z CVE-2016-9579 Ceph Object Gateway における入力確認に関する脆弱性 http://tracker.ceph.com/issues/18187
9572 1 2018-08-01T16:29Z CVE-2016-9572 openjpeg における NULL ポインタデリファレンスに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9572
8654 1 2018-08-01T16:29Z CVE-2016-8654 jasper におけるバッファエラーの脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-8654
9580 2 2018-08-01T16:29Z CVE-2016-9580 openjpeg におけるヒープベースのバッファオーバーフローの脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9580
9579 2 2018-08-01T16:29Z CVE-2016-9579 Ceph Object Gateway における入力確認に関する脆弱性 http://tracker.ceph.com/issues/18187
9572 2 2018-08-01T16:29Z CVE-2016-9572 openjpeg における NULL ポインタデリファレンスに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9572
8654 2 2018-08-01T16:29Z CVE-2016-8654 jasper におけるバッファエラーの脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-8654
9580 3 2018-08-01T16:29Z CVE-2016-9580 openjpeg におけるヒープベースのバッファオーバーフローの脆弱性 https://github.com/uclouvain/openjpeg/issues/871
9579 3 2018-08-01T16:29Z CVE-2016-9579 Ceph Object Gateway における入力確認に関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9579
9572 3 2018-08-01T16:29Z CVE-2016-9572 openjpeg における NULL ポインタデリファレンスに関する脆弱性 https://github.com/uclouvain/openjpeg/issues/863
8654 3 2018-08-01T16:29Z CVE-2016-8654 jasper におけるバッファエラーの脆弱性 https://github.com/mdadams/jasper/issues/93
9580 4 2018-08-01T16:29Z CVE-2016-9580 openjpeg におけるヒープベースのバッファオーバーフローの脆弱性 https://github.com/uclouvain/openjpeg/issues/871
9579 4 2018-08-01T16:29Z CVE-2016-9579 Ceph Object Gateway における入力確認に関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9579
9572 4 2018-08-01T16:29Z CVE-2016-9572 openjpeg における NULL ポインタデリファレンスに関する脆弱性 https://github.com/uclouvain/openjpeg/issues/863
8654 4 2018-08-01T16:29Z CVE-2016-8654 jasper におけるバッファエラーの脆弱性 https://github.com/mdadams/jasper/issues/93
8654 5 2018-08-01T16:29Z CVE-2016-8654 jasper におけるバッファエラーの脆弱性 https://github.com/mdadams/jasper/issues/94
8654 6 2018-08-01T16:29Z CVE-2016-8654 jasper におけるバッファエラーの脆弱性 https://github.com/mdadams/jasper/issues/94
9581 1 2018-08-01T14:29Z CVE-2016-9581 openjpeg におけるヒープベースのバッファオーバーフローの脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9581
8641 1 2018-08-01T14:29Z CVE-2016-8641 nagios におけるリンク解釈に関する脆弱性 https://www.exploit-db.com/exploits/40774/
9581 2 2018-08-01T14:29Z CVE-2016-9581 openjpeg におけるヒープベースのバッファオーバーフローの脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9581
8641 2 2018-08-01T14:29Z CVE-2016-8641 nagios におけるリンク解釈に関する脆弱性 https://www.exploit-db.com/exploits/40774/
9581 3 2018-08-01T14:29Z CVE-2016-9581 openjpeg におけるヒープベースのバッファオーバーフローの脆弱性 https://github.com/uclouvain/openjpeg/issues/872
9581 4 2018-08-01T14:29Z CVE-2016-9581 openjpeg におけるヒープベースのバッファオーバーフローの脆弱性 https://github.com/uclouvain/openjpeg/issues/872
8637 1 2018-08-01T13:29Z CVE-2016-8637 dracut における重要なリソースに対する不適切なパーミッションの割り当てに関する脆弱性 http://seclists.org/oss-sec/2016/q4/352
8637 2 2018-08-01T13:29Z CVE-2016-8637 dracut における重要なリソースに対する不適切なパーミッションの割り当てに関する脆弱性 http://seclists.org/oss-sec/2016/q4/352
8637 3 2018-08-01T13:29Z CVE-2016-8637 dracut における重要なリソースに対する不適切なパーミッションの割り当てに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-8637
8637 4 2018-08-01T13:29Z CVE-2016-8637 dracut における重要なリソースに対する不適切なパーミッションの割り当てに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-8637
9573 1 2018-08-01T06:29Z CVE-2016-9573 OpenJPEG における境界外読み取りに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9573
9573 2 2018-08-01T06:29Z CVE-2016-9573 OpenJPEG における境界外読み取りに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9573
9573 3 2018-08-01T06:29Z CVE-2016-9573 OpenJPEG における境界外読み取りに関する脆弱性 https://github.com/uclouvain/openjpeg/issues/862
9573 4 2018-08-01T06:29Z CVE-2016-9573 OpenJPEG における境界外読み取りに関する脆弱性 https://github.com/uclouvain/openjpeg/issues/862
8614 1 2018-07-31T21:29Z CVE-2016-8614 Ansible における鍵管理のエラーに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-8614
8614 2 2018-07-31T21:29Z CVE-2016-8614 Ansible における鍵管理のエラーに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-8614
8614 3 2018-07-31T21:29Z CVE-2016-8614 Ansible における鍵管理のエラーに関する脆弱性 https://github.com/ansible/ansible-modules-core/issues/5237
8614 4 2018-07-31T21:29Z CVE-2016-8614 Ansible における鍵管理のエラーに関する脆弱性 https://github.com/ansible/ansible-modules-core/issues/5237
5649 1 2018-07-24T15:29Z CVE-2016-5649 Netgear DGN2200 および DGND3700 における情報漏えいに関する脆弱性 http://packetstormsecurity.com/files/152675/Netgear-DGN2200-DGND3700-Admin-Password-Disclosure.html
5649 2 2018-07-24T15:29Z CVE-2016-5649 Netgear DGN2200 および DGND3700 における情報漏えいに関する脆弱性 http://packetstormsecurity.com/files/152675/Netgear-DGN2200-DGND3700-Admin-Password-Disclosure.html
10728 1 2018-07-23T20:29Z CVE-2016-10728 Suricata における入力確認に関する脆弱性 https://github.com/kirillwow/ids_bypass
10728 2 2018-07-23T20:29Z CVE-2016-10728 Suricata における入力確認に関する脆弱性 https://github.com/kirillwow/ids_bypass
10727 1 2018-07-20T04:29Z CVE-2016-10727 GNOME evolution-data-server における情報漏えいに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1334842
10727 2 2018-07-20T04:29Z CVE-2016-10727 GNOME evolution-data-server における情報漏えいに関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1334842
9574 1 2018-07-19T13:29Z CVE-2016-9574 nss におけるセッションの固定化の脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1320695
9574 2 2018-07-19T13:29Z CVE-2016-9574 nss におけるセッションの固定化の脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1320695
9574 3 2018-07-19T13:29Z CVE-2016-9574 nss におけるセッションの固定化の脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9574
9574 4 2018-07-19T13:29Z CVE-2016-9574 nss におけるセッションの固定化の脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2016-9574
9500 1 2018-07-13T20:29Z CVE-2016-9500 Accellion FTP server に複数の脆弱性 https://www.qualys.com/2016/12/06/qsa-2016-12-06/qsa-2016-12-06.pdf
9499 1 2018-07-13T20:29Z CVE-2016-9499 Accellion FTP server に複数の脆弱性 https://www.qualys.com/2016/12/06/qsa-2016-12-06/qsa-2016-12-06.pdf
6564 1 2018-07-13T20:29Z CVE-2016-6564 Ragentek 製のコードを使用した Android 端末の OTA アップデートに中間者攻撃が可能な脆弱性 https://www.bitsighttech.com/blog/ragentek-android-ota-update-mechanism-vulnerable-to-mitm-attack
6563 1 2018-07-13T20:29Z CVE-2016-6563 D-Link 製ルータの HNAP サービスにスタックバッファオーバーフローの脆弱性 http://seclists.org/fulldisclosure/2016/Nov/38
6549 1 2018-07-13T20:29Z CVE-2016-6549 Zizai Tech Nut デバイスにおける認証に関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6548 1 2018-07-13T20:29Z CVE-2016-6548 Zizai Tech Nut モバイルアプリケーションにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6547 1 2018-07-13T20:29Z CVE-2016-6547 Zizai Tech Nut モバイルアプリケーションにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6546 1 2018-07-13T20:29Z CVE-2016-6546 iTrack Easy モバイルアプリケーションにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
9500 2 2018-07-13T20:29Z CVE-2016-9500 Accellion FTP server に複数の脆弱性 https://www.qualys.com/2016/12/06/qsa-2016-12-06/qsa-2016-12-06.pdf
9499 2 2018-07-13T20:29Z CVE-2016-9499 Accellion FTP server に複数の脆弱性 https://www.qualys.com/2016/12/06/qsa-2016-12-06/qsa-2016-12-06.pdf
6564 2 2018-07-13T20:29Z CVE-2016-6564 Ragentek 製のコードを使用した Android 端末の OTA アップデートに中間者攻撃が可能な脆弱性 https://www.bitsighttech.com/blog/ragentek-android-ota-update-mechanism-vulnerable-to-mitm-attack
6563 2 2018-07-13T20:29Z CVE-2016-6563 D-Link 製ルータの HNAP サービスにスタックバッファオーバーフローの脆弱性 http://seclists.org/fulldisclosure/2016/Nov/38
6549 2 2018-07-13T20:29Z CVE-2016-6549 Zizai Tech Nut デバイスにおける認証に関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6548 2 2018-07-13T20:29Z CVE-2016-6548 Zizai Tech Nut モバイルアプリケーションにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6547 2 2018-07-13T20:29Z CVE-2016-6547 Zizai Tech Nut モバイルアプリケーションにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6546 2 2018-07-13T20:29Z CVE-2016-6546 iTrack Easy モバイルアプリケーションにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6563 3 2018-07-13T20:29Z CVE-2016-6563 D-Link 製ルータの HNAP サービスにスタックバッファオーバーフローの脆弱性 https://www.exploit-db.com/exploits/40805/
6563 4 2018-07-13T20:29Z CVE-2016-6563 D-Link 製ルータの HNAP サービスにスタックバッファオーバーフローの脆弱性 https://www.exploit-db.com/exploits/40805/
6539 1 2018-07-06T21:29Z CVE-2016-6539 Trackr デバイスにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6538 1 2018-07-06T21:29Z CVE-2016-6538 TrackR Bravo モバイルアプリケーションにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6539 2 2018-07-06T21:29Z CVE-2016-6539 Trackr デバイスにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
6538 2 2018-07-06T21:29Z CVE-2016-6538 TrackR Bravo モバイルアプリケーションにおける情報漏えいに関する脆弱性 https://blog.rapid7.com/2016/10/25/multiple-bluetooth-low-energy-ble-tracker-vulnerabilities/
10522 1 2018-07-05T16:29Z CVE-2016-10522 rails_admin ruby gem におけるクロスサイトリクエストフォージェリの脆弱性 https://www.sourceclear.com/blog/Rails_admin-Vulnerability-Disclosure/
10522 2 2018-07-05T16:29Z CVE-2016-10522 rails_admin ruby gem におけるクロスサイトリクエストフォージェリの脆弱性 https://www.sourceclear.com/blog/Rails_admin-Vulnerability-Disclosure/
10522 3 2018-07-05T16:29Z CVE-2016-10522 rails_admin ruby gem におけるクロスサイトリクエストフォージェリの脆弱性 https://www.sourceclear.com/registry/security/cross-site-request-forgery-csrf-/ruby/sid-3173
10522 4 2018-07-05T16:29Z CVE-2016-10522 rails_admin ruby gem におけるクロスサイトリクエストフォージェリの脆弱性 https://www.sourceclear.com/registry/security/cross-site-request-forgery-csrf-/ruby/sid-3173
9905 1 2018-06-11T21:29Z CVE-2016-9905 Firefox および Thunderbird におけるアクセス制御に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1293985
9902 1 2018-06-11T21:29Z CVE-2016-9902 Firefox における同一生成元ポリシー違反に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1320039
9900 1 2018-06-11T21:29Z CVE-2016-9900 Firefox および Thunderbird におけるセキュリティ機能に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1319122
9899 1 2018-06-11T21:29Z CVE-2016-9899 Firefox および Thunderbird における解放済みメモリの使用に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1317409
9898 1 2018-06-11T21:29Z CVE-2016-9898 Firefox および Thunderbird における解放済みメモリの使用に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1314442
9897 1 2018-06-11T21:29Z CVE-2016-9897 Firefox および Thunderbird におけるバッファエラーの脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1301381
9896 1 2018-06-11T21:29Z CVE-2016-9896 Firefox における解放済みメモリの使用に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1315543
9895 1 2018-06-11T21:29Z CVE-2016-9895 Firefox および Thunderbird におけるセキュリティ機能に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1312272
9079 1 2018-06-11T21:29Z CVE-2016-9079 Mozilla Firefox における解放済みメモリ使用 (use-after-free) の脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1321066
9078 1 2018-06-11T21:29Z CVE-2016-9078 Firefox におけるオープンリダイレクトの脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1317641
9065 1 2018-06-11T21:29Z CVE-2016-9065 Android 上で稼働する Firefox における入力確認に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1306696
9062 1 2018-06-11T21:29Z CVE-2016-9062 Android 上で稼働する Firefox における情報漏えいに関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1294438
9061 1 2018-06-11T21:29Z CVE-2016-9061 Android 上で稼働する Firefox におけるパーミッションに関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1245795
5299 1 2018-06-11T21:29Z CVE-2016-5299 Android 上で稼働する Firefox におけるパーミッションに関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1245791
5298 1 2018-06-11T21:29Z CVE-2016-5298 Android 上で稼働する Firefox における入力確認に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1227538
5294 1 2018-06-11T21:29Z CVE-2016-5294 Windows 上で稼働する Thunderbird および Firefox におけるバッファエラーの脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1246972
5291 1 2018-06-11T21:29Z CVE-2016-5291 Thunderbird および Firefox における入力確認に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1292159
9905 2 2018-06-11T21:29Z CVE-2016-9905 Firefox および Thunderbird におけるアクセス制御に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1293985
9902 2 2018-06-11T21:29Z CVE-2016-9902 Firefox における同一生成元ポリシー違反に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1320039
9900 2 2018-06-11T21:29Z CVE-2016-9900 Firefox および Thunderbird におけるセキュリティ機能に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1319122
9899 2 2018-06-11T21:29Z CVE-2016-9899 Firefox および Thunderbird における解放済みメモリの使用に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1317409
9898 2 2018-06-11T21:29Z CVE-2016-9898 Firefox および Thunderbird における解放済みメモリの使用に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1314442
9897 2 2018-06-11T21:29Z CVE-2016-9897 Firefox および Thunderbird におけるバッファエラーの脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1301381
9896 2 2018-06-11T21:29Z CVE-2016-9896 Firefox における解放済みメモリの使用に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1315543
9895 2 2018-06-11T21:29Z CVE-2016-9895 Firefox および Thunderbird におけるセキュリティ機能に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1312272
9079 2 2018-06-11T21:29Z CVE-2016-9079 Mozilla Firefox における解放済みメモリ使用 (use-after-free) の脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1321066
9078 2 2018-06-11T21:29Z CVE-2016-9078 Firefox におけるオープンリダイレクトの脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1317641
9065 2 2018-06-11T21:29Z CVE-2016-9065 Android 上で稼働する Firefox における入力確認に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1306696
9062 2 2018-06-11T21:29Z CVE-2016-9062 Android 上で稼働する Firefox における情報漏えいに関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1294438
9061 2 2018-06-11T21:29Z CVE-2016-9061 Android 上で稼働する Firefox におけるパーミッションに関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1245795
5299 2 2018-06-11T21:29Z CVE-2016-5299 Android 上で稼働する Firefox におけるパーミッションに関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1245791
5298 2 2018-06-11T21:29Z CVE-2016-5298 Android 上で稼働する Firefox における入力確認に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1227538
5294 2 2018-06-11T21:29Z CVE-2016-5294 Windows 上で稼働する Thunderbird および Firefox におけるバッファエラーの脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1246972
5291 2 2018-06-11T21:29Z CVE-2016-5291 Thunderbird および Firefox における入力確認に関する脆弱性 https://bugzilla.mozilla.org/show_bug.cgi?id=1292159
9079 3 2018-06-11T21:29Z CVE-2016-9079 Mozilla Firefox における解放済みメモリ使用 (use-after-free) の脆弱性 https://www.exploit-db.com/exploits/41151/
9079 4 2018-06-11T21:29Z CVE-2016-9079 Mozilla Firefox における解放済みメモリ使用 (use-after-free) の脆弱性 https://www.exploit-db.com/exploits/41151/
9079 5 2018-06-11T21:29Z CVE-2016-9079 Mozilla Firefox における解放済みメモリ使用 (use-after-free) の脆弱性 https://www.exploit-db.com/exploits/42327/
9079 6 2018-06-11T21:29Z CVE-2016-9079 Mozilla Firefox における解放済みメモリ使用 (use-after-free) の脆弱性 https://www.exploit-db.com/exploits/42327/
9042 1 2018-06-04T20:29Z CVE-2016-9042 ntpd における入力確認に関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0260
9042 2 2018-06-04T20:29Z CVE-2016-9042 ntpd における入力確認に関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0260
10548 1 2018-05-31T20:29Z CVE-2016-10548 reduce-css-calc node module におけるクロスサイトスクリプティングの脆弱性 https://gist.github.com/ChALkeR/415a41b561ebea9b341efbb40b802fc9
10547 1 2018-05-31T20:29Z CVE-2016-10547 Nunjucks におけるクロスサイトスクリプティングの脆弱性 https://github.com/matt-/nunjucks_test
10543 1 2018-05-31T20:29Z CVE-2016-10543 call における入力確認に関する脆弱性 https://nodesecurity.io/advisories/121
10541 1 2018-05-31T20:29Z CVE-2016-10541 npm モジュール shell-quote におけるコードインジェクションの脆弱性 https://github.com/advisories/GHSA-qg8p-v9q4-gh34
10540 1 2018-05-31T20:29Z CVE-2016-10540 Minimatch における入力確認に関する脆弱性 https://nodesecurity.io/advisories/118
10538 1 2018-05-31T20:29Z CVE-2016-10538 node-cli における競合状態に関する脆弱性 https://github.com/node-js-libs/cli/issues/81
10533 1 2018-05-31T20:29Z CVE-2016-10533 express-restify-mongoose における情報漏えいに関する脆弱性 https://nodesecurity.io/advisories/92
10531 1 2018-05-31T20:29Z CVE-2016-10531 marked におけるクロスサイトスクリプティングの脆弱性 https://github.com/chjj/marked/pull/592
10528 1 2018-05-31T20:29Z CVE-2016-10528 restafary におけるパストラバーサルの脆弱性 https://nodesecurity.io/advisories/89
10523 1 2018-05-31T20:29Z CVE-2016-10523 MQTT におけるバッファエラーの脆弱性 https://github.com/mcollina/mosca/issues/393
10520 1 2018-05-31T20:29Z CVE-2016-10520 jadedown における入力確認に関する脆弱性 https://nodesecurity.io/advisories/52
10548 2 2018-05-31T20:29Z CVE-2016-10548 reduce-css-calc node module におけるクロスサイトスクリプティングの脆弱性 https://gist.github.com/ChALkeR/415a41b561ebea9b341efbb40b802fc9
10547 2 2018-05-31T20:29Z CVE-2016-10547 Nunjucks におけるクロスサイトスクリプティングの脆弱性 https://github.com/matt-/nunjucks_test
10543 2 2018-05-31T20:29Z CVE-2016-10543 call における入力確認に関する脆弱性 https://nodesecurity.io/advisories/121
10541 2 2018-05-31T20:29Z CVE-2016-10541 npm モジュール shell-quote におけるコードインジェクションの脆弱性 https://github.com/advisories/GHSA-qg8p-v9q4-gh34
10540 2 2018-05-31T20:29Z CVE-2016-10540 Minimatch における入力確認に関する脆弱性 https://nodesecurity.io/advisories/118
10538 2 2018-05-31T20:29Z CVE-2016-10538 node-cli における競合状態に関する脆弱性 https://github.com/node-js-libs/cli/issues/81
10533 2 2018-05-31T20:29Z CVE-2016-10533 express-restify-mongoose における情報漏えいに関する脆弱性 https://nodesecurity.io/advisories/92
10531 2 2018-05-31T20:29Z CVE-2016-10531 marked におけるクロスサイトスクリプティングの脆弱性 https://github.com/chjj/marked/pull/592
10528 2 2018-05-31T20:29Z CVE-2016-10528 restafary におけるパストラバーサルの脆弱性 https://nodesecurity.io/advisories/89
10523 2 2018-05-31T20:29Z CVE-2016-10523 MQTT におけるバッファエラーの脆弱性 https://github.com/mcollina/mosca/issues/393
10520 2 2018-05-31T20:29Z CVE-2016-10520 jadedown における入力確認に関する脆弱性 https://nodesecurity.io/advisories/52
10548 3 2018-05-31T20:29Z CVE-2016-10548 reduce-css-calc node module におけるクロスサイトスクリプティングの脆弱性 https://nodesecurity.io/advisories/144
10547 3 2018-05-31T20:29Z CVE-2016-10547 Nunjucks におけるクロスサイトスクリプティングの脆弱性 https://github.com/mozilla/nunjucks/issues/835
10538 3 2018-05-31T20:29Z CVE-2016-10538 node-cli における競合状態に関する脆弱性 https://nodesecurity.io/advisories/95
10523 3 2018-05-31T20:29Z CVE-2016-10523 MQTT におけるバッファエラーの脆弱性 https://github.com/mqttjs/mqtt-packet/pull/8
10548 4 2018-05-31T20:29Z CVE-2016-10548 reduce-css-calc node module におけるクロスサイトスクリプティングの脆弱性 https://nodesecurity.io/advisories/144
10547 4 2018-05-31T20:29Z CVE-2016-10547 Nunjucks におけるクロスサイトスクリプティングの脆弱性 https://github.com/mozilla/nunjucks/issues/835
10538 4 2018-05-31T20:29Z CVE-2016-10538 node-cli における競合状態に関する脆弱性 https://nodesecurity.io/advisories/95
10523 4 2018-05-31T20:29Z CVE-2016-10523 MQTT におけるバッファエラーの脆弱性 https://github.com/mqttjs/mqtt-packet/pull/8
10547 5 2018-05-31T20:29Z CVE-2016-10547 Nunjucks におけるクロスサイトスクリプティングの脆弱性 https://nodesecurity.io/advisories/147
10547 6 2018-05-31T20:29Z CVE-2016-10547 Nunjucks におけるクロスサイトスクリプティングの脆弱性 https://nodesecurity.io/advisories/147
10556 1 2018-05-29T20:29Z CVE-2016-10556 sequelize における SQL インジェクションの脆弱性 https://github.com/sequelize/sequelize/issues/5671
10551 1 2018-05-29T20:29Z CVE-2016-10551 waterline-sequel における SQL インジェクションの脆弱性 https://github.com/balderdashy/waterline/issues/1219#issuecomment-157294530
10556 2 2018-05-29T20:29Z CVE-2016-10556 sequelize における SQL インジェクションの脆弱性 https://github.com/sequelize/sequelize/issues/5671
10551 2 2018-05-29T20:29Z CVE-2016-10551 waterline-sequel における SQL インジェクションの脆弱性 https://github.com/balderdashy/waterline/issues/1219#issuecomment-157294530
10722 1 2018-05-02T23:29Z CVE-2016-10722 partclone におけるバッファエラーの脆弱性 https://david.gnedt.at/blog/2016/11/14/advisory-partclone-fat-bitmap-heap-overflow/
10722 2 2018-05-02T23:29Z CVE-2016-10722 partclone におけるバッファエラーの脆弱性 https://david.gnedt.at/blog/2016/11/14/advisory-partclone-fat-bitmap-heap-overflow/
10036 1 2018-05-01T19:29Z CVE-2016-10036 JFrog Artifactory における危険なタイプのファイルの無制限アップロードに関する脆弱性 http://packetstormsecurity.com/files/147378/Jfrog-Artifactory-Code-Execution-Shell-Upload.html
10036 2 2018-05-01T19:29Z CVE-2016-10036 JFrog Artifactory における危険なタイプのファイルの無制限アップロードに関する脆弱性 http://packetstormsecurity.com/files/147378/Jfrog-Artifactory-Code-Execution-Shell-Upload.html
10036 3 2018-05-01T19:29Z CVE-2016-10036 JFrog Artifactory における危険なタイプのファイルの無制限アップロードに関する脆弱性 https://www.exploit-db.com/exploits/44543/
10036 4 2018-05-01T19:29Z CVE-2016-10036 JFrog Artifactory における危険なタイプのファイルの無制限アップロードに関する脆弱性 https://www.exploit-db.com/exploits/44543/
9043 1 2018-04-24T19:29Z CVE-2016-9043 CorelDRAW における境界外書き込みに関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0261
9038 1 2018-04-24T19:29Z CVE-2016-9038 Invincea-X における競合状態に関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0256
8732 1 2018-04-24T19:29Z CVE-2016-8732 Invincea Dell Protected Workspace におけるパーミッションに関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0246
8384 1 2018-04-24T19:29Z CVE-2016-8384 AntennaHouse DMC HTMLFilter におけるバッファエラーの脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0209
8383 1 2018-04-24T19:29Z CVE-2016-8383 AntennaHouse DMC HTMLFilter におけるバッファエラーの脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0208
8382 1 2018-04-24T19:29Z CVE-2016-8382 AntennaHouse DMC HTMLFilter におけるバッファエラーの脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0207
9043 2 2018-04-24T19:29Z CVE-2016-9043 CorelDRAW における境界外書き込みに関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0261
9038 2 2018-04-24T19:29Z CVE-2016-9038 Invincea-X における競合状態に関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0256
8732 2 2018-04-24T19:29Z CVE-2016-8732 Invincea Dell Protected Workspace におけるパーミッションに関する脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0246
8384 2 2018-04-24T19:29Z CVE-2016-8384 AntennaHouse DMC HTMLFilter におけるバッファエラーの脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0209
8383 2 2018-04-24T19:29Z CVE-2016-8383 AntennaHouse DMC HTMLFilter におけるバッファエラーの脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0208
8382 2 2018-04-24T19:29Z CVE-2016-8382 AntennaHouse DMC HTMLFilter におけるバッファエラーの脆弱性 https://www.talosintelligence.com/vulnerability_reports/TALOS-2016-0207
9587 1 2018-04-24T16:29Z CVE-2016-9587 Ansible における入力確認に関する脆弱性 https://www.exploit-db.com/exploits/41013/
9587 2 2018-04-24T16:29Z CVE-2016-9587 Ansible における入力確認に関する脆弱性 https://www.exploit-db.com/exploits/41013/
10717 1 2018-03-21T21:29Z CVE-2016-10717 Malwarebytes Anti-Malware consumer におけるセキュリティ機能に関する脆弱性 https://github.com/mspaling/mbam-exclusions-poc-
10717 2 2018-03-21T21:29Z CVE-2016-10717 Malwarebytes Anti-Malware consumer におけるセキュリティ機能に関する脆弱性 https://github.com/mspaling/mbam-exclusions-poc-
10717 3 2018-03-21T21:29Z CVE-2016-10717 Malwarebytes Anti-Malware consumer におけるセキュリティ機能に関する脆弱性 https://github.com/mspaling/mbam-exclusions-poc-/blob/master/mbam-whitelist-poc.txt
10717 4 2018-03-21T21:29Z CVE-2016-10717 Malwarebytes Anti-Malware consumer におけるセキュリティ機能に関する脆弱性 https://github.com/mspaling/mbam-exclusions-poc-/blob/master/mbam-whitelist-poc.txt
5314 1 2018-03-12T02:29Z CVE-2016-5314 LibTIFF における境界外書き込みに関する脆弱性 http://bugzilla.maptools.org/show_bug.cgi?id=2554
5314 2 2018-03-12T02:29Z CVE-2016-5314 LibTIFF における境界外書き込みに関する脆弱性 http://bugzilla.maptools.org/show_bug.cgi?id=2554
9591 1 2018-03-09T20:29Z CVE-2016-9591 JasPer における解放済みメモリの使用に関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1406405
9591 2 2018-03-09T20:29Z CVE-2016-9591 JasPer における解放済みメモリの使用に関する脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1406405
6272 1 2018-02-20T15:29Z CVE-2016-6272 Epic MyChart におけるブラインド XPath インジェクションの脆弱性 http://packetstormsecurity.com/files/146418/EPIC-MyChart-SQL-Injection.html
6272 2 2018-02-20T15:29Z CVE-2016-6272 Epic MyChart におけるブラインド XPath インジェクションの脆弱性 http://packetstormsecurity.com/files/146418/EPIC-MyChart-SQL-Injection.html
6272 3 2018-02-20T15:29Z CVE-2016-6272 Epic MyChart におけるブラインド XPath インジェクションの脆弱性 https://www.exploit-db.com/exploits/44098/
6272 4 2018-02-20T15:29Z CVE-2016-6272 Epic MyChart におけるブラインド XPath インジェクションの脆弱性 https://www.exploit-db.com/exploits/44098/
10008 1 2018-02-19T21:29Z CVE-2016-10008 dotCMS における SQL インジェクションの脆弱性 https://security.elarlang.eu/cve-2016-10007-and-cve-2016-10008-2-sql-injection-vulnerabilities-in-dotcms-blacklist-defence-bypass.html
10007 1 2018-02-19T21:29Z CVE-2016-10007 dotCMS における SQL インジェクションの脆弱性 https://security.elarlang.eu/cve-2016-10007-and-cve-2016-10008-2-sql-injection-vulnerabilities-in-dotcms-blacklist-defence-bypass.html
10008 2 2018-02-19T21:29Z CVE-2016-10008 dotCMS における SQL インジェクションの脆弱性 https://security.elarlang.eu/cve-2016-10007-and-cve-2016-10008-2-sql-injection-vulnerabilities-in-dotcms-blacklist-defence-bypass.html
10007 2 2018-02-19T21:29Z CVE-2016-10007 dotCMS における SQL インジェクションの脆弱性 https://security.elarlang.eu/cve-2016-10007-and-cve-2016-10008-2-sql-injection-vulnerabilities-in-dotcms-blacklist-defence-bypass.html
9568 1 2018-02-19T19:29Z CVE-2016-9568 Carbon Black Sensor におけるセキュリティ機能に関する脆弱性 https://labs.nettitude.com/blog/carbon-black-security-advisories-cve-2016-9570-cve-2016-9568-and-cve-2016-9569/
9568 2 2018-02-19T19:29Z CVE-2016-9568 Carbon Black Sensor におけるセキュリティ機能に関する脆弱性 https://labs.nettitude.com/blog/carbon-black-security-advisories-cve-2016-9570-cve-2016-9568-and-cve-2016-9569/
8523 1 2018-02-15T22:29Z CVE-2016-8523 HPE Smart Storage Administrator におけるコマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/41297/
8523 2 2018-02-15T22:29Z CVE-2016-8523 HPE Smart Storage Administrator におけるコマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/41297/
10712 1 2018-02-09T06:29Z CVE-2016-10712 PHP における入力確認に関する脆弱性 https://bugs.php.net/bug.php?id=71323
10712 2 2018-02-09T06:29Z CVE-2016-10712 PHP における入力確認に関する脆弱性 https://bugs.php.net/bug.php?id=71323
3957 1 2018-02-06T18:29Z CVE-2016-3957 web2py における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://devco.re/blog/2017/01/03/web2py-unserialize-code-execution-CVE-2016-3957/
3954 1 2018-02-06T18:29Z CVE-2016-3954 web2py における情報漏えいに関する脆弱性 https://devco.re/blog/2017/01/03/web2py-unserialize-code-execution-CVE-2016-3957/
3953 1 2018-02-06T18:29Z CVE-2016-3953 web2py におけるハードコードされた認証情報の使用に関する脆弱性 https://devco.re/blog/2017/01/03/web2py-unserialize-code-execution-CVE-2016-3957/
3952 1 2018-02-06T18:29Z CVE-2016-3952 web2py における証明書・パスワードの管理に関する脆弱性 https://devco.re/blog/2017/01/03/web2py-unserialize-code-execution-CVE-2016-3957/
3957 2 2018-02-06T18:29Z CVE-2016-3957 web2py における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://devco.re/blog/2017/01/03/web2py-unserialize-code-execution-CVE-2016-3957/
3954 2 2018-02-06T18:29Z CVE-2016-3954 web2py における情報漏えいに関する脆弱性 https://devco.re/blog/2017/01/03/web2py-unserialize-code-execution-CVE-2016-3957/
3953 2 2018-02-06T18:29Z CVE-2016-3953 web2py におけるハードコードされた認証情報の使用に関する脆弱性 https://devco.re/blog/2017/01/03/web2py-unserialize-code-execution-CVE-2016-3957/
3952 2 2018-02-06T18:29Z CVE-2016-3952 web2py における証明書・パスワードの管理に関する脆弱性 https://devco.re/blog/2017/01/03/web2py-unserialize-code-execution-CVE-2016-3957/
6599 1 2018-01-30T20:29Z CVE-2016-6599 BMC Track-It! における証明書・パスワードの管理に関する脆弱性 http://packetstormsecurity.com/files/146110/BMC-Track-It-11.4-Code-Execution-Information-Disclosure.html
6598 1 2018-01-30T20:29Z CVE-2016-6598 BMC Track-It! におけるアクセス制御に関する脆弱性 http://packetstormsecurity.com/files/146110/BMC-Track-It-11.4-Code-Execution-Information-Disclosure.html
6599 2 2018-01-30T20:29Z CVE-2016-6599 BMC Track-It! における証明書・パスワードの管理に関する脆弱性 http://packetstormsecurity.com/files/146110/BMC-Track-It-11.4-Code-Execution-Information-Disclosure.html
6598 2 2018-01-30T20:29Z CVE-2016-6598 BMC Track-It! におけるアクセス制御に関する脆弱性 http://packetstormsecurity.com/files/146110/BMC-Track-It-11.4-Code-Execution-Information-Disclosure.html
6599 3 2018-01-30T20:29Z CVE-2016-6599 BMC Track-It! における証明書・パスワードの管理に関する脆弱性 http://seclists.org/fulldisclosure/2018/Jan/92
6598 3 2018-01-30T20:29Z CVE-2016-6598 BMC Track-It! におけるアクセス制御に関する脆弱性 http://seclists.org/fulldisclosure/2018/Jan/92
6599 4 2018-01-30T20:29Z CVE-2016-6599 BMC Track-It! における証明書・パスワードの管理に関する脆弱性 http://seclists.org/fulldisclosure/2018/Jan/92
6598 4 2018-01-30T20:29Z CVE-2016-6598 BMC Track-It! におけるアクセス制御に関する脆弱性 http://seclists.org/fulldisclosure/2018/Jan/92
6599 5 2018-01-30T20:29Z CVE-2016-6599 BMC Track-It! における証明書・パスワードの管理に関する脆弱性 https://github.com/pedrib/PoC/blob/master/advisories/bmc-track-it-11.4.txt
6598 5 2018-01-30T20:29Z CVE-2016-6598 BMC Track-It! におけるアクセス制御に関する脆弱性 https://github.com/pedrib/PoC/blob/master/advisories/bmc-track-it-11.4.txt
6599 6 2018-01-30T20:29Z CVE-2016-6599 BMC Track-It! における証明書・パスワードの管理に関する脆弱性 https://github.com/pedrib/PoC/blob/master/advisories/bmc-track-it-11.4.txt
6598 6 2018-01-30T20:29Z CVE-2016-6598 BMC Track-It! におけるアクセス制御に関する脆弱性 https://github.com/pedrib/PoC/blob/master/advisories/bmc-track-it-11.4.txt
10710 1 2018-01-25T23:29Z CVE-2016-10710 Biscom Secure File Transfer における入力確認に関する脆弱性 http://threat.tevora.com/biscom-secure-file-transfer-arbitrary-file-download/
10710 2 2018-01-25T23:29Z CVE-2016-10710 Biscom Secure File Transfer における入力確認に関する脆弱性 http://threat.tevora.com/biscom-secure-file-transfer-arbitrary-file-download/
10709 1 2018-01-22T04:29Z CVE-2016-10709 pfSense における OS コマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/39709/
10709 2 2018-01-22T04:29Z CVE-2016-10709 pfSense における OS コマンドインジェクションの脆弱性 https://www.exploit-db.com/exploits/39709/
10709 3 2018-01-22T04:29Z CVE-2016-10709 pfSense における OS コマンドインジェクションの脆弱性 https://www.rapid7.com/db/modules/exploit/unix/http/pfsense_graph_injection_exec
10709 4 2018-01-22T04:29Z CVE-2016-10709 pfSense における OS コマンドインジェクションの脆弱性 https://www.rapid7.com/db/modules/exploit/unix/http/pfsense_graph_injection_exec
10709 5 2018-01-22T04:29Z CVE-2016-10709 pfSense における OS コマンドインジェクションの脆弱性 https://www.security-assessment.com/files/documents/advisory/pfsenseAdvisory.pdf
10709 6 2018-01-22T04:29Z CVE-2016-10709 pfSense における OS コマンドインジェクションの脆弱性 https://www.security-assessment.com/files/documents/advisory/pfsenseAdvisory.pdf
10707 1 2018-01-18T23:29Z CVE-2016-10707 jQuery における再帰制御に関する脆弱性 https://github.com/jquery/jquery/issues/3133
10707 2 2018-01-18T23:29Z CVE-2016-10707 jQuery における再帰制御に関する脆弱性 https://github.com/jquery/jquery/issues/3133
9722 1 2018-01-10T17:29Z CVE-2016-9722 IBM QRadar におけるアクセス制御に関する脆弱性 https://www.exploit-db.com/exploits/45005/
9722 2 2018-01-10T17:29Z CVE-2016-9722 IBM QRadar におけるアクセス制御に関する脆弱性 https://www.exploit-db.com/exploits/45005/
10703 1 2017-12-14T19:29Z CVE-2016-10703 ecstatic npm パッケージにおける入力確認に関する脆弱性 https://www.checkmarx.com/advisories/denial-of-service-dos-vulnerability-in-ecstatic-npm-package/
10703 2 2017-12-14T19:29Z CVE-2016-10703 ecstatic npm パッケージにおける入力確認に関する脆弱性 https://www.checkmarx.com/advisories/denial-of-service-dos-vulnerability-in-ecstatic-npm-package/
1252 1 2017-12-05T16:29Z CVE-2016-1252 Debian の apt パッケージにおける証明書検証に関する脆弱性 https://bugs.chromium.org/p/project-zero/issues/detail?id=1020
1252 2 2017-12-05T16:29Z CVE-2016-1252 Debian の apt パッケージにおける証明書検証に関する脆弱性 https://bugs.chromium.org/p/project-zero/issues/detail?id=1020
1252 3 2017-12-05T16:29Z CVE-2016-1252 Debian の apt パッケージにおける証明書検証に関する脆弱性 https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1647467
1252 4 2017-12-05T16:29Z CVE-2016-1252 Debian の apt パッケージにおける証明書検証に関する脆弱性 https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1647467
1252 5 2017-12-05T16:29Z CVE-2016-1252 Debian の apt パッケージにおける証明書検証に関する脆弱性 https://www.exploit-db.com/exploits/40916/
1252 6 2017-12-05T16:29Z CVE-2016-1252 Debian の apt パッケージにおける証明書検証に関する脆弱性 https://www.exploit-db.com/exploits/40916/
10699 1 2017-10-31T07:29Z CVE-2016-10699 D-Link DSL-2740E デバイスにおけるクロスサイトスクリプティングの脆弱性 https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-018/?fid=8411
10699 2 2017-10-31T07:29Z CVE-2016-10699 D-Link DSL-2740E デバイスにおけるクロスサイトスクリプティングの脆弱性 https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-018/?fid=8411
5003 1 2017-10-27T18:29Z CVE-2016-5003 Apache XML-RPC における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://0ang3el.blogspot.ru/2016/07/beware-of-ws-xmlrpc-library-in-your.html
5003 2 2017-10-27T18:29Z CVE-2016-5003 Apache XML-RPC における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://0ang3el.blogspot.ru/2016/07/beware-of-ws-xmlrpc-library-in-your.html
10511 1 2017-09-18T21:29Z CVE-2016-10511 Twitter における証明書検証に関する脆弱性 https://hackerone.com/reports/168538
10511 2 2017-09-18T21:29Z CVE-2016-10511 Twitter における証明書検証に関する脆弱性 https://hackerone.com/reports/168538
8744 1 2017-09-13T16:29Z CVE-2016-8744 Apache Brooklyn における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://brooklyn.apache.org/community/security/CVE-2016-8744.html
8744 2 2017-09-13T16:29Z CVE-2016-8744 Apache Brooklyn における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://brooklyn.apache.org/community/security/CVE-2016-8744.html
10510 1 2017-08-31T20:29Z CVE-2016-10510 Kohana におけるクロスサイトスクリプティングの脆弱性 https://github.com/kohana/kohana/issues/107
10509 1 2017-08-31T20:29Z CVE-2016-10509 OpenCart における SQL インジェクションの脆弱性 https://github.com/opencart/opencart/issues/4114
10510 2 2017-08-31T20:29Z CVE-2016-10510 Kohana におけるクロスサイトスクリプティングの脆弱性 https://github.com/kohana/kohana/issues/107
10509 2 2017-08-31T20:29Z CVE-2016-10509 OpenCart における SQL インジェクションの脆弱性 https://github.com/opencart/opencart/issues/4114
10510 3 2017-08-31T20:29Z CVE-2016-10510 Kohana におけるクロスサイトスクリプティングの脆弱性 https://www.checkmarx.com/advisories/cross-site-scripting-xss-vulnerability-in-kohana/
10510 4 2017-08-31T20:29Z CVE-2016-10510 Kohana におけるクロスサイトスクリプティングの脆弱性 https://www.checkmarx.com/advisories/cross-site-scripting-xss-vulnerability-in-kohana/
5018 1 2017-08-10T16:29Z CVE-2016-5018 Apache Tomcat の複数の脆弱性に対するアップデート http://packetstormsecurity.com/files/155873/Tomcat-9.0.0.M1-Sandbox-Escape.html
5018 2 2017-08-10T16:29Z CVE-2016-5018 Apache Tomcat の複数の脆弱性に対するアップデート http://packetstormsecurity.com/files/155873/Tomcat-9.0.0.M1-Sandbox-Escape.html
10401 1 2017-07-25T18:29Z CVE-2016-10401 ZyXEL PK5001Z デバイスにおける証明書・パスワードの管理に関する脆弱性 https://forum.openwrt.org/viewtopic.php?id=62266
10401 2 2017-07-25T18:29Z CVE-2016-10401 ZyXEL PK5001Z デバイスにおける証明書・パスワードの管理に関する脆弱性 https://forum.openwrt.org/viewtopic.php?id=62266
10400 1 2017-07-22T17:29Z CVE-2016-10400 ATutor におけるディレクトリトラバーサルの脆弱性 https://www.htbridge.com/advisory/HTB23297
10400 2 2017-07-22T17:29Z CVE-2016-10400 ATutor におけるディレクトリトラバーサルの脆弱性 https://www.htbridge.com/advisory/HTB23297
6201 1 2017-07-03T16:29Z CVE-2016-6201 Ektron Content Management System におけるクロスサイトスクリプティングの脆弱性 http://packetstormsecurity.com/files/143014/Ektron-CMS-9.10SP1-Cross-Site-Scripting.html
6201 2 2017-07-03T16:29Z CVE-2016-6201 Ektron Content Management System におけるクロスサイトスクリプティングの脆弱性 http://packetstormsecurity.com/files/143014/Ektron-CMS-9.10SP1-Cross-Site-Scripting.html
7836 1 2017-06-09T16:29Z CVE-2016-7836 SKYSEA Client View において任意のコードが実行可能な脆弱性 https://www.skygroup.jp/security-info/170308.html
7836 2 2017-06-09T16:29Z CVE-2016-7836 SKYSEA Client View において任意のコードが実行可能な脆弱性 https://www.skygroup.jp/security-info/170308.html
5648 1 2017-06-08T20:29Z CVE-2016-5648 Acer Portal app for Android における SSL サーバ証明書の検証不備の脆弱性 http://packetstormsecurity.com/files/137775/Acer-Portal-Android-Application-3.9.3.2006-Man-In-The-Middle.html
4473 1 2017-06-08T20:29Z CVE-2016-4473 PHP の /ext/phar/phar_object.c における任意のコードを実行される脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1347772
5648 2 2017-06-08T20:29Z CVE-2016-5648 Acer Portal app for Android における SSL サーバ証明書の検証不備の脆弱性 http://packetstormsecurity.com/files/137775/Acer-Portal-Android-Application-3.9.3.2006-Man-In-The-Middle.html
4473 2 2017-06-08T20:29Z CVE-2016-4473 PHP の /ext/phar/phar_object.c における任意のコードを実行される脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1347772
3095 1 2017-06-08T19:29Z CVE-2016-3095 Pulp の server/bin/pulp-gen-ca-certificate における生成された秘密鍵を読まれる脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1322706
3095 2 2017-06-08T19:29Z CVE-2016-3095 Pulp の server/bin/pulp-gen-ca-certificate における生成された秘密鍵を読まれる脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1322706
9961 1 2017-06-06T18:29Z CVE-2016-9961 game-music-emu における数値処理に関する脆弱性 https://scarybeastsecurity.blogspot.cz/2016/12/redux-compromising-linux-using-snes.html
9960 1 2017-06-06T18:29Z CVE-2016-9960 game-music-emu におけるサービス運用妨害 (DoS) の脆弱性 https://scarybeastsecurity.blogspot.in/2016/12/redux-compromising-linux-using-snes.html
5004 1 2017-06-06T18:29Z CVE-2016-5004 Apache Archiva で使用される ws-xmlrpc の Content-Encoding HTTP ヘッダ機能におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/0ang3el/unsafe-xmlrpc
9961 2 2017-06-06T18:29Z CVE-2016-9961 game-music-emu における数値処理に関する脆弱性 https://scarybeastsecurity.blogspot.cz/2016/12/redux-compromising-linux-using-snes.html
9960 2 2017-06-06T18:29Z CVE-2016-9960 game-music-emu におけるサービス運用妨害 (DoS) の脆弱性 https://scarybeastsecurity.blogspot.in/2016/12/redux-compromising-linux-using-snes.html
5004 2 2017-06-06T18:29Z CVE-2016-5004 Apache Archiva で使用される ws-xmlrpc の Content-Encoding HTTP ヘッダ機能におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/0ang3el/unsafe-xmlrpc
10379 1 2017-05-29T19:29Z CVE-2016-10379 Joomla! 用 VirtueMart com_virtuemart コンポーネントにおける SQL インジェクションの脆弱性 http://code610.blogspot.com/2016/08/testing-sql-injections-in-comvirtuemart.html
10378 1 2017-05-29T19:29Z CVE-2016-10378 e107 における SQL インジェクションの脆弱性 http://code610.blogspot.com/2016/09/sql-injection-in-latest-e107-cms.html
10379 2 2017-05-29T19:29Z CVE-2016-10379 Joomla! 用 VirtueMart com_virtuemart コンポーネントにおける SQL インジェクションの脆弱性 http://code610.blogspot.com/2016/08/testing-sql-injections-in-comvirtuemart.html
10378 2 2017-05-29T19:29Z CVE-2016-10378 e107 における SQL インジェクションの脆弱性 http://code610.blogspot.com/2016/09/sql-injection-in-latest-e107-cms.html
6256 1 2017-05-26T01:29Z CVE-2016-6256 Android 用 SAP Business One における XML 外部エンティティ攻撃を実行される脆弱性 http://packetstormsecurity.com/files/142597/SAP-Business-One-For-Android-1.2.3-XML-Injection.html
6256 2 2017-05-26T01:29Z CVE-2016-6256 Android 用 SAP Business One における XML 外部エンティティ攻撃を実行される脆弱性 http://packetstormsecurity.com/files/142597/SAP-Business-One-For-Android-1.2.3-XML-Injection.html
6256 3 2017-05-26T01:29Z CVE-2016-6256 Android 用 SAP Business One における XML 外部エンティティ攻撃を実行される脆弱性 https://www.exploit-db.com/exploits/42036/
6256 4 2017-05-26T01:29Z CVE-2016-6256 Android 用 SAP Business One における XML 外部エンティティ攻撃を実行される脆弱性 https://www.exploit-db.com/exploits/42036/
5735 1 2017-05-23T04:29Z CVE-2016-5735 pngquant の rwpng.c の rwpng_read_image24_libpng 関数における整数オーバーフローの脆弱性 http://sf.snu.ac.kr/gil.hur/publications/shovel.pdf
10073 1 2017-05-23T04:29Z CVE-2016-10073 Vanilla Forums の library/core/class.email.php の from メソッドにおける送信済メッセージの電子メールのドメインを偽装される脆弱性 http://packetstormsecurity.com/files/142486/Vanilla-Forums-2.3-Remote-Code-Execution.html
5735 2 2017-05-23T04:29Z CVE-2016-5735 pngquant の rwpng.c の rwpng_read_image24_libpng 関数における整数オーバーフローの脆弱性 http://sf.snu.ac.kr/gil.hur/publications/shovel.pdf
10073 2 2017-05-23T04:29Z CVE-2016-10073 Vanilla Forums の library/core/class.email.php の from メソッドにおける送信済メッセージの電子メールのドメインを偽装される脆弱性 http://packetstormsecurity.com/files/142486/Vanilla-Forums-2.3-Remote-Code-Execution.html
10073 3 2017-05-23T04:29Z CVE-2016-10073 Vanilla Forums の library/core/class.email.php の from メソッドにおける送信済メッセージの電子メールのドメインを偽装される脆弱性 https://exploitbox.io/vuln/Vanilla-Forums-Exploit-Host-Header-Injection-CVE-2016-10073-0day.html
10073 4 2017-05-23T04:29Z CVE-2016-10073 Vanilla Forums の library/core/class.email.php の from メソッドにおける送信済メッセージの電子メールのドメインを偽装される脆弱性 https://exploitbox.io/vuln/Vanilla-Forums-Exploit-Host-Header-Injection-CVE-2016-10073-0day.html
10073 5 2017-05-23T04:29Z CVE-2016-10073 Vanilla Forums の library/core/class.email.php の from メソッドにおける送信済メッセージの電子メールのドメインを偽装される脆弱性 https://www.exploit-db.com/exploits/41996/
10073 6 2017-05-23T04:29Z CVE-2016-10073 Vanilla Forums の library/core/class.email.php の from メソッドにおける送信済メッセージの電子メールのドメインを偽装される脆弱性 https://www.exploit-db.com/exploits/41996/
3403 1 2017-05-17T14:29Z CVE-2016-3403 Zimbra Collaboration Suite の管理コンソールにおけるクロスサイトリクエストフォージェリの脆弱性 http://seclists.org/fulldisclosure/2017/Jan/30
3403 2 2017-05-17T14:29Z CVE-2016-3403 Zimbra Collaboration Suite の管理コンソールにおけるクロスサイトリクエストフォージェリの脆弱性 http://seclists.org/fulldisclosure/2017/Jan/30
3403 3 2017-05-17T14:29Z CVE-2016-3403 Zimbra Collaboration Suite の管理コンソールにおけるクロスサイトリクエストフォージェリの脆弱性 https://sysdream.com/news/lab/2017-01-12-cve-2016-3403-multiple-csrf-in-zimbra-administration-interface/
3403 4 2017-05-17T14:29Z CVE-2016-3403 Zimbra Collaboration Suite の管理コンソールにおけるクロスサイトリクエストフォージェリの脆弱性 https://sysdream.com/news/lab/2017-01-12-cve-2016-3403-multiple-csrf-in-zimbra-administration-interface/
10372 1 2017-05-16T14:29Z CVE-2016-10372 Eir D1000 モデムにおける認可・権限・アクセス制御に関する脆弱性 https://devicereversing.wordpress.com/2016/11/07/eirs-d1000-modem-is-wide-open-to-being-hacked/
10372 2 2017-05-16T14:29Z CVE-2016-10372 Eir D1000 モデムにおける認可・権限・アクセス制御に関する脆弱性 https://devicereversing.wordpress.com/2016/11/07/eirs-d1000-modem-is-wide-open-to-being-hacked/
10372 3 2017-05-16T14:29Z CVE-2016-10372 Eir D1000 モデムにおける認可・権限・アクセス制御に関する脆弱性 https://isc.sans.edu/forums/diary/TR069+NewNTPServer+Exploits+What+we+know+so+far/21763/
10372 4 2017-05-16T14:29Z CVE-2016-10372 Eir D1000 モデムにおける認可・権限・アクセス制御に関する脆弱性 https://isc.sans.edu/forums/diary/TR069+NewNTPServer+Exploits+What+we+know+so+far/21763/
10331 1 2017-05-12T20:29Z CVE-2016-10331 Synology Photo Station の download.php におけるディレクトリトラバーサルの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-06-Local-File-Inclusion
10330 1 2017-05-12T20:29Z CVE-2016-10330 Synology Photo Station で使用される SUID プログラムの synophoto_dsm_user におけるディレクトリトラバーサルの脆弱性 http://seclists.org/oss-sec/2016/q1/236
10329 1 2017-05-12T20:29Z CVE-2016-10329 Synology Photo Station の login.php におけるコマンドインジェクションの脆弱性 http://seclists.org/oss-sec/2016/q1/236
10331 2 2017-05-12T20:29Z CVE-2016-10331 Synology Photo Station の download.php におけるディレクトリトラバーサルの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-06-Local-File-Inclusion
10330 2 2017-05-12T20:29Z CVE-2016-10330 Synology Photo Station で使用される SUID プログラムの synophoto_dsm_user におけるディレクトリトラバーサルの脆弱性 http://seclists.org/oss-sec/2016/q1/236
10329 2 2017-05-12T20:29Z CVE-2016-10329 Synology Photo Station の login.php におけるコマンドインジェクションの脆弱性 http://seclists.org/oss-sec/2016/q1/236
10330 3 2017-05-12T20:29Z CVE-2016-10330 Synology Photo Station で使用される SUID プログラムの synophoto_dsm_user におけるディレクトリトラバーサルの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-03-Read-Write-Arbitrary-Files
10329 3 2017-05-12T20:29Z CVE-2016-10329 Synology Photo Station の login.php におけるコマンドインジェクションの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-01-PhotoStation-Login-without-password
10330 4 2017-05-12T20:29Z CVE-2016-10330 Synology Photo Station で使用される SUID プログラムの synophoto_dsm_user におけるディレクトリトラバーサルの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-03-Read-Write-Arbitrary-Files
10329 4 2017-05-12T20:29Z CVE-2016-10329 Synology Photo Station の login.php におけるコマンドインジェクションの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-01-PhotoStation-Login-without-password
10330 5 2017-05-12T20:29Z CVE-2016-10330 Synology Photo Station で使用される SUID プログラムの synophoto_dsm_user におけるディレクトリトラバーサルの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-04-Privilege-Escalation
10329 5 2017-05-12T20:29Z CVE-2016-10329 Synology Photo Station の login.php におけるコマンドインジェクションの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-02-PhotoStation-Remote-Code-Execution
10330 6 2017-05-12T20:29Z CVE-2016-10330 Synology Photo Station で使用される SUID プログラムの synophoto_dsm_user におけるディレクトリトラバーサルの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-04-Privilege-Escalation
10329 6 2017-05-12T20:29Z CVE-2016-10329 Synology Photo Station の login.php におけるコマンドインジェクションの脆弱性 https://bamboofox.github.io/2017/03/20/Synology-Bug-Bounty-2016/#Vul-02-PhotoStation-Remote-Code-Execution
10370 1 2017-05-11T18:29Z CVE-2016-10370 OnePlus 3T などのデバイスにおけるアクセス制御に関する脆弱性 https://alephsecurity.com/vulns/aleph-2017022
10370 2 2017-05-11T18:29Z CVE-2016-10370 OnePlus 3T などのデバイスにおけるアクセス制御に関する脆弱性 https://alephsecurity.com/vulns/aleph-2017022
10368 1 2017-05-03T10:59Z CVE-2016-10368 Opsview Monitor Pro におけるオープンリダイレクトの脆弱性 https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-016/?fid=8341
10367 1 2017-05-03T10:59Z CVE-2016-10367 Opsview Monitor Pro におけるパストラバーサルの脆弱性 https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-016/?fid=8341
10368 2 2017-05-03T10:59Z CVE-2016-10368 Opsview Monitor Pro におけるオープンリダイレクトの脆弱性 https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-016/?fid=8341
10367 2 2017-05-03T10:59Z CVE-2016-10367 Opsview Monitor Pro におけるパストラバーサルの脆弱性 https://www.trustwave.com/Resources/Security-Advisories/Advisories/TWSL2016-016/?fid=8341
10243 1 2017-05-02T14:59Z CVE-2016-10243 TeX Live における任意のコマンドを実行される脆弱性 https://scumjr.github.io/2016/11/28/pwning-coworkers-thanks-to-latex/
10243 2 2017-05-02T14:59Z CVE-2016-10243 TeX Live における任意のコマンドを実行される脆弱性 https://scumjr.github.io/2016/11/28/pwning-coworkers-thanks-to-latex/
8593 1 2017-04-28T19:59Z CVE-2016-8593 Trend Micro Threat Discovery Appliance の upload.cgi におけるディレクトリトラバーサルの脆弱性 http://packetstormsecurity.com/files/142215/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-upload.cgi-Remote-Code-Execution.html
8592 1 2017-04-28T19:59Z CVE-2016-8592 Trend Micro Threat Discovery Appliance の log_query_system.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142216/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-log_query_system.cgi-Remote-Code-Execution.html
8591 1 2017-04-28T19:59Z CVE-2016-8591 Trend Micro Threat Discovery Appliance の log_query.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142217/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-log_query.cgi-Remote-Code-Execution.html
8590 1 2017-04-28T19:59Z CVE-2016-8590 Trend Micro Threat Discovery Appliance の log_query_dlp.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142218/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-log_query_dlp.cgi-Remote-Code-Execution.html
8589 1 2017-04-28T19:59Z CVE-2016-8589 Trend Micro Threat Discovery Appliance の log_query_dae.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142219/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-log_query_dae.cgi-Remote-Code-Execution.html
8588 1 2017-04-28T19:59Z CVE-2016-8588 Trend Micro Threat Discovery Appliance の hotfix_upload.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142220/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-hotfix_upload.cgi-Remote-Code-Execution.html
8587 1 2017-04-28T19:59Z CVE-2016-8587 Trend Micro Threat Discovery Appliance の dlp_policy_upload.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142221/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-dlp_policy_upload.cgi-Remote-Code-Execution.html
8586 1 2017-04-28T19:59Z CVE-2016-8586 Trend Micro Threat Discovery Appliance の detected_potential_files.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142222/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-detected_potential_files.cgi-Remote-Code-Execution.html
8585 1 2017-04-28T19:59Z CVE-2016-8585 Trend Micro Threat Discovery Appliance の admin_sys_time.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142223/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-admin_sys_time.cgi-Remote-Code-Execution.html
8584 1 2017-04-28T19:59Z CVE-2016-8584 Trend Micro Threat Discovery Appliance における認証を回避される脆弱性 http://packetstormsecurity.com/files/142227/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-Session-Generation-Authentication-Bypass.html
8593 2 2017-04-28T19:59Z CVE-2016-8593 Trend Micro Threat Discovery Appliance の upload.cgi におけるディレクトリトラバーサルの脆弱性 http://packetstormsecurity.com/files/142215/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-upload.cgi-Remote-Code-Execution.html
8592 2 2017-04-28T19:59Z CVE-2016-8592 Trend Micro Threat Discovery Appliance の log_query_system.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142216/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-log_query_system.cgi-Remote-Code-Execution.html
8591 2 2017-04-28T19:59Z CVE-2016-8591 Trend Micro Threat Discovery Appliance の log_query.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142217/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-log_query.cgi-Remote-Code-Execution.html
8590 2 2017-04-28T19:59Z CVE-2016-8590 Trend Micro Threat Discovery Appliance の log_query_dlp.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142218/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-log_query_dlp.cgi-Remote-Code-Execution.html
8589 2 2017-04-28T19:59Z CVE-2016-8589 Trend Micro Threat Discovery Appliance の log_query_dae.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142219/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-log_query_dae.cgi-Remote-Code-Execution.html
8588 2 2017-04-28T19:59Z CVE-2016-8588 Trend Micro Threat Discovery Appliance の hotfix_upload.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142220/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-hotfix_upload.cgi-Remote-Code-Execution.html
8587 2 2017-04-28T19:59Z CVE-2016-8587 Trend Micro Threat Discovery Appliance の dlp_policy_upload.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142221/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-dlp_policy_upload.cgi-Remote-Code-Execution.html
8586 2 2017-04-28T19:59Z CVE-2016-8586 Trend Micro Threat Discovery Appliance の detected_potential_files.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142222/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-detected_potential_files.cgi-Remote-Code-Execution.html
8585 2 2017-04-28T19:59Z CVE-2016-8585 Trend Micro Threat Discovery Appliance の admin_sys_time.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142223/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-admin_sys_time.cgi-Remote-Code-Execution.html
8584 2 2017-04-28T19:59Z CVE-2016-8584 Trend Micro Threat Discovery Appliance における認証を回避される脆弱性 http://packetstormsecurity.com/files/142227/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-Session-Generation-Authentication-Bypass.html
8585 3 2017-04-28T19:59Z CVE-2016-8585 Trend Micro Threat Discovery Appliance の admin_sys_time.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142224/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-admin_sys_time.cgi-Remote-Code-Execution.html
8585 4 2017-04-28T19:59Z CVE-2016-8585 Trend Micro Threat Discovery Appliance の admin_sys_time.cgi における任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/142224/Trend-Micro-Threat-Discovery-Appliance-2.6.1062r1-admin_sys_time.cgi-Remote-Code-Execution.html
4313 1 2017-04-24T18:59Z CVE-2016-4313 eXtplorer の unzip/extract feature におけるディレクトリトラバーサルの脆弱性 http://hyp3rlinx.altervista.org/advisories/EXTPLORER-ARCHIVE-PATH-TRAVERSAL.txt
4313 2 2017-04-24T18:59Z CVE-2016-4313 eXtplorer の unzip/extract feature におけるディレクトリトラバーサルの脆弱性 http://hyp3rlinx.altervista.org/advisories/EXTPLORER-ARCHIVE-PATH-TRAVERSAL.txt
4313 3 2017-04-24T18:59Z CVE-2016-4313 eXtplorer の unzip/extract feature におけるディレクトリトラバーサルの脆弱性 http://packetstormsecurity.com/files/137031/eXtplorer-2.1.9-Path-Traversal.html
4313 4 2017-04-24T18:59Z CVE-2016-4313 eXtplorer の unzip/extract feature におけるディレクトリトラバーサルの脆弱性 http://packetstormsecurity.com/files/137031/eXtplorer-2.1.9-Path-Traversal.html
4313 5 2017-04-24T18:59Z CVE-2016-4313 eXtplorer の unzip/extract feature におけるディレクトリトラバーサルの脆弱性 https://www.exploit-db.com/exploits/39816/
4313 6 2017-04-24T18:59Z CVE-2016-4313 eXtplorer の unzip/extract feature におけるディレクトリトラバーサルの脆弱性 https://www.exploit-db.com/exploits/39816/
5399 1 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 http://packetstormsecurity.com/files/137998/PHP-7.0.8-5.6.23-5.5.37-bzread-OOB-Write.html
3109 1 2017-04-21T20:59Z CVE-2016-3109 Shopware の backend/Login/load/ スクリプトにおける任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/136781/Shopware-Remote-Code-Execution.html
2347 1 2017-04-21T20:59Z CVE-2016-2347 Lhasa の lib/lha_file_header.c の decode_level3_header 関数における整数アンダーフローの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0095/
1561 1 2017-04-21T20:59Z CVE-2016-1561 ExaGrid アプライアンスのファームウェアにおける SSH アクセス権を取得される脆弱性 http://packetstormsecurity.com/files/136634/ExaGrid-Known-SSH-Key-Default-Password.html
1560 1 2017-04-21T20:59Z CVE-2016-1560 ExaGrid アプライアンスのファームウェアにおける管理アクセス権を取得される脆弱性 http://packetstormsecurity.com/files/136634/ExaGrid-Known-SSH-Key-Default-Password.html
5399 2 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 http://packetstormsecurity.com/files/137998/PHP-7.0.8-5.6.23-5.5.37-bzread-OOB-Write.html
3109 2 2017-04-21T20:59Z CVE-2016-3109 Shopware の backend/Login/load/ スクリプトにおける任意のコードを実行される脆弱性 http://packetstormsecurity.com/files/136781/Shopware-Remote-Code-Execution.html
2347 2 2017-04-21T20:59Z CVE-2016-2347 Lhasa の lib/lha_file_header.c の decode_level3_header 関数における整数アンダーフローの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0095/
1561 2 2017-04-21T20:59Z CVE-2016-1561 ExaGrid アプライアンスのファームウェアにおける SSH アクセス権を取得される脆弱性 http://packetstormsecurity.com/files/136634/ExaGrid-Known-SSH-Key-Default-Password.html
1560 2 2017-04-21T20:59Z CVE-2016-1560 ExaGrid アプライアンスのファームウェアにおける管理アクセス権を取得される脆弱性 http://packetstormsecurity.com/files/136634/ExaGrid-Known-SSH-Key-Default-Password.html
5399 3 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 http://seclists.org/fulldisclosure/2016/Jul/72
1561 3 2017-04-21T20:59Z CVE-2016-1561 ExaGrid アプライアンスのファームウェアにおける SSH アクセス権を取得される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/04/07/r7-2016-04-exagrid-backdoor-ssh-keys-and-hardcoded-credentials
1560 3 2017-04-21T20:59Z CVE-2016-1560 ExaGrid アプライアンスのファームウェアにおける管理アクセス権を取得される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/04/07/r7-2016-04-exagrid-backdoor-ssh-keys-and-hardcoded-credentials
5399 4 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 http://seclists.org/fulldisclosure/2016/Jul/72
1561 4 2017-04-21T20:59Z CVE-2016-1561 ExaGrid アプライアンスのファームウェアにおける SSH アクセス権を取得される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/04/07/r7-2016-04-exagrid-backdoor-ssh-keys-and-hardcoded-credentials
1560 4 2017-04-21T20:59Z CVE-2016-1560 ExaGrid アプライアンスのファームウェアにおける管理アクセス権を取得される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/04/07/r7-2016-04-exagrid-backdoor-ssh-keys-and-hardcoded-credentials
5399 5 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/07/21/1
5399 6 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/07/21/1
5399 7 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.php.net/bug.php?id=72613
5399 8 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.php.net/bug.php?id=72613
5399 9 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/40155/
5399 10 2017-04-21T20:59Z CVE-2016-5399 PHP の ext/bz2/bz2.c の bzread 関数におけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/40155/
1555 1 2017-04-21T15:59Z CVE-2016-1555 複数の Netgear 製品における任意のコマンドを実行される脆弱性 https://www.exploit-db.com/exploits/45909/
1555 2 2017-04-21T15:59Z CVE-2016-1555 複数の Netgear 製品における任意のコマンドを実行される脆弱性 https://www.exploit-db.com/exploits/45909/
4075 1 2017-04-21T02:59Z CVE-2016-4075 Opera Mini および Opera Stable における表示された URL を偽造される脆弱性 http://abhikafle.com.np/opera-url-spoofing-poc/
4075 2 2017-04-21T02:59Z CVE-2016-4075 Opera Mini および Opera Stable における表示された URL を偽造される脆弱性 http://abhikafle.com.np/opera-url-spoofing-poc/
8721 1 2017-04-20T18:59Z CVE-2016-8721 Moxa AWK-3131A Wireless Access Points のファームウェアにおける OS コマンドインジェクションの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0235/
8721 2 2017-04-20T18:59Z CVE-2016-8721 Moxa AWK-3131A Wireless Access Points のファームウェアにおける OS コマンドインジェクションの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0235/
6338 1 2017-04-20T17:59Z CVE-2016-6338 複数の Red Hat Enterprise Virtualization Manager 製品における webadmin セッションのタイムアウト制限を回避される脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1369285
4293 1 2017-04-20T17:59Z CVE-2016-4293 Hancom Office 2014 の CBookBase::SetDefTableStyle および CBookBase::SetDefPivotStyle 関数におけるヒープベースのバッファオーバーフローの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0148/
6338 2 2017-04-20T17:59Z CVE-2016-6338 複数の Red Hat Enterprise Virtualization Manager 製品における webadmin セッションのタイムアウト制限を回避される脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1369285
4293 2 2017-04-20T17:59Z CVE-2016-4293 Hancom Office 2014 の CBookBase::SetDefTableStyle および CBookBase::SetDefPivotStyle 関数におけるヒープベースのバッファオーバーフローの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0148/
6299 1 2017-04-14T18:59Z CVE-2016-6299 mock の scm プラグインにおける chroot 保護メカニズムを回避される脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1375490
5312 1 2017-04-14T18:59Z CVE-2016-5312 Symantec Messaging Gateway の charting コンポーネントにおけるディレクトリトラバーサルの脆弱性 http://packetstormsecurity.com/files/138891/Symantec-Messaging-Gateway-10.6.1-Directory-Traversal.html
5310 1 2017-04-14T18:59Z CVE-2016-5310 複数の Symantec 製品の AntiVirus Decomposer エンジンの RAR ファイルパーサコンポーネントにおけるサービス運用妨害 (DoS) の脆弱性 https://bugs.chromium.org/p/project-zero/issues/detail?id=867
5309 1 2017-04-14T18:59Z CVE-2016-5309 複数の Symantec 製品の AntiVirus Decomposer エンジンの RAR ファイルパーサコンポーネントにおけるサービス運用妨害 (DoS) の脆弱性 https://bugs.chromium.org/p/project-zero/issues/detail?id=867
1713 1 2017-04-14T18:59Z CVE-2016-1713 Vtiger CRM の modules/Settings/Vtiger/actions/CompanyDetailsSave.php における任意のコードを実行される脆弱性 http://b.fl7.de/2016/01/vtiger-crm-6.4-auth-rce.html
0727 1 2017-04-14T18:59Z CVE-2016-0727 Ubuntu 上で稼動する ntp パッケージの crontab スクリプトにおける任意のファイルに書き込まれる脆弱性 http://packetstormsecurity.com/files/141913/NTP-Privilege-Escalation.html
6299 2 2017-04-14T18:59Z CVE-2016-6299 mock の scm プラグインにおける chroot 保護メカニズムを回避される脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1375490
5312 2 2017-04-14T18:59Z CVE-2016-5312 Symantec Messaging Gateway の charting コンポーネントにおけるディレクトリトラバーサルの脆弱性 http://packetstormsecurity.com/files/138891/Symantec-Messaging-Gateway-10.6.1-Directory-Traversal.html
5310 2 2017-04-14T18:59Z CVE-2016-5310 複数の Symantec 製品の AntiVirus Decomposer エンジンの RAR ファイルパーサコンポーネントにおけるサービス運用妨害 (DoS) の脆弱性 https://bugs.chromium.org/p/project-zero/issues/detail?id=867
5309 2 2017-04-14T18:59Z CVE-2016-5309 複数の Symantec 製品の AntiVirus Decomposer エンジンの RAR ファイルパーサコンポーネントにおけるサービス運用妨害 (DoS) の脆弱性 https://bugs.chromium.org/p/project-zero/issues/detail?id=867
1713 2 2017-04-14T18:59Z CVE-2016-1713 Vtiger CRM の modules/Settings/Vtiger/actions/CompanyDetailsSave.php における任意のコードを実行される脆弱性 http://b.fl7.de/2016/01/vtiger-crm-6.4-auth-rce.html
0727 2 2017-04-14T18:59Z CVE-2016-0727 Ubuntu 上で稼動する ntp パッケージの crontab スクリプトにおける任意のファイルに書き込まれる脆弱性 http://packetstormsecurity.com/files/141913/NTP-Privilege-Escalation.html
5312 3 2017-04-14T18:59Z CVE-2016-5312 Symantec Messaging Gateway の charting コンポーネントにおけるディレクトリトラバーサルの脆弱性 http://seclists.org/fulldisclosure/2016/Sep/71
5310 3 2017-04-14T18:59Z CVE-2016-5310 複数の Symantec 製品の AntiVirus Decomposer エンジンの RAR ファイルパーサコンポーネントにおけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/40405/
5309 3 2017-04-14T18:59Z CVE-2016-5309 複数の Symantec 製品の AntiVirus Decomposer エンジンの RAR ファイルパーサコンポーネントにおけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/40405/
5312 4 2017-04-14T18:59Z CVE-2016-5312 Symantec Messaging Gateway の charting コンポーネントにおけるディレクトリトラバーサルの脆弱性 http://seclists.org/fulldisclosure/2016/Sep/71
5310 4 2017-04-14T18:59Z CVE-2016-5310 複数の Symantec 製品の AntiVirus Decomposer エンジンの RAR ファイルパーサコンポーネントにおけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/40405/
5309 4 2017-04-14T18:59Z CVE-2016-5309 複数の Symantec 製品の AntiVirus Decomposer エンジンの RAR ファイルパーサコンポーネントにおけるサービス運用妨害 (DoS) の脆弱性 https://www.exploit-db.com/exploits/40405/
5312 5 2017-04-14T18:59Z CVE-2016-5312 Symantec Messaging Gateway の charting コンポーネントにおけるディレクトリトラバーサルの脆弱性 https://www.exploit-db.com/exploits/40437/
5312 6 2017-04-14T18:59Z CVE-2016-5312 Symantec Messaging Gateway の charting コンポーネントにおけるディレクトリトラバーサルの脆弱性 https://www.exploit-db.com/exploits/40437/
8727 1 2017-04-13T19:59Z CVE-2016-8727 Moxa AWK-3131A Wireless AP における情報漏えいに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0241/
8726 1 2017-04-13T19:59Z CVE-2016-8726 Moxa AWK-3131A Wireless AP における NULL ポインタデリファレンスに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0240/
8725 1 2017-04-13T19:59Z CVE-2016-8725 Moxa AWK-3131A Wireless AP における情報漏えいに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0239/
8724 1 2017-04-13T19:59Z CVE-2016-8724 Moxa AWK-3131A Wireless AP における情報漏えいに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0238/
8723 1 2017-04-13T19:59Z CVE-2016-8723 Moxa AWK-3131A Wireless AP における NULL ポインタデリファレンスに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0237/
8722 1 2017-04-13T19:59Z CVE-2016-8722 Moxa AWK-3131AP における情報漏えいに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0236/
8720 1 2017-04-13T19:59Z CVE-2016-8720 Moxa AWK-3131A Wireless AP におけるインジェクションに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0234/
8712 1 2017-04-13T19:59Z CVE-2016-8712 Moxa AWK-3131A Wireless AP におけるセッション期限に関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0225/
8727 2 2017-04-13T19:59Z CVE-2016-8727 Moxa AWK-3131A Wireless AP における情報漏えいに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0241/
8726 2 2017-04-13T19:59Z CVE-2016-8726 Moxa AWK-3131A Wireless AP における NULL ポインタデリファレンスに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0240/
8725 2 2017-04-13T19:59Z CVE-2016-8725 Moxa AWK-3131A Wireless AP における情報漏えいに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0239/
8724 2 2017-04-13T19:59Z CVE-2016-8724 Moxa AWK-3131A Wireless AP における情報漏えいに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0238/
8723 2 2017-04-13T19:59Z CVE-2016-8723 Moxa AWK-3131A Wireless AP における NULL ポインタデリファレンスに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0237/
8722 2 2017-04-13T19:59Z CVE-2016-8722 Moxa AWK-3131AP における情報漏えいに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0236/
8720 2 2017-04-13T19:59Z CVE-2016-8720 Moxa AWK-3131A Wireless AP におけるインジェクションに関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0234/
8712 2 2017-04-13T19:59Z CVE-2016-8712 Moxa AWK-3131A Wireless AP におけるセッション期限に関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0225/
4032 1 2017-04-13T16:59Z CVE-2016-4032 複数の Samsung デバイスにおける Android の設定を変更される脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0004
4031 1 2017-04-13T16:59Z CVE-2016-4031 複数の Samsung デバイスにおける AT コマンドを送信される脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0004
4030 1 2017-04-13T16:59Z CVE-2016-4030 複数の Samsung デバイスにおけるアクセス制御に関する脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0004
2567 1 2017-04-13T16:59Z CVE-2016-2567 Samsung SM-N9005 および SM-G920F デバイス上で稼動する Android 用 Samsung カーネルの secfilter における URL フィルタリングを回避される脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0003
2565 1 2017-04-13T16:59Z CVE-2016-2565 Samsung SM-G920F デバイス上で稼動する SecEmailSync における送信済み電子メールメッセージを読まれる脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0002
2036 1 2017-04-13T16:59Z CVE-2016-2036 Samsung SM-N9005 および SM-G920F デバイス上で稼動する Android 用 Samsung カーネルにおける NULL ポインタデリファレンスを誘発される脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0001
4032 2 2017-04-13T16:59Z CVE-2016-4032 複数の Samsung デバイスにおける Android の設定を変更される脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0004
4031 2 2017-04-13T16:59Z CVE-2016-4031 複数の Samsung デバイスにおける AT コマンドを送信される脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0004
4030 2 2017-04-13T16:59Z CVE-2016-4030 複数の Samsung デバイスにおけるアクセス制御に関する脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0004
2567 2 2017-04-13T16:59Z CVE-2016-2567 Samsung SM-N9005 および SM-G920F デバイス上で稼動する Android 用 Samsung カーネルの secfilter における URL フィルタリングを回避される脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0003
2565 2 2017-04-13T16:59Z CVE-2016-2565 Samsung SM-G920F デバイス上で稼動する SecEmailSync における送信済み電子メールメッセージを読まれる脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0002
2036 2 2017-04-13T16:59Z CVE-2016-2036 Samsung SM-N9005 および SM-G920F デバイス上で稼動する Android 用 Samsung カーネルにおける NULL ポインタデリファレンスを誘発される脆弱性 https://github.com/ud2/advisories/tree/master/android/samsung/nocve-2016-0001
2555 1 2017-04-13T14:59Z CVE-2016-2555 ATutor の include/lib/mysql_connect.inc.php における SQL インジェクションの脆弱性 http://sourceincite.com/research/src-2016-08/
1915 1 2017-04-13T14:59Z CVE-2016-1915 BlackBerry Enterprise Server Self-Service におけるクロスサイトスクリプティングの脆弱性 http://security-assessment.com/files/documents/advisory/Blackberry%20BES12%20Self-Service%20Multiple%20Vulnerabilities.pdf
1914 1 2017-04-13T14:59Z CVE-2016-1914 BlackBerry Enterprise Server Self-Service の com.rim.mdm.ui.server.ImageServlet サーブレットにおける SQL インジェクションの脆弱性 http://security-assessment.com/files/documents/advisory/Blackberry%20BES12%20Self-Service%20Multiple%20Vulnerabilities.pdf
2555 2 2017-04-13T14:59Z CVE-2016-2555 ATutor の include/lib/mysql_connect.inc.php における SQL インジェクションの脆弱性 http://sourceincite.com/research/src-2016-08/
1915 2 2017-04-13T14:59Z CVE-2016-1915 BlackBerry Enterprise Server Self-Service におけるクロスサイトスクリプティングの脆弱性 http://security-assessment.com/files/documents/advisory/Blackberry%20BES12%20Self-Service%20Multiple%20Vulnerabilities.pdf
1914 2 2017-04-13T14:59Z CVE-2016-1914 BlackBerry Enterprise Server Self-Service の com.rim.mdm.ui.server.ImageServlet サーブレットにおける SQL インジェクションの脆弱性 http://security-assessment.com/files/documents/advisory/Blackberry%20BES12%20Self-Service%20Multiple%20Vulnerabilities.pdf
5313 1 2017-04-12T22:59Z CVE-2016-5313 Symantec Web Gateway における任意の OS コマンドを実行される脆弱性 http://packetstormsecurity.com/files/139006/Symantec-Web-Gateway-5.2.2-OS-Command-Injection.html
4337 1 2017-04-12T22:59Z CVE-2016-4337 Ktools.net Photostore の mgr.login.php ファイルにおける SQL インジェクションの脆弱性 http://packetstormsecurity.com/files/137734/Ktools-Photostore-4.7.5-Blind-SQL-Injection.html
5313 2 2017-04-12T22:59Z CVE-2016-5313 Symantec Web Gateway における任意の OS コマンドを実行される脆弱性 http://packetstormsecurity.com/files/139006/Symantec-Web-Gateway-5.2.2-OS-Command-Injection.html
4337 2 2017-04-12T22:59Z CVE-2016-4337 Ktools.net Photostore の mgr.login.php ファイルにおける SQL インジェクションの脆弱性 http://packetstormsecurity.com/files/137734/Ktools-Photostore-4.7.5-Blind-SQL-Injection.html
4337 3 2017-04-12T22:59Z CVE-2016-4337 Ktools.net Photostore の mgr.login.php ファイルにおける SQL インジェクションの脆弱性 https://www.exploit-db.com/exploits/40046/
4337 4 2017-04-12T22:59Z CVE-2016-4337 Ktools.net Photostore の mgr.login.php ファイルにおける SQL インジェクションの脆弱性 https://www.exploit-db.com/exploits/40046/
9959 1 2017-04-12T20:59Z CVE-2016-9959 game-music-emu における境界外読み取りに関する脆弱性 https://scarybeastsecurity.blogspot.in/2016/12/redux-compromising-linux-using-snes.html
9958 1 2017-04-12T20:59Z CVE-2016-9958 game-music-emu におけるバッファエラーの脆弱性 https://scarybeastsecurity.blogspot.in/2016/12/redux-compromising-linux-using-snes.html
9957 1 2017-04-12T20:59Z CVE-2016-9957 game-music-emu におけるバッファエラーの脆弱性 https://scarybeastsecurity.blogspot.in/2016/12/redux-compromising-linux-using-snes.html
6808 1 2017-04-12T20:59Z CVE-2016-6808 Apache Tomcat JK Web Server Connector におけるバッファエラーの脆弱性 http://packetstormsecurity.com/files/139071/Apache-Tomcat-JK-ISAPI-Connector-1.2.41-Buffer-Overflow.html
9959 2 2017-04-12T20:59Z CVE-2016-9959 game-music-emu における境界外読み取りに関する脆弱性 https://scarybeastsecurity.blogspot.in/2016/12/redux-compromising-linux-using-snes.html
9958 2 2017-04-12T20:59Z CVE-2016-9958 game-music-emu におけるバッファエラーの脆弱性 https://scarybeastsecurity.blogspot.in/2016/12/redux-compromising-linux-using-snes.html
9957 2 2017-04-12T20:59Z CVE-2016-9957 game-music-emu におけるバッファエラーの脆弱性 https://scarybeastsecurity.blogspot.in/2016/12/redux-compromising-linux-using-snes.html
6808 2 2017-04-12T20:59Z CVE-2016-6808 Apache Tomcat JK Web Server Connector におけるバッファエラーの脆弱性 http://packetstormsecurity.com/files/139071/Apache-Tomcat-JK-ISAPI-Connector-1.2.41-Buffer-Overflow.html
8719 1 2017-04-12T19:59Z CVE-2016-8719 Moxa AWK-3131A Wireless AP におけるクロスサイトスクリプティングの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0233/
8718 1 2017-04-12T19:59Z CVE-2016-8718 Moxa AWK-3131A Wireless AP におけるクロスサイトリクエストフォージェリの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0232/
8716 1 2017-04-12T19:59Z CVE-2016-8716 Moxa AWK-3131A Wireless AP におけるパスワード管理機能に関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0230
8719 2 2017-04-12T19:59Z CVE-2016-8719 Moxa AWK-3131A Wireless AP におけるクロスサイトスクリプティングの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0233/
8718 2 2017-04-12T19:59Z CVE-2016-8718 Moxa AWK-3131A Wireless AP におけるクロスサイトリクエストフォージェリの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0232/
8716 2 2017-04-12T19:59Z CVE-2016-8716 Moxa AWK-3131A Wireless AP におけるパスワード管理機能に関する脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0230
7552 1 2017-04-12T10:59Z CVE-2016-7552 Trend Micro Threat Discovery Appliance におけるパストラバーサルの脆弱性 https://github.com/rapid7/metasploit-framework/pull/8216/commits/0f07875a2ddb0bfbb4e985ab074e9fc56da1dcf6
7547 1 2017-04-12T10:59Z CVE-2016-7547 Trend Micro Threat Discovery Appliance における時間とステータスに関する脆弱性 https://github.com/rapid7/metasploit-framework/pull/8216/commits/0f07875a2ddb0bfbb4e985ab074e9fc56da1dcf6
7552 2 2017-04-12T10:59Z CVE-2016-7552 Trend Micro Threat Discovery Appliance におけるパストラバーサルの脆弱性 https://github.com/rapid7/metasploit-framework/pull/8216/commits/0f07875a2ddb0bfbb4e985ab074e9fc56da1dcf6
7547 2 2017-04-12T10:59Z CVE-2016-7547 Trend Micro Threat Discovery Appliance における時間とステータスに関する脆弱性 https://github.com/rapid7/metasploit-framework/pull/8216/commits/0f07875a2ddb0bfbb4e985ab074e9fc56da1dcf6
4446 1 2017-04-11T18:59Z CVE-2016-4446 setroubleshoot の allow_execstack プラグインにおける任意のコマンドを実行される脆弱性 http://seclists.org/oss-sec/2016/q2/575
4445 1 2017-04-11T18:59Z CVE-2016-4445 setroubleshoot の sealert の fix_lookup_id 関数における任意のコマンドを実行される脆弱性 http://seclists.org/oss-sec/2016/q2/575
4444 1 2017-04-11T18:59Z CVE-2016-4444 setroubleshoot の allow_execmod プラグインにおける任意のコマンドを実行される脆弱性 http://seclists.org/oss-sec/2016/q2/575
4446 2 2017-04-11T18:59Z CVE-2016-4446 setroubleshoot の allow_execstack プラグインにおける任意のコマンドを実行される脆弱性 http://seclists.org/oss-sec/2016/q2/575
4445 2 2017-04-11T18:59Z CVE-2016-4445 setroubleshoot の sealert の fix_lookup_id 関数における任意のコマンドを実行される脆弱性 http://seclists.org/oss-sec/2016/q2/575
4444 2 2017-04-11T18:59Z CVE-2016-4444 setroubleshoot の allow_execmod プラグインにおける任意のコマンドを実行される脆弱性 http://seclists.org/oss-sec/2016/q2/575
4483 1 2017-04-11T16:59Z CVE-2016-4483 libxml2 の xmlsave.c の xmlBufAttrSerializeTxtContent 関数におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/05/03/8
4483 2 2017-04-11T16:59Z CVE-2016-4483 libxml2 の xmlsave.c の xmlBufAttrSerializeTxtContent 関数におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/05/03/8
10323 1 2017-04-10T18:59Z CVE-2016-10323 Synology Photo Station における権限を取得される脆弱性 http://seclists.org/oss-sec/2016/q1/236
10322 1 2017-04-10T18:59Z CVE-2016-10322 Synology Photo Station における任意のコマンドを実行される脆弱性 http://seclists.org/oss-sec/2016/q1/236
10323 2 2017-04-10T18:59Z CVE-2016-10323 Synology Photo Station における権限を取得される脆弱性 http://seclists.org/oss-sec/2016/q1/236
10322 2 2017-04-10T18:59Z CVE-2016-10322 Synology Photo Station における任意のコマンドを実行される脆弱性 http://seclists.org/oss-sec/2016/q1/236
5041 1 2017-04-10T16:59Z CVE-2016-5041 Libdwarf の dwarf_macro5.c におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/05/24/1
5041 2 2017-04-10T16:59Z CVE-2016-5041 Libdwarf の dwarf_macro5.c におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/05/24/1
5041 3 2017-04-10T16:59Z CVE-2016-5041 Libdwarf の dwarf_macro5.c におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/05/25/1
5041 4 2017-04-10T16:59Z CVE-2016-5041 Libdwarf の dwarf_macro5.c におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/05/25/1
5076 1 2017-04-10T03:59Z CVE-2016-5076 CloudView NMS における重要な情報を取得される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/09/07/multiple-disclosures-for-multiple-network-management-systems-part-2
5075 1 2017-04-10T03:59Z CVE-2016-5075 CloudView NMS におけるクロスサイトスクリプティングの脆弱性 https://community.rapid7.com/community/infosec/blog/2016/09/07/multiple-disclosures-for-multiple-network-management-systems-part-2
5074 1 2017-04-10T03:59Z CVE-2016-5074 CloudView NMS におけるフォーマットストリングの脆弱性 https://community.rapid7.com/community/infosec/blog/2016/09/07/multiple-disclosures-for-multiple-network-management-systems-part-2
5073 1 2017-04-10T03:59Z CVE-2016-5073 CloudView NMS におけるクロスサイトスクリプティングの脆弱性 https://community.rapid7.com/community/infosec/blog/2016/09/07/multiple-disclosures-for-multiple-network-management-systems-part-2
5071 1 2017-04-10T03:59Z CVE-2016-5071 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおける認可・権限・アクセス制御に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5070 1 2017-04-10T03:59Z CVE-2016-5070 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおける証明書・パスワードの管理に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5069 1 2017-04-10T03:59Z CVE-2016-5069 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおけるセッション期限に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5068 1 2017-04-10T03:59Z CVE-2016-5068 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおける認証に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5067 1 2017-04-10T03:59Z CVE-2016-5067 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおけるコマンドインジェクションの脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5066 1 2017-04-10T03:59Z CVE-2016-5066 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおける証明書・パスワードの管理に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5065 1 2017-04-10T03:59Z CVE-2016-5065 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおけるコマンドインジェクションの脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5059 1 2017-04-10T03:59Z CVE-2016-5059 OSRAM SYLVANIA Osram Lightify Pro における重要な情報を取得される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5058 1 2017-04-10T03:59Z CVE-2016-5058 OSRAM SYLVANIA Osram Lightify Pro におけるアクセス制御に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5057 1 2017-04-10T03:59Z CVE-2016-5057 OSRAM SYLVANIA Osram Lightify Pro におけるセキュリティ機能に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5056 1 2017-04-10T03:59Z CVE-2016-5056 OSRAM SYLVANIA Osram Lightify Pro における暗号強度に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5055 1 2017-04-10T03:59Z CVE-2016-5055 OSRAM SYLVANIA Osram Lightify Pro におけるクロスサイトスクリプティングの脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5054 1 2017-04-10T03:59Z CVE-2016-5054 OSRAM SYLVANIA Osram Lightify Home におけるアクセス制御に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5053 1 2017-04-10T03:59Z CVE-2016-5053 OSRAM SYLVANIA Osram Lightify Home における任意のコマンドを実行される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5052 1 2017-04-10T03:59Z CVE-2016-5052 OSRAM SYLVANIA Osram Lightify Home におけるセキュリティ機能に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5051 1 2017-04-10T03:59Z CVE-2016-5051 OSRAM SYLVANIA Osram Lightify Home における情報漏えいに関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
4334 1 2017-04-10T03:59Z CVE-2016-4334 Jive におけるオープンリダイレクトの脆弱性 http://www.ericgoldman.name/en/2016/vulnerability-report-jive-open-redirect/
1517 1 2017-04-10T03:59Z CVE-2016-1517 OpenCV におけるサービス運用妨害 (DoS) の脆弱性 https://arxiv.org/pdf/1701.04739.pdf
1516 1 2017-04-10T03:59Z CVE-2016-1516 OpenCV におけるメモリ二重解放の脆弱性 https://arxiv.org/pdf/1701.04739.pdf
5076 2 2017-04-10T03:59Z CVE-2016-5076 CloudView NMS における重要な情報を取得される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/09/07/multiple-disclosures-for-multiple-network-management-systems-part-2
5075 2 2017-04-10T03:59Z CVE-2016-5075 CloudView NMS におけるクロスサイトスクリプティングの脆弱性 https://community.rapid7.com/community/infosec/blog/2016/09/07/multiple-disclosures-for-multiple-network-management-systems-part-2
5074 2 2017-04-10T03:59Z CVE-2016-5074 CloudView NMS におけるフォーマットストリングの脆弱性 https://community.rapid7.com/community/infosec/blog/2016/09/07/multiple-disclosures-for-multiple-network-management-systems-part-2
5073 2 2017-04-10T03:59Z CVE-2016-5073 CloudView NMS におけるクロスサイトスクリプティングの脆弱性 https://community.rapid7.com/community/infosec/blog/2016/09/07/multiple-disclosures-for-multiple-network-management-systems-part-2
5071 2 2017-04-10T03:59Z CVE-2016-5071 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおける認可・権限・アクセス制御に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5070 2 2017-04-10T03:59Z CVE-2016-5070 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおける証明書・パスワードの管理に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5069 2 2017-04-10T03:59Z CVE-2016-5069 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおけるセッション期限に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5068 2 2017-04-10T03:59Z CVE-2016-5068 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおける認証に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5067 2 2017-04-10T03:59Z CVE-2016-5067 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおけるコマンドインジェクションの脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5066 2 2017-04-10T03:59Z CVE-2016-5066 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおける証明書・パスワードの管理に関する脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5065 2 2017-04-10T03:59Z CVE-2016-5065 Sierra Wireless GX 440 デバイスの ALEOS ファームウェアにおけるコマンドインジェクションの脆弱性 https://carvesystems.com/sierra-wireless-2016-advisory.html
5059 2 2017-04-10T03:59Z CVE-2016-5059 OSRAM SYLVANIA Osram Lightify Pro における重要な情報を取得される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5058 2 2017-04-10T03:59Z CVE-2016-5058 OSRAM SYLVANIA Osram Lightify Pro におけるアクセス制御に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5057 2 2017-04-10T03:59Z CVE-2016-5057 OSRAM SYLVANIA Osram Lightify Pro におけるセキュリティ機能に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5056 2 2017-04-10T03:59Z CVE-2016-5056 OSRAM SYLVANIA Osram Lightify Pro における暗号強度に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5055 2 2017-04-10T03:59Z CVE-2016-5055 OSRAM SYLVANIA Osram Lightify Pro におけるクロスサイトスクリプティングの脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5054 2 2017-04-10T03:59Z CVE-2016-5054 OSRAM SYLVANIA Osram Lightify Home におけるアクセス制御に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5053 2 2017-04-10T03:59Z CVE-2016-5053 OSRAM SYLVANIA Osram Lightify Home における任意のコマンドを実行される脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5052 2 2017-04-10T03:59Z CVE-2016-5052 OSRAM SYLVANIA Osram Lightify Home におけるセキュリティ機能に関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
5051 2 2017-04-10T03:59Z CVE-2016-5051 OSRAM SYLVANIA Osram Lightify Home における情報漏えいに関する脆弱性 https://community.rapid7.com/community/infosec/blog/2016/07/26/r7-2016-10-multiple-osram-sylvania-osram-lightify-vulnerabilities-cve-2016-5051-through-5059
4334 2 2017-04-10T03:59Z CVE-2016-4334 Jive におけるオープンリダイレクトの脆弱性 http://www.ericgoldman.name/en/2016/vulnerability-report-jive-open-redirect/
1517 2 2017-04-10T03:59Z CVE-2016-1517 OpenCV におけるサービス運用妨害 (DoS) の脆弱性 https://arxiv.org/pdf/1701.04739.pdf
1516 2 2017-04-10T03:59Z CVE-2016-1516 OpenCV におけるメモリ二重解放の脆弱性 https://arxiv.org/pdf/1701.04739.pdf
10320 1 2017-04-06T18:59Z CVE-2016-10320 textract における OS コマンドインジェクションの脆弱性 http://seclists.org/oss-sec/2016/q4/442
10320 2 2017-04-06T18:59Z CVE-2016-10320 textract における OS コマンドインジェクションの脆弱性 http://seclists.org/oss-sec/2016/q4/442
10317 1 2017-04-03T20:59Z CVE-2016-10317 Artifex Software, Inc. の Ghostscript の base/gxht_thresh.c の fill_threshhold_buffer 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697459
10317 2 2017-04-03T20:59Z CVE-2016-10317 Artifex Software, Inc. の Ghostscript の base/gxht_thresh.c の fill_threshhold_buffer 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697459
10316 1 2017-04-03T05:59Z CVE-2016-10316 複数の Jensen of Scandinavia AS Air:Link デバイスにおけるオープンリダイレクトの脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10315 1 2017-04-03T05:59Z CVE-2016-10315 複数の Jensen of Scandinavia AS Air:Link デバイスにおけるオープンリダイレクトの脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10314 1 2017-04-03T05:59Z CVE-2016-10314 複数の Jensen of Scandinavia AS Air:Link デバイスにおけるパスワードを読まれる脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10313 1 2017-04-03T05:59Z CVE-2016-10313 複数の Jensen of Scandinavia AS Air:Link デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10312 1 2017-04-03T05:59Z CVE-2016-10312 複数の Jensen of Scandinavia AS Air:Link デバイスにおける任意のコマンドを実行される脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10221 1 2017-04-03T05:59Z CVE-2016-10221 Artifex Software, Inc. の Ghostscript の pdf-layer.c の count_entries 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697400
10220 1 2017-04-03T05:59Z CVE-2016-10220 Artifex Software, Inc. の Ghostscript の base/gsdevmem.c の gs_makewordimagedevice 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697450
10219 1 2017-04-03T05:59Z CVE-2016-10219 Artifex Software, Inc. の Ghostscript の base/gxfill.c の intersect 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697453
10218 1 2017-04-03T05:59Z CVE-2016-10218 Artifex Software, Inc. の Ghostscript の PDF Transparency モジュールの base/gdevp14.c におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697444
10217 1 2017-04-03T05:59Z CVE-2016-10217 Artifex Software, Inc. の Ghostscript の base/gdevp14.c の pdf14_open 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697456
10211 1 2017-04-03T05:59Z CVE-2016-10211 YARA の libyara/grammar.y におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/VirusTotal/yara/issues/575
10210 1 2017-04-03T05:59Z CVE-2016-10210 YARA の libyara/lexer.l におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/VirusTotal/yara/issues/576
10209 1 2017-04-03T05:59Z CVE-2016-10209 libarchive の archive_string.c の archive_wstring_append_from_mbs 関数におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/libarchive/libarchive/issues/842
10316 2 2017-04-03T05:59Z CVE-2016-10316 複数の Jensen of Scandinavia AS Air:Link デバイスにおけるオープンリダイレクトの脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10315 2 2017-04-03T05:59Z CVE-2016-10315 複数の Jensen of Scandinavia AS Air:Link デバイスにおけるオープンリダイレクトの脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10314 2 2017-04-03T05:59Z CVE-2016-10314 複数の Jensen of Scandinavia AS Air:Link デバイスにおけるパスワードを読まれる脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10313 2 2017-04-03T05:59Z CVE-2016-10313 複数の Jensen of Scandinavia AS Air:Link デバイスにおけるクロスサイトリクエストフォージェリの脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10312 2 2017-04-03T05:59Z CVE-2016-10312 複数の Jensen of Scandinavia AS Air:Link デバイスにおける任意のコマンドを実行される脆弱性 https://www.riskbasedsecurity.com/research/RBS-2016-004.pdf
10221 2 2017-04-03T05:59Z CVE-2016-10221 Artifex Software, Inc. の Ghostscript の pdf-layer.c の count_entries 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697400
10220 2 2017-04-03T05:59Z CVE-2016-10220 Artifex Software, Inc. の Ghostscript の base/gsdevmem.c の gs_makewordimagedevice 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697450
10219 2 2017-04-03T05:59Z CVE-2016-10219 Artifex Software, Inc. の Ghostscript の base/gxfill.c の intersect 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697453
10218 2 2017-04-03T05:59Z CVE-2016-10218 Artifex Software, Inc. の Ghostscript の PDF Transparency モジュールの base/gdevp14.c におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697444
10217 2 2017-04-03T05:59Z CVE-2016-10217 Artifex Software, Inc. の Ghostscript の base/gdevp14.c の pdf14_open 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugs.ghostscript.com/show_bug.cgi?id=697456
10211 2 2017-04-03T05:59Z CVE-2016-10211 YARA の libyara/grammar.y におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/VirusTotal/yara/issues/575
10210 2 2017-04-03T05:59Z CVE-2016-10210 YARA の libyara/lexer.l におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/VirusTotal/yara/issues/576
10209 2 2017-04-03T05:59Z CVE-2016-10209 libarchive の archive_string.c の archive_wstring_append_from_mbs 関数におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/libarchive/libarchive/issues/842
6561 1 2017-03-31T19:59Z CVE-2016-6561 illumos smbsrv における NULL ポインタデリファレンスに関する脆弱性 https://www.illumos.org/issues/7483
6561 2 2017-03-31T19:59Z CVE-2016-6561 illumos smbsrv における NULL ポインタデリファレンスに関する脆弱性 https://www.illumos.org/issues/7483
10308 1 2017-03-30T07:59Z CVE-2016-10308 Siklu EtherHaul 無線機におけるハードコードされた認証情報の使用に関する脆弱性 http://blog.iancaling.com/post/145309944453
10307 1 2017-03-30T07:59Z CVE-2016-10307 複数の Trango 製品におけるハードコードされた認証情報の使用に関する脆弱性 http://blog.iancaling.com/post/153011925478
10305 1 2017-03-30T07:59Z CVE-2016-10305 複数の Trango 製品におけるハードコードされた認証情報の使用に関する脆弱性 http://blog.iancaling.com/post/153011925478
10308 2 2017-03-30T07:59Z CVE-2016-10308 Siklu EtherHaul 無線機におけるハードコードされた認証情報の使用に関する脆弱性 http://blog.iancaling.com/post/145309944453
10307 2 2017-03-30T07:59Z CVE-2016-10307 複数の Trango 製品におけるハードコードされた認証情報の使用に関する脆弱性 http://blog.iancaling.com/post/153011925478
10305 2 2017-03-30T07:59Z CVE-2016-10305 複数の Trango 製品におけるハードコードされた認証情報の使用に関する脆弱性 http://blog.iancaling.com/post/153011925478
8749 1 2017-03-28T18:59Z CVE-2016-8749 Apache Camel における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://www.github.com/mbechler/marshalsec/blob/master/marshalsec.pdf?raw=true
8749 2 2017-03-28T18:59Z CVE-2016-8749 Apache Camel における信頼性のないデータのデシリアライゼーションに関する脆弱性 https://www.github.com/mbechler/marshalsec/blob/master/marshalsec.pdf?raw=true
9473 1 2017-03-28T02:59Z CVE-2016-9473 Brave Browser iOS および Brave Browser Android におけるフルアドレスバーを偽造される脆弱性 https://cxsecurity.com/issue/WLB-2017010042
9469 1 2017-03-28T02:59Z CVE-2016-9469 GitLab における認可・権限・アクセス制御に関する脆弱性 https://gitlab.com/gitlab-org/gitlab-ce/issues/25064
9468 1 2017-03-28T02:59Z CVE-2016-9468 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/149798
9467 1 2017-03-28T02:59Z CVE-2016-9467 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/154827
9466 1 2017-03-28T02:59Z CVE-2016-9466 Nextcloud サーバおよび ownCloud サーバにおけるクロスサイトスクリプティングの脆弱性 https://hackerone.com/reports/165686
9465 1 2017-03-28T02:59Z CVE-2016-9465 Nextcloud サーバおよび ownCloud サーバにおけるクロスサイトスクリプティングの脆弱性 https://hackerone.com/reports/163338
9464 1 2017-03-28T02:59Z CVE-2016-9464 Nextcloud サーバにおける認可に関する脆弱性 https://hackerone.com/reports/153905
9463 1 2017-03-28T02:59Z CVE-2016-9463 Nextcloud サーバおよび ownCloud サーバにおける認証に関する脆弱性 https://hackerone.com/reports/148151
9462 1 2017-03-28T02:59Z CVE-2016-9462 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/146067
9461 1 2017-03-28T02:59Z CVE-2016-9461 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/145950
9460 1 2017-03-28T02:59Z CVE-2016-9460 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/145463
9459 1 2017-03-28T02:59Z CVE-2016-9459 Nextcloud サーバおよび ownCloud サーバにおけるクロスサイトスクリプティングの脆弱性 https://hackerone.com/reports/146278
9473 2 2017-03-28T02:59Z CVE-2016-9473 Brave Browser iOS および Brave Browser Android におけるフルアドレスバーを偽造される脆弱性 https://cxsecurity.com/issue/WLB-2017010042
9469 2 2017-03-28T02:59Z CVE-2016-9469 GitLab における認可・権限・アクセス制御に関する脆弱性 https://gitlab.com/gitlab-org/gitlab-ce/issues/25064
9468 2 2017-03-28T02:59Z CVE-2016-9468 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/149798
9467 2 2017-03-28T02:59Z CVE-2016-9467 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/154827
9466 2 2017-03-28T02:59Z CVE-2016-9466 Nextcloud サーバおよび ownCloud サーバにおけるクロスサイトスクリプティングの脆弱性 https://hackerone.com/reports/165686
9465 2 2017-03-28T02:59Z CVE-2016-9465 Nextcloud サーバおよび ownCloud サーバにおけるクロスサイトスクリプティングの脆弱性 https://hackerone.com/reports/163338
9464 2 2017-03-28T02:59Z CVE-2016-9464 Nextcloud サーバにおける認可に関する脆弱性 https://hackerone.com/reports/153905
9463 2 2017-03-28T02:59Z CVE-2016-9463 Nextcloud サーバおよび ownCloud サーバにおける認証に関する脆弱性 https://hackerone.com/reports/148151
9462 2 2017-03-28T02:59Z CVE-2016-9462 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/146067
9461 2 2017-03-28T02:59Z CVE-2016-9461 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/145950
9460 2 2017-03-28T02:59Z CVE-2016-9460 Nextcloud サーバおよび ownCloud サーバにおけるアクセス制御に関する脆弱性 https://hackerone.com/reports/145463
9459 2 2017-03-28T02:59Z CVE-2016-9459 Nextcloud サーバおよび ownCloud サーバにおけるクロスサイトスクリプティングの脆弱性 https://hackerone.com/reports/146278
9473 3 2017-03-28T02:59Z CVE-2016-9473 Brave Browser iOS および Brave Browser Android におけるフルアドレスバーを偽造される脆弱性 https://hackerone.com/reports/175958
9469 3 2017-03-28T02:59Z CVE-2016-9469 GitLab における認可・権限・アクセス制御に関する脆弱性 https://hackerone.com/reports/186194
9463 3 2017-03-28T02:59Z CVE-2016-9463 Nextcloud サーバおよび ownCloud サーバにおける認証に関する脆弱性 https://rhinosecuritylabs.com/2016/10/operation-ownedcloud-exploitation-post-exploitation-persistence/
9473 4 2017-03-28T02:59Z CVE-2016-9473 Brave Browser iOS および Brave Browser Android におけるフルアドレスバーを偽造される脆弱性 https://hackerone.com/reports/175958
9469 4 2017-03-28T02:59Z CVE-2016-9469 GitLab における認可・権限・アクセス制御に関する脆弱性 https://hackerone.com/reports/186194
9463 4 2017-03-28T02:59Z CVE-2016-9463 Nextcloud サーバおよび ownCloud サーバにおける認証に関する脆弱性 https://rhinosecuritylabs.com/2016/10/operation-ownedcloud-exploitation-post-exploitation-persistence/
4912 1 2017-03-27T17:59Z CVE-2016-4912 OpenSLP の xlsp_xmalloc.c の _xrealloc 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1329295
10225 1 2017-03-27T17:59Z CVE-2016-10225 Allwinner レガシーカーネルの sunxi-debug ドライバにおける root 権限を取得される脆弱性 https://www.rapid7.com/db/modules/exploit/multi/local/allwinner_backdoor
4912 2 2017-03-27T17:59Z CVE-2016-4912 OpenSLP の xlsp_xmalloc.c の _xrealloc 関数におけるサービス運用妨害 (DoS) の脆弱性 https://bugzilla.redhat.com/show_bug.cgi?id=1329295
10225 2 2017-03-27T17:59Z CVE-2016-10225 Allwinner レガシーカーネルの sunxi-debug ドライバにおける root 権限を取得される脆弱性 https://www.rapid7.com/db/modules/exploit/multi/local/allwinner_backdoor
8855 1 2017-03-19T18:59Z CVE-2016-8855 Sitecore Experience Platform の "/sitecore/client/Applications/List Manager/Taskpages/Contact list" におけるクロスサイトスクリプティングの脆弱性 https://packetstormsecurity.com/files/141655/Sitecore-Experience-Platform-8.1-Update-3-Cross-Site-Scripting.html
8855 2 2017-03-19T18:59Z CVE-2016-8855 Sitecore Experience Platform の "/sitecore/client/Applications/List Manager/Taskpages/Contact list" におけるクロスサイトスクリプティングの脆弱性 https://packetstormsecurity.com/files/141655/Sitecore-Experience-Platform-8.1-Update-3-Cross-Site-Scripting.html
8855 3 2017-03-19T18:59Z CVE-2016-8855 Sitecore Experience Platform の "/sitecore/client/Applications/List Manager/Taskpages/Contact list" におけるクロスサイトスクリプティングの脆弱性 https://www.exploit-db.com/exploits/41618/
8855 4 2017-03-19T18:59Z CVE-2016-8855 Sitecore Experience Platform の "/sitecore/client/Applications/List Manager/Taskpages/Contact list" におけるクロスサイトスクリプティングの脆弱性 https://www.exploit-db.com/exploits/41618/
10187 1 2017-03-16T15:59Z CVE-2016-10187 calibre の E-book viewer における任意のファイルを読まれる脆弱性 https://bugs.launchpad.net/calibre/+bug/1651728
10187 2 2017-03-16T15:59Z CVE-2016-10187 calibre の E-book viewer における任意のファイルを読まれる脆弱性 https://bugs.launchpad.net/calibre/+bug/1651728
7103 1 2017-03-15T16:59Z CVE-2016-7103 jQuery UI におけるクロスサイトスクリプティングの脆弱性 https://github.com/jquery/api.jqueryui.com/issues/281
7103 2 2017-03-15T16:59Z CVE-2016-7103 jQuery UI におけるクロスサイトスクリプティングの脆弱性 https://github.com/jquery/api.jqueryui.com/issues/281
10197 1 2017-03-15T15:59Z CVE-2016-10197 libevent の evdns.c 内の search_make_new 関数におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/libevent/libevent/issues/332
10196 1 2017-03-15T15:59Z CVE-2016-10196 libevent の evutil.c 内の evutil_parse_sockaddr_port 関数におけるスタックベースのバッファオーバーフローの脆弱性 https://github.com/libevent/libevent/issues/318
10195 1 2017-03-15T15:59Z CVE-2016-10195 libevent の evdns.c の name_parse 関数における脆弱性 https://github.com/libevent/libevent/issues/317
10197 2 2017-03-15T15:59Z CVE-2016-10197 libevent の evdns.c 内の search_make_new 関数におけるサービス運用妨害 (DoS) の脆弱性 https://github.com/libevent/libevent/issues/332
10196 2 2017-03-15T15:59Z CVE-2016-10196 libevent の evutil.c 内の evutil_parse_sockaddr_port 関数におけるスタックベースのバッファオーバーフローの脆弱性 https://github.com/libevent/libevent/issues/318
10195 2 2017-03-15T15:59Z CVE-2016-10195 libevent の evdns.c の name_parse 関数における脆弱性 https://github.com/libevent/libevent/issues/317
10251 1 2017-03-15T14:59Z CVE-2016-10251 JasPer の jpc_t2cod.c の jpc_pi_nextcprl 関数における整数オーバーフローの脆弱性 https://blogs.gentoo.org/ago/2016/11/04/jasper-use-of-uninitialized-value-in-jpc_pi_nextcprl-jpc_t2cod-c/
10250 1 2017-03-15T14:59Z CVE-2016-10250 JasPer の jp2_cod.c の jp2_colr_destroy 関数におけるサービス運用妨害 (DoS) の脆弱性 https://blogs.gentoo.org/ago/2016/10/23/jasper-null-pointer-dereference-in-jp2_colr_destroy-jp2_cod-c-incomplete-fix-for-cve-2016-8887/
10249 1 2017-03-15T14:59Z CVE-2016-10249 JasPer の jpc_dec.c の jpc_dec_tiledecode 関数における整数オーバーフローの脆弱性 https://blogs.gentoo.org/ago/2016/10/23/jasper-heap-based-buffer-overflow-in-jpc_dec_tiledecode-jpc_dec-c/
10248 1 2017-03-15T14:59Z CVE-2016-10248 JasPer の jpc_tsfb.c の jpc_tsfb_synthesize 関数におけるサービス運用妨害 (DoS) の脆弱性 https://blogs.gentoo.org/ago/2016/10/20/jasper-null-pointer-dereference-in-jpc_tsfb_synthesize-jpc_tsfb-c/
10251 2 2017-03-15T14:59Z CVE-2016-10251 JasPer の jpc_t2cod.c の jpc_pi_nextcprl 関数における整数オーバーフローの脆弱性 https://blogs.gentoo.org/ago/2016/11/04/jasper-use-of-uninitialized-value-in-jpc_pi_nextcprl-jpc_t2cod-c/
10250 2 2017-03-15T14:59Z CVE-2016-10250 JasPer の jp2_cod.c の jp2_colr_destroy 関数におけるサービス運用妨害 (DoS) の脆弱性 https://blogs.gentoo.org/ago/2016/10/23/jasper-null-pointer-dereference-in-jp2_colr_destroy-jp2_cod-c-incomplete-fix-for-cve-2016-8887/
10249 2 2017-03-15T14:59Z CVE-2016-10249 JasPer の jpc_dec.c の jpc_dec_tiledecode 関数における整数オーバーフローの脆弱性 https://blogs.gentoo.org/ago/2016/10/23/jasper-heap-based-buffer-overflow-in-jpc_dec_tiledecode-jpc_dec-c/
10248 2 2017-03-15T14:59Z CVE-2016-10248 JasPer の jpc_tsfb.c の jpc_tsfb_synthesize 関数におけるサービス運用妨害 (DoS) の脆弱性 https://blogs.gentoo.org/ago/2016/10/20/jasper-null-pointer-dereference-in-jpc_tsfb_synthesize-jpc_tsfb-c/
10172 1 2017-03-14T14:59Z CVE-2016-10172 Wavpack の open_utils.c の read_new_config_info 関数におけるサービス運用妨害 (DoS) の脆弱性 https://sourceforge.net/p/wavpack/mailman/message/35561951/
10171 1 2017-03-14T14:59Z CVE-2016-10171 Wavpack の cli/wvunpack.c の unreorder_channels 関数におけるサービス運用妨害 (DoS) の脆弱性 https://sourceforge.net/p/wavpack/mailman/message/35561939/
10170 1 2017-03-14T14:59Z CVE-2016-10170 Wavpack の cli/caff.c の WriteCaffHeader 関数におけるサービス運用妨害 (DoS) の脆弱性 https://sourceforge.net/p/wavpack/mailman/message/35561921/
10169 1 2017-03-14T14:59Z CVE-2016-10169 Wavpack の read_words.c の read_code 関数におけるサービス運用妨害 (DoS) の脆弱性 https://sourceforge.net/p/wavpack/mailman/message/35557889/
10172 2 2017-03-14T14:59Z CVE-2016-10172 Wavpack の open_utils.c の read_new_config_info 関数におけるサービス運用妨害 (DoS) の脆弱性 https://sourceforge.net/p/wavpack/mailman/message/35561951/
10171 2 2017-03-14T14:59Z CVE-2016-10171 Wavpack の cli/wvunpack.c の unreorder_channels 関数におけるサービス運用妨害 (DoS) の脆弱性 https://sourceforge.net/p/wavpack/mailman/message/35561939/
10170 2 2017-03-14T14:59Z CVE-2016-10170 Wavpack の cli/caff.c の WriteCaffHeader 関数におけるサービス運用妨害 (DoS) の脆弱性 https://sourceforge.net/p/wavpack/mailman/message/35561921/
10169 2 2017-03-14T14:59Z CVE-2016-10169 Wavpack の read_words.c の read_code 関数におけるサービス運用妨害 (DoS) の脆弱性 https://sourceforge.net/p/wavpack/mailman/message/35557889/
8714 1 2017-03-10T10:59Z CVE-2016-8714 R プログラミング言語の LoadEncoding 機能におけるバッファオーバーフローの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0227/
8714 2 2017-03-10T10:59Z CVE-2016-8714 R プログラミング言語の LoadEncoding 機能におけるバッファオーバーフローの脆弱性 http://www.talosintelligence.com/reports/TALOS-2016-0227/
7789 1 2017-03-07T16:59Z CVE-2016-7789 Exponent CMS の framework/core/models/expConfig.php における SQL インジェクションの脆弱性 http://forums.exponentcms.org/index.php?p=/discussion/comment/1591#Comment_1591
7140 1 2017-03-07T16:59Z CVE-2016-7140 Plone CMS の Zope2 の ZMI ページにおけるクロスサイトスクリプティングの脆弱性 http://packetstormsecurity.com/files/139110/Plone-CMS-4.3.11-5.0.6-XSS-Traversal-Open-Redirection.html
7139 1 2017-03-07T16:59Z CVE-2016-7139 Plone CMS の不特定のページテンプレートにおけるクロスサイトスクリプティングの脆弱性 http://packetstormsecurity.com/files/139110/Plone-CMS-4.3.11-5.0.6-XSS-Traversal-Open-Redirection.html
7138 1 2017-03-07T16:59Z CVE-2016-7138 Plone CMS の URL チェックインフラストラクチャにおけるクロスサイトスクリプティングの脆弱性 http://packetstormsecurity.com/files/139110/Plone-CMS-4.3.11-5.0.6-XSS-Traversal-Open-Redirection.html
7137 1 2017-03-07T16:59Z CVE-2016-7137 Plone CMS におけるオープンリダイレクトの脆弱性 http://packetstormsecurity.com/files/139110/Plone-CMS-4.3.11-5.0.6-XSS-Traversal-Open-Redirection.html
7136 1 2017-03-07T16:59Z CVE-2016-7136 Plone CMS の z3c.form におけるクロスサイトスクリプティングの脆弱性 http://packetstormsecurity.com/files/139110/Plone-CMS-4.3.11-5.0.6-XSS-Traversal-Open-Redirection.html
7135 1 2017-03-07T16:59Z CVE-2016-7135 Plone CMS におけるディレクトリトラバーサルの脆弱性 http://packetstormsecurity.com/files/139110/Plone-CMS-4.3.11-5.0.6-XSS-Traversal-Open-Redirection.html
6522 1 2017-03-07T16:59Z CVE-2016-6522 OpenBSD の uvm/uvm_map.c の uvm_map_isavail 関数における整数オーバーフローの脆弱性 http://www.openwall.com/lists/oss-security/2016/08/02/12
6350 1 2017-03-07T16:59Z CVE-2016-6350 OpenBSD におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/07/26/6
6247 1 2017-03-07T16:59Z CVE-2016-6247 OpenBSD におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/07/17/7
6246 1 2017-03-07T16:59Z CVE-2016-6246 OpenBSD におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/07/17/7
6245 1 2017-03-07T16:59Z CVE-2016-6245 OpenBSD におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/07/17/7
6243 1 2017-03-07T16:59Z CVE-2016-6243 OpenBSD の kern/kern_synch.c の thrsleep におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/07/17/7
6242 1 2017-03-07T16:59Z CVE-2016-6242 OpenBSD におけるサービス運用妨害 (DoS) の脆弱性 http://www.openwall.com/lists/oss-security/2016/07/17/7