-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAOSP-bulletins.csv
We can't make this file beautiful and searchable because it's too large.
4097 lines (4097 loc) · 934 KB
/
AOSP-bulletins.csv
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
month,SPL,CVE,description,bug,LINK,affected_versions,severity,date_reported,type,component,new_type,new_component,SPL_year,SPL_month,SPL_day,CVE_published_date
2015-09-01,2015-09-01,CVE-2015-3864,Remote Code Execution Vulnerability in Mediaserver,ANDROID-23034759, https://android.googlesource.com/platform/frameworks/av/+/6fe85f7e15203e48df2cc3e8e1c4bc6ad49dc968,5.1 and below,Critical,,RCE,,Remote Code Execution Vulnerability,Mediaserver,2015,9,1,2015-10-01T00:59Z
2015-09-01,2015-09-01,CVE-2015-3636,Elevation Privilege Vulnerability in Kernel,ANDROID-20770158, https://github.com/torvalds/linux/commit/a134f083e79f,5.1 and below,Critical,,EoP,,Elevation Privilege Vulnerability,Kernel,2015,9,1,2015-08-06T01:59Z
2015-09-01,2015-09-01,CVE-2015-3845,Elevation of Privilege Vulnerability in Binder ,ANDROID-17312693, https://android.googlesource.com/platform/frameworks/native/+/e68cbc3e9e66df4231e70efa3e9c41abc12aea20,5.1 and below,High,,EoP,,Elevation of Privilege Vulnerability,Binder ,2015,9,1,2015-10-01T00:59Z
2015-09-01,2015-09-01,CVE-2015-1528,Elevation of Privilege Vulnerability in Binder ,ANDROID-19334482, https://android.googlesource.com/platform/frameworks/native/+/7dcd0ec9c91688cfa3f679804ba6e132f9811254,5.1 and below,High,,EoP,,Elevation of Privilege Vulnerability,Binder ,2015,9,1,2015-10-01T00:59Z
2015-09-01,2015-09-01,CVE-2015-3863,Elevation of Privilege Vulnerability in Keystore,ANDROID-22802399, https://android.googlesource.com/platform/system/security/+/bb9f4392c2f1b11be3acdc1737828274ff1ec55b,5.1 and below,High,,EoP,,Elevation of Privilege Vulnerability,Keystore,2015,9,1,2015-10-01T00:59Z
2015-09-01,2015-09-01,CVE-2015-3849,Elevation of Privilege Vulnerability in Region ,ANDROID-20883006, https://android.googlesource.com/platform/frameworks/base/+/4cff1f49ff95d990d6c2614da5d5a23d02145885,5.1 and below,High,,EoP,,Elevation of Privilege Vulnerability,Region ,2015,9,1,2015-10-01T00:59Z
2015-09-01,2015-09-01,CVE-2015-3858,Elevation of Privilege vulnerability in SMS enables notification bypass ,ANDROID-22314646, https://android.googlesource.com/platform/frameworks/opt/telephony/+/df31d37d285dde9911b699837c351aed2320b586,5.1 and below,High,,EoP,,Elevation of Privilege vulnerability,SMS enables notification bypass ,2015,9,1,2015-10-01T00:59Z
2015-09-01,2015-09-01,CVE-2015-3860,Elevation of Privilege Vulnerability in Lockscreen,ANDROID-22214934, https://android.googlesource.com/platform/frameworks/base/+/8fba7e6931245a17215e0e740e78b45f6b66d590,5.1 and 5.0,Moderate,,EoP,,Elevation of Privilege Vulnerability,Lockscreen,2015,9,1,2015-10-01T00:59Z
2015-09-01,2015-09-01,CVE-2015-3861,Denial of Service Vulnerability in Mediaserver,ANDROID-21296336, https://android.googlesource.com/platform/frameworks/av/+/304ef91624e12661e7e35c2c0c235da84a73e9c0,5.1 and below,Low,,DoS,,Denial of Service Vulnerability,Mediaserver,2015,9,1,2015-10-01T00:59Z
2015-10-01,2015-10-01,CVE-2015-3873,Remote Code Execution Vulnerabilities in libstagefright,"ANDROID-20674086,ANDROID-20674674,ANDROID-20718524 ,ANDROID-21048776,ANDROID-21443020,ANDROID-21814993 ,ANDROID-22008959 ,ANDROID-22077698,ANDROID-22388975,ANDROID-22845824,ANDROID-23016072,ANDROID-23247055 ,ANDROID-23248776,ANDROID-20721050","https://android.googlesource.com/platform%2Fframeworks%2Fav/+/c23e3dd8af7397f023aae040c4a03dd14091cbed,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/3fd96683850cf27648e036180acb149fac362242,https://android.googlesource.com/platform%2Fexternal%2Ftremolo/+/2e941e40ce76eb13b273479a4ee8fb6e40d33795,https://android.googlesource.com/platform%2Fexternal%2Ftremolo/+/06ca06ac6107f88530cc67225c47537621bb41a5,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/dc5e47f013bfbb74c5c35ad976aa98d480cb351b,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/f11e95b21007f24e5ab77298370855f9f085b2d7,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/f810a8298aea13fa177060cdc10c8297eac69c49,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/7913508110c80da87fb085514208adbd874d7d54,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/073e4f6748f5d7deb095c42fad9271cb99e22d07,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/bf47eb9c67ed364f3c288954857aab9d9311db4c,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/b158a9a5bcfe21480f57bc58d45517f1a81cca39,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/5a132594b531f1f48098a790927f82080cc27f61,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/d2ebc0b9e147f9406db20ec4df61da50e3614ee4,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/3179e3b3531b5fe93dc7f5b2c378e27010a406d5",5.1 and below,Critical,Google Internal ,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3823,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-21335999 ,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/407d475b797fdc595299d67151230dc6e3835ccd,5.1 and below,Critical,2015-05-20 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6600,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-22882938 ,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/e6f5d47a7f9eab8a0009f8a563de473cd47d3110,5.1 and below,Critical,2015-07-31 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6601,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-22935234,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/738a753a3ca7bf8f9f608ca941575626265294e4,5.1 and below,Critical,2015-08-03 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3869,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23036083,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/450e1015b7939292ca988dd1b4f0303a094478e9,5.1 and below,Critical,2015-08-04 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3870,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-22771132,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/4bce636865bdf0e2a79fc9a5d9a69107649c850d,5.1 and below,Critical,2015-08-05 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3871,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23031033,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/c570778430a22b5488cae72982cf9fb8033dbda3,5.1 and below,Critical,2015-08-06 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3868,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23270724,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/937c6bedd4b6e5c6cb29a238eb459047dedd3486,5.1 and below,Critical,2015-08-06 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6604,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23129786,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/f51115bd8e44c2779b74477277c6f6046916e7cf,5.1 and below,Critical,2015-08-11 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3867,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23213430,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/7e9ac3509d72e8dc6f1316b5ce0a0066638b9737,5.1 and below,Critical,2015-08-14 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6603,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23227354 ,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/c37f7f6fa0cb7f55cdc5b2d4ccbf2c87c3bc6c3b,5.1 and below,Critical,"Aug 15,2015",RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3876,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23285192,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/c580c836c1941fb4912e1dd4e08626caf98a62c7,5.1 and below,Critical,2015-08-15 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-02T02:59Z
2015-10-01,2015-10-01,CVE-2015-6598,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23306638,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/ba6093a4c6997b9d36d9700ee8c974941bf82e3a,5.1 and below,Critical,2015-08-18 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3872,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23346388,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/4d46f6f18f5160b8992ec1e66ef1844212fc7d48,5.1 and below,Critical,2015-08-19 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6599,Remote Code Execution Vulnerabilities in libstagefright,ANDROID-23416608 ,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/af7e33f6043c0be1c0310d675884e3b263ca2438,5.1 and below,Critical,2015-08-21 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libstagefright,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3874,Remote Code Execution Vulnerabilities in Sonivox,"ANDROID-23335715,ANDROID-23307276,ANDROID-23286323","https://android.googlesource.com/platform%2Fexternal%2Fsonivox/+/8cbef48ba6e3d3f844b895f8ca1a1aee74414fff,https://android.googlesource.com/platform%2Fexternal%2Fsonivox/+/5d2e7de37d4a28cf25cc5d0c64b3a29c1824dc0a,https://android.googlesource.com/platform%2Fexternal%2Fsonivox/+/8a9f53ee2c661e8b5b94d6e9fbb8af3baa34310d",5.1 and below,Critical,Multiple,RCE,,Remote Code Execution Vulnerabilities,Sonivox,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3875,Remote Code Execution Vulnerabilities in libutils ,ANDROID-22952485,https://android.googlesource.com/platform%2Fsystem%2Fcore/+/0cc9a6e6e1f8e675c1238e5e05418cabcc699b52,5.1 and below,Critical,2015-08-15 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libutils ,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6602,Remote Code Execution Vulnerabilities in libutils ,ANDROID-23290056,https://android.googlesource.com/platform%2Fsystem%2Fcore/+/e0dce90b0de2b2b7c2baae8035f810a55526effb,5.1 and below,Critical,2015-08-15 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libutils ,2015,10,1,2015-10-02T02:59Z
2015-10-01,2015-10-01,CVE-2015-3877,Remote Code Execution Vulnerability in Skia,ANDROID-20723696,https://android.googlesource.com/platform%2Fexternal%2Fskia/+/55ad31336a6de7037139820558c5de834797c09e,5.1 and below,Critical,2015-07-30 00:00:00,RCE,,Remote Code Execution Vulnerability,Skia,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2014-9028,Remote Code Execution Vulnerabilities in libFLAC,ANDROID-18872897,https://android.googlesource.com/platform%2Fexternal%2Fflac/+/fe03f73d86bb415f5d5145f0de091834d89ae3a9,5.1 and below,Critical,2014-11-14 00:00:00,RCE,,Remote Code Execution Vulnerabilities,libFLAC,2015,10,1,2014-11-26T15:59Z
2015-10-01,2015-10-01,CVE-2015-3863,Elevation of Privilege Vulnerability in KeyStore,ANDROID-22802399,https://android.googlesource.com/platform%2Fsystem%2Fsecurity/+/0d5935262dbbcaf2cf6145529ffd71a728ef4609,5.1 and below,High,2015-07-28 00:00:00,EoP,,Elevation of Privilege Vulnerability,KeyStore,2015,10,1,2015-10-01T00:59Z
2015-10-01,2015-10-01,CVE-2015-3879,Elevation of Privilege Vulnerability in Media Player Framework,ANDROID-23223325,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/aa4da6fa7ca2454f0713de0a5a583b5b8160166b,5.1 and below,High,2015-08-14 00:00:00,EoP,,Elevation of Privilege Vulnerability,Media Player Framework,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3865,Elevation of Privilege Vulnerability in Android Runtime,ANDROID-23050463,https://android.googlesource.com/platform%2Fframeworks%2Fbase/+/ff8dc21278b19b22ed8dc9f9475850838336d351,5.1 and below,High,2015-08-08 00:00:00,EoP,,Elevation of Privilege Vulnerability,Android Runtime,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6596,Elevation of Privilege Vulnerabilities in Mediaserver,"ANDROID-20731946,ANDROID-20719651*,ANDROID-19573085","https://android.googlesource.com/platform%2Fframeworks%2Fav/+/b97ee930e4f7ed1587b869c92b4aa1dc90b641cc,none,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/9ef830c6dbd4f6000b94abee3df14b9e27a38294",5.1 and below,High,Multiple,EoP,,Elevation of Privilege Vulnerabilities,Mediaserver,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6606,Elevation of Privilege Vulnerability in Secure Element Evaluation Kit,ANDROID-22301786*,none,5.1 and below,High,2015-06-30 00:00:00,EoP,,Elevation of Privilege Vulnerability,Secure Element Evaluation Kit,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3878,Elevation of Privilege Vulnerability in Media Projection,ANDROID-23345192,https://android.googlesource.com/platform/frameworks/base/+/b3145760db5d58a107fd1ffd8eeec67d983d45f3,5.0 - 6.0,Moderate," Aug 18, 2015",EoP,,Elevation of Privilege Vulnerability,Media Projection,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3847,Elevation of Privilege Vulnerability in Bluetooth,ANDROID-22343270,https://android.googlesource.com/platform%2Fpackages%2Fapps%2FBluetooth/+/19004c751f36aa2b01d3e03d4f761d8897542bd2,5.1 and below,Moderate,2015-07-08 00:00:00,EoP,,Elevation of Privilege Vulnerability,Bluetooth,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6607,Elevation of Privilege Vulnerabilities in SQLite,ANDROID-20099586,https://android.googlesource.com/platform%2Fexternal%2Fsqlite/+/3fcd43a0f1ef02756029e12af3cb9ba9faa13364, 5.1 and below,Moderate,2015-04-07 00:00:00,EoP,,Elevation of Privilege Vulnerabilities,SQLite,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-6605,Denial of Service Vulnerabilities in Mediaserver,"ANDROID-20915134,ANDROID-23142203,ANDROID-22278703","https://android.googlesource.com/platform%2Fexternal%2Ftremolo/+/36ec928f52271dd1feb4c86b18026564220629e9,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/3ce293842fed1b3abd2ff0aecd2a0c70a55086ee,https://android.googlesource.com/platform%2Fexternal%2Flibhevc/+/2b67e532653b815e2341a0ac0b59d1b0ef82170d",5.1 and below,Low,Google Internal ,DoS,,Denial of Service Vulnerabilities,Mediaserver,2015,10,1,2015-10-06T17:59Z
2015-10-01,2015-10-01,CVE-2015-3862,Denial of Service Vulnerabilities in Mediaserver,ANDROID-22954006,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/f26400c9d01a0e2f71690d5ebc644270f098d590,5.1 and below,Low,2015-08-02 00:00:00,DoS,,Denial of Service Vulnerabilities,Mediaserver,2015,10,1,2015-10-06T17:59Z
2015-11-01,2015-11-01,CVE-2015-6608,Remote Code Execution Vulnerabilities in Mediaserver,"ANDROID-19779574,ANDROID-23680780,ANDROID-23876444,ANDROID-23881715,ANDROID-14388161,ANDROID-23658148","https://android.googlesource.com/platform%2Fframeworks%2Fav/+/8ec845c8fe0f03bc57c901bc484541bdd6a7cf80,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/c6a2815eadfce62702d58b3fa3887f24c49e1864,https://android.googlesource.com/platform%2Fexternal%2Faac/+/b3c5a4bb8442ab3158fa1f52b790fadc64546f46,https://android.googlesource.com/platform%2Fexternal%2Ftremolo/+/3830d0b585ada64ee75dea6da267505b19c622fd,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/3878b990f7d53eae7c2cf9246b6ef2db5a049872,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/f3eb82683a80341f5ac23057aab733a57963cab2","5.0, 5.1, 6.0",Critical,Google Internal,RCE,,Remote Code Execution Vulnerabilities,Mediaserver,2015,11,1,2015-11-03T11:59Z
2015-11-01,2015-11-01,CVE-2015-6609,Remote Code Execution Vulnerability in libutils,ANDROID-22953624,https://android.googlesource.com/platform%2Fbootable%2Frecovery/+/ec63d564a86ad5b30f75aa307b4bd271f6a96a56,6.0 and below,Critical,2015-08-03 00:00:00,RCE,,Remote Code Execution Vulnerability,libutils,2015,11,1,2015-11-03T11:59Z
2015-11-01,2015-11-01,CVE-2015-6611,Information Disclosure Vulnerabilities in Mediaserver,"ANDROID-23905951,ANDROID-23912202*,ANDROID-23953967*,ANDROID-23696300,ANDROID-23600291,ANDROID-23756261,ANDROID-23540907,ANDROID-23541506,ANDROID-23284974*,ANDROID-23542351*,ANDROID-23542352*,ANDROID-23515142","https://android.googlesource.com/platform%2Fframeworks%2Fav/+/1c7719820359f4190cd4bfd1a24d521face7b4f8,none,none,https://android.googlesource.com/platform%2Fframeworks%2Fnative/+/b414255f53b560a06e642251535b019327ba0d7b,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/09ed70fab1f1424971ccc105dcdf5be5ce2e2643,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/892354335d49f0b9fcd10e20e0c13e3cd0f1f1cb,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/57bed83a539535bb64a33722fb67231119cb0618,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/d53aced041b7214a92b1f2fd5970d895bb9934e5,none,none,none,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/0981df6e3db106bfb7a56a2b668c012fcc34dd2c",6.0 and below,High,2015-09-07 00:00:00,ID,,Information Disclosure Vulnerabilities,Mediaserver,2015,11,1,2015-11-03T11:59Z
2015-11-01,2015-11-01,CVE-2015-6610,Elevation of Privilege Vulnerability in libstagefright,ANDROID-23707088,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/d26052738f7b095b7e318c8dde7f32db0a48450c,6.0 and below,High,2015-08-19 00:00:00,EoP,,Elevation of Privilege Vulnerability,libstagefright,2015,11,1,2015-11-03T11:59Z
2015-11-01,2015-11-01,CVE-2015-6612,Elevation of Privilege Vulnerability in libmedia,ANDROID-23540426,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/4b219e9e5ab237eec9931497cf10db4d78982d84,6.0 and below,High,2015-08-23 00:00:00,EoP,,Elevation of Privilege Vulnerability,libmedia,2015,11,1,2015-11-03T11:59Z
2015-11-01,2015-11-01,CVE-2015-6613,Elevation of Privilege Vulnerability in Bluetooth,ANDROID-24371736,https://android.googlesource.com/platform%2Fsystem%2Fbt/+/74dad51510f7d7b05c6617ef88168bf0bbdf3fcd,6,High,Google Internal,EoP,,Elevation of Privilege Vulnerability,Bluetooth,2015,11,1,2015-11-03T11:59Z
2015-11-01,2015-11-01,CVE-2015-6614,Elevation Of Privilege Vulnerability in Telephony,ANDROID-21900139,https://android.googlesource.com/platform%2Fframeworks%2Fopt%2Ftelephony/+/70dd1f77873913635288e513564a6c93ae4d0a26,"5.0, 5.1",Moderate,2015-06-08 00:00:00,EoP,,Elevation Of Privilege Vulnerability,Telephony,2015,11,1,2015-11-03T11:59Z
2015-12-01,2015-12-01,CVE-2015-6616,Remote Code Execution Vulnerabilities in Mediaserver,"ANDROID-24630158,ANDROID-23882800,ANDROID-17769851,ANDROID-24441553,ANDROID-24157524","https://android.googlesource.com/platform%2Fframeworks%2Fav/+/257b3bc581bbc65318a4cc2d3c22a07a4429dc1d,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/0d35dd2068d6422c3c77fb68f248cbabf3d0b10c,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/dedaca6f04ac9f95fabe3b64d44cd1a2050f079e,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/5d101298d8b0a78a1dc5bd26dbdada411f4ecd4d,https://android.googlesource.com/platform%2Fexternal%2Flibavc/+/2ee0c1bced131ffb06d1b430b08a202cd3a52005",6.0 and below,Critical,Google Internal,RCE,,Remote Code Execution Vulnerabilities,Mediaserver,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6617,Remote Code Execution Vulnerability in Skia,ANDROID-23648740,https://android.googlesource.com/platform%2Fexternal%2Fskia/+/a1d8ac0ac0af44d74fc082838936ec265216ab60,6.0 and below,Critical,Google internal,RCE,,Remote Code Execution Vulnerability,Skia,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6619,Elevation of Privilege in Kernel,ANDROID-23520714,https://android.googlesource.com/device%2Fhtc%2Fflounder-kernel/+/25d3e5d71865a7c0324423fad87aaabb70e82ee4,6.0 and below,Critical,2015-06-07 00:00:00,EoP,,Elevation of Privilege,Kernel,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6633,Remote Code Execution Vulnerabilities in Display Driver,ANDROID-23987307*,none,6.0 and below,Critical,Google Internal,RCE,,Remote Code Execution Vulnerabilities,Display Driver,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6634,Remote Code Execution Vulnerabilities in Display Driver,ANDROID-24163261,https://android.googlesource.com/platform%2Fhardware%2Fqcom%2Fdisplay/+/25016fd2865943dec1a6b2b167ef85c772fb90f7,5.1 and below,Critical,Google Internal,RCE,,Remote Code Execution Vulnerabilities,Display Driver,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6618,Remote Code Execution Vulnerability in Bluetooth,ANDROID-24595992*,none,"4.4, 5.0, and 5.1",High,2015-09-28 00:00:00,RCE,,Remote Code Execution Vulnerability,Bluetooth,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6620,Elevation of Privilege Vulnerabilities in libstagefright,"ANDROID-24123723,ANDROID-24445127","https://android.googlesource.com/platform%2Fframeworks%2Fav/+/2b8cd9cbb3e72ffd048ffdd1609fac74f61a22ac,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/77c185d5499d6174e7a97b3e1512994d3a803151",6.0 and below,High,2015-09-10 00:00:00,EoP,,Elevation of Privilege Vulnerabilities,libstagefright,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6621,Elevation of Privilege Vulnerability in SystemUI,ANDROID-23909438,https://android.googlesource.com/platform%2Fframeworks%2Fbase/+/e70e8ac93807c51240b2cd9afed35bf454ea00b3,"5.0, 5.1, and 6.0",High,2015-09-07 00:00:00,EoP,,Elevation of Privilege Vulnerability,SystemUI,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6622,Information Disclosure Vulnerability in Native Frameworks Library,ANDROID-23905002,https://android.googlesource.com/platform%2Fframeworks%2Fnative/+/5d17838adef13062717322e79d4db0b9bb6b2395,6.0 and below,High,2015-09-07 00:00:00,ID,,Information Disclosure Vulnerability,Native Frameworks Library,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6623,Elevation of Privilege Vulnerability in Wi-Fi,ANDROID-24872703,https://android.googlesource.com/platform%2Fframeworks%2Fopt%2Fnet%2Fwifi/+/a15a2ee69156fa6fff09c0dd9b8182cb8fafde1c,6,High,Google Internal,EoP,,Elevation of Privilege Vulnerability,Wi-Fi,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6624,Elevation of Privilege Vulnerability in System Server,ANDROID-23999740,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/f86a441cb5b0dccd3106019e578c3535498e5315,6,High,Google internal,EoP,,Elevation of Privilege Vulnerability,System Server,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6632,Information Disclosure Vulnerabilities in libstagefright,ANDROID-24346430,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/5cae16bdce77b0a3ba590b55637f7d55a2f35402,6.0 and below,High,Google Internal,ID,,Information Disclosure Vulnerabilities,libstagefright,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6626,Information Disclosure Vulnerabilities in libstagefright,ANDROID-24310423,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/8dde7269a5356503d2b283234b6cb46d0c3f214e,6.0 and below,High,2015-09-02 00:00:00,ID,,Information Disclosure Vulnerabilities,libstagefright,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6631,Information Disclosure Vulnerabilities in libstagefright,ANDROID-24623447,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/7ed8d1eff9b292b3c65a875b13a549e29654534b,6.0 and below,High,2015-08-21 00:00:00,ID,,Information Disclosure Vulnerabilities,libstagefright,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6627,Information Disclosure Vulnerability in Audio,ANDROID-24211743,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/8c987fa71326eb0cc504959a5ebb440410d73180,6.0 and below,High,Google Internal,ID,,Information Disclosure Vulnerability,Audio,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6628,Information Disclosure Vulnerability in Media Framework,ANDROID-24074485,https://android.googlesource.com/platform%2Fframeworks%2Fav/+/5e7e87a383fdb1fece977097a7e3cc51b296f3a0,6.0 and below,High,2015-09-08 00:00:00,ID,,Information Disclosure Vulnerability,Media Framework,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6629,Information Disclosure Vulnerability in Wi-Fi,ANDROID-22667667,https://android.googlesource.com/platform%2Fframeworks%2Fopt%2Fnet%2Fwifi/+/8b41627f7411306a0c42867fb526fa214f2991cd,5.1 and 5.0,High,Google Internal,ID,,Information Disclosure Vulnerability,Wi-Fi,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6625,Elevation of Privilege Vulnerability in System Server,ANDROID-23936840,https://android.googlesource.com/platform%2Fframeworks%2Fopt%2Fnet%2Fwifi/+/29fa7d2ffc3bba55173969309e280328b43eeca1,6,Moderate,Google Internal,EoP,,Elevation of Privilege Vulnerability,System Server,2015,12,1,2015-12-08T23:59Z
2015-12-01,2015-12-01,CVE-2015-6630,Information Disclosure Vulnerability in SystemUI,ANDROID-19121797,https://android.googlesource.com/platform%2Fframeworks%2Fbase/+/51c2619c7706575a171cf29819db14e91b815a62,"5.0, 5.1, and 6.0",Moderate,2015-01-22 00:00:00,ID,,Information Disclosure Vulnerability,SystemUI,2015,12,1,2015-12-08T23:59Z
2016-01-01,2016-01-01,CVE-2015-6636,Remote Code Execution Vulnerability in Mediaserver,"ANDROID-25070493,ANDROID-24686670","https://android.googlesource.com/platform%2Fexternal%2Flibhevc/+/b9f7c2c45c6fe770b7daffb9a4e61522d1f12d51,https://android.googlesource.com/platform%2Fexternal%2Flibhevc/+/e8bfec1fa41eafa1fd8e05d0fdc53ea0f2379518","5.0, 5.1.1, 6.0, 6.0.1",Critical,Google Internal,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6637,Elevation of Privilege Vulnerability in misc-sd driver,ANDROID-25307013*,none,"4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",Critical,2015-10-26 00:00:00,EoP,,Elevation of Privilege Vulnerability,misc-sd driver,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6638,Elevation of Privilege Vulnerability in the Imagination Technologies driver,ANDROID-24673908*,none,"5.0, 5.1.1, 6.0, 6.0.1",Critical,Google Internal,EoP,,Elevation of Privilege Vulnerability,the Imagination Technologies driver,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6639,Elevation of Privilege Vulnerabilities in Trustzone,ANDROID-24446875*,none,"5.0, 5.1.1, 6.0, 6.0.1",Critical,2015-09-23 00:00:00,EoP,,Elevation of Privilege Vulnerabilities,Trustzone,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6647,Elevation of Privilege Vulnerabilities in Trustzone,ANDROID-24441554*,none,"5.0, 5.1.1, 6.0, 6.0.1",Critical,2015-09-27 00:00:00,EoP,,Elevation of Privilege Vulnerabilities,Trustzone,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6640,Elevation of Privilege Vulnerability in Kernel,ANDROID-20017123,https://android.googlesource.com/kernel%2Fcommon/+/69bfe2d957d903521d32324190c2754cb073be15,"4.4.4, 5.0, 5.1.1, 6.0",Critical,Google Internal,EoP,,Elevation of Privilege Vulnerability,Kernel,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6641,Elevation of Privilege Vulnerability in Bluetooth,ANDROID-23607427,https://android.googlesource.com/platform%2Fpackages%2Fapps%2FSettings/+/98f11fd1a4752beed56b5fe7a4097ec0ae0c74b3,"6.0, 6.0.1",High,Google Internal,EoP,,Elevation of Privilege Vulnerability,Bluetooth,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6642,Information Disclosure Vulnerability in Kernel,ANDROID-24157888*,none,"4.4.4, 5.0, 5.1.1, 6.0",High,2015-09-12 00:00:00,ID,,Information Disclosure Vulnerability,Kernel,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6643,Elevation of Privilege Vulnerability in Setup Wizard,ANDROID-25290269,https://android.googlesource.com/platform/packages/apps/Settings/+/665ac7bc29396fd5af2ecfdfda2b9de7a507daa0,"5.1.1, 6.0, 6.0.1",Moderate,Google Internal,EoP,,Elevation of Privilege Vulnerability,Setup Wizard,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-5310,Elevation of Privilege Vulnerability in Wi-Fi,ANDROID-25266660,https://android.googlesource.com/platform%2Fexternal%2Fwpa_supplicant_8/+/1e9857b5f1dd84ac5a0ada0150b1b9c87d44d99d,"4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",Moderate,2015-10-25 00:00:00,EoP,,Elevation of Privilege Vulnerability,Wi-Fi,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6644,Information Disclosure Vulnerability in Bouncy Castle,ANDROID-24106146,https://android.googlesource.com/platform/external/bouncycastle/+/3e128c5fea3a0ca2d372aa09c4fd4bb0eadfbd3f,"4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",Moderate,Google Internal,ID,,Information Disclosure Vulnerability,Bouncy Castle,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6645,Denial of Service Vulnerability in SyncManager,ANDROID-23591205,https://android.googlesource.com/platform%2Fframeworks%2Fbase/+/c0f39c1ece72a05c796f7ba30b7a2b5b580d5025,"4.4.4, 5.0, 5.1.1, 6.0",Moderate,Google Internal,DoS,,Denial of Service Vulnerability,SyncManager,2016,1,1,2016-01-06T19:59Z
2016-01-01,2016-01-01,CVE-2015-6646,Attack Surface Reduction for Nexus Kernels,ANDROID-22300191*,none,6,Moderate,Google Internal,,,,,2016,1,1,2016-01-06T19:59Z
2016-02-01,2016-02-01,CVE-2016-0801,Remote Code Execution Vulnerability in Broadcom Wi-Fi Driver,"ANDROID-25662029,ANDROID-25662233","https://android.googlesource.com/kernel/msm/+/68cdc8df1cb6622980b791ce03e99c255c9888af%5E!"",https://android.googlesource.com/kernel/msm/+/68cdc8df1cb6622980b791ce03e99c255c9888af%5E!""","4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",Critical,2015-10-25 00:00:00,RCE,,Remote Code Execution Vulnerability,Broadcom Wi-Fi Driver,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0802,Remote Code Execution Vulnerability in Broadcom Wi-Fi Driver,ANDROID-25306181,"https://android.googlesource.com/kernel/msm/+/3fffc78f70dc101add8b82af878d53457713d005%5E%21/""","4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",Critical,"Oct 26,2015",RCE,,Remote Code Execution Vulnerability,Broadcom Wi-Fi Driver,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0803,Remote Code Execution Vulnerability in Mediaserver,ANDROID-25812794,"https://android.googlesource.com/platform%2Fframeworks%2Fav/+/50270d98e26fa18b20ca88216c3526667b724ba7""","4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",Critical,2015-11-19 00:00:00,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0804,Remote Code Execution Vulnerability in Mediaserver,ANDROID-25070434,"https://android.googlesource.com/platform%2Fframeworks%2Fav/+/224858e719d045c8554856b12c4ab73d2375cf33""","5.0, 5.1.1, 6.0, 6.0.1",Critical,2015-10-12 00:00:00,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0805,Elevation of Privilege Vulnerability in Qualcomm Performance Module,ANDROID-25773204,none,"4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",Critical,2015-11-15 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Performance Module,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0806,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,ANDROID-25344453,none,"4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",Critical,2015-11-15 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0807,Elevation of Privilege Vulnerability in the Debuggerd ,ANDROID-25187394,"https://android.googlesource.com/platform%2Fsystem%2Fcore/+/d917514bd6b270df431ea4e781a865764d406120""",6.0 and 6.0.1,Critical,Google Internal,EoP,,Elevation of Privilege Vulnerability,the Debuggerd ,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0808,Denial of Service Vulnerability in Minikin,ANDROID-25645298,"https://android.googlesource.com/platform/frameworks/minikin/+/ed4c8d79153baab7f26562afb8930652dfbf853b""","5.0, 5.1.1, 6.0, 6.0.1",High,2015-11-03 00:00:00,DoS,,Denial of Service Vulnerability,Minikin,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0809,Elevation of Privilege Vulnerability in Wi-Fi,ANDROID-25753768,"https://android.googlesource.com/platform/hardware/broadcom/wlan/+/2c5a4fac8bc8198f6a2635ede776f8de40a0c3e1%5E%21/#F0""","6.0, 6.0.1",High,Google Internal,EoP,,Elevation of Privilege Vulnerability,Wi-Fi,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0810,Elevation of Privilege Vulnerability in Mediaserver ,ANDROID-25781119,"https://android.googlesource.com/platform%2Fframeworks%2Fav/+/19c47afbc402542720ddd280e1bbde3b2277b586""","4.4.4, 5.0, 5.1.1, 6.0, 6.0.1",High,Google Internal,EoP,,Elevation of Privilege Vulnerability,Mediaserver ,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0811,Information Disclosure Vulnerability in libmediaplayerservice ,ANDROID-25800375,"https://android.googlesource.com/platform%2Fframeworks%2Fav/+/22f824feac43d5758f9a70b77f2aca840ba62c3b""","6.0, 6.0.1",High,2015-11-16 00:00:00,ID,,Information Disclosure Vulnerability,libmediaplayerservice ,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0812,Elevation of Privilege Vulnerability in Setup Wizard,ANDROID-25229538,"https://android.googlesource.com/platform%2Fframeworks%2Fbase/+/84669ca8de55d38073a0dcb01074233b0a417541""","5.1.1, 6.0",Moderate,Google Internal,EoP,,Elevation of Privilege Vulnerability,Setup Wizard,2016,2,1,2016-02-07T01:59Z
2016-02-01,2016-02-01,CVE-2016-0813,Elevation of Privilege Vulnerability in Setup Wizard,ANDROID-25476219,"https://android.googlesource.com/platform%2Fframeworks%2Fbase/+/16a76dadcc23a13223e9c2216dad1fe5cad7d6e1""","5.1.1, 6.0, 6.0.1",Moderate,Google Internal,EoP,,Elevation of Privilege Vulnerability,Setup Wizard,2016,2,1,2016-02-07T01:59Z
2016-03-01,2016-03-01,CVE-2016-0815,Remote Code Execution Vulnerability in Mediaserver,ANDROID-26365349,"https://android.googlesource.com/platform%2Fframeworks%2Fav/+/5403587a74aee2fb57076528c3927851531c8afb""","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,Google Internal,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0816,Remote Code Execution Vulnerability in Mediaserver,ANDROID-25928803,"https://android.googlesource.com/platform/external/libavc/+/4a524d3a8ae9aa20c36430008e6bd429443f8f1d""","6.0, 6.0.1",Critical,Google Internal,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-1621,Remote Code Execution Vulnerabilities in libvpx,ANDROID-23452792,https://android.googlesource.com/platform/frameworks/av/+/5a6788730acfc6fd8f4a6ef89d2c376572a26b55,"4.4.4, 5.0.2, 5.1.1, 6.0",Critical,Google Internal,RCE,,Remote Code Execution Vulnerabilities,libvpx,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0818,Elevation of Privilege in Conscrypt,ANDROID-26232830,"https://android.googlesource.com/platform/external/conscrypt/+/c4ab1b959280413fb11bf4fd7f6b4c2ba38bd779""","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,Google Internal,EoP,,Elevation of Privilege,Conscrypt,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0819,Elevation of Privilege Vulnerability in the Qualcomm Performance Component,ANDROID-25364034,none,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2015-10-29 00:00:00,EoP,,Elevation of Privilege Vulnerability,the Qualcomm Performance Component,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0820,Elevation of Privilege Vulnerability in MediaTek Wi-Fi Kernel Driver,ANDROID-26267358,none,6.0.1,Critical,2015-12-18 00:00:00,EoP,,Elevation of Privilege Vulnerability,MediaTek Wi-Fi Kernel Driver,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0728,Elevation of Privilege Vulnerability in Kernel Keyring Component,ANDROID-26636379,none,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1 ",Critical,2016-01-11 00:00:00,EoP,,Elevation of Privilege Vulnerability,Kernel Keyring Component,2016,3,1,2016-02-08T03:59Z
2016-03-01,2016-03-01,CVE-2016-0821,Mitigation Bypass Vulnerability in the Kernel,ANDROID-26186802,none,6.0.1,High,Google Internal,,,Mitigation Bypass Vulnerability,the Kernel,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0822,Elevation of Privilege in MediaTek Connectivity Kernel Driver,ANDROID-25873324,none,6.0.1,High,2015-11-24 00:00:00,EoP,,Elevation of Privilege,MediaTek Connectivity Kernel Driver,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0823,Information Disclosure Vulnerability in Kernel,ANDROID-25739721,none,6.0.1,High,Google Internal,ID,,Information Disclosure Vulnerability,Kernel,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0824,Information Disclosure Vulnerability in libstagefright,ANDROID-25765591,https://android.googlesource.com/platform/external/libmpeg2/+/ffab15eb80630dc799eb410855c93525b75233c3,"6.0, 6.0.1",High,2015-11-18 00:00:00,ID,,Information Disclosure Vulnerability,libstagefright,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0825,Information Disclosure Vulnerability in Widevine,ANDROID-20860039,none,6.0.1,High,Google Internal,ID,,Information Disclosure Vulnerability,Widevine,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0826,Elevation of Privilege Vulnerability in Mediaserver ,ANDROID-26265403,"https://android.googlesource.com/platform/frameworks/av/+/c9ab2b0bb05a7e19fb057e79b36e232809d70122""","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2015-12-17 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver ,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0827,Elevation of Privilege Vulnerability in Mediaserver ,ANDROID-26347509,"https://android.googlesource.com/platform/frameworks/av/+/9e29523b9537983b4c4b205ff868d0b3bca0383b""","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2015-12-28 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver ,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0828,Information Disclosure Vulnerability in Mediaserver ,ANDROID-26338113,"https://android.googlesource.com/platform/frameworks/native/+/dded8fdbb700d6cc498debc69a780915bc34d755""","5.0.2, 5.1.1, 6.0, 6.0.1",High,2015-12-27 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver ,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0829,Information Disclosure Vulnerability in Mediaserver ,ANDROID-26338109,"https://android.googlesource.com/platform/frameworks/native/+/d06421fd37fbb7fd07002e6738fac3a223cb1a62""","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2015-12-27 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver ,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0830,Remote Denial of Service Vulnerability in Bluetooth,ANDROID-26071376,"https://android.googlesource.com/platform/system/bt/+/d77f1999ecece56c1cbb333f4ddc26f0b5bac2c5""","6.0, 6.0.1",High,Google Internal,DoS,,Remote Denial of Service Vulnerability,Bluetooth,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0831,Information Disclosure Vulnerability in Telephony,ANDROID-25778215,"https://android.googlesource.com/platform/frameworks/opt/telephony/+/79eecef63f3ea99688333c19e22813f54d4a31b1""","5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2015-11-16 00:00:00,ID,,Information Disclosure Vulnerability,Telephony,2016,3,1,2016-03-12T21:59Z
2016-03-01,2016-03-01,CVE-2016-0832,Elevation of Privilege Vulnerability in Setup Wizard,ANDROID-25955042,none,"5.1.1, 6.0, 6.0.1",Moderate,Google Internal,EoP,,Elevation of Privilege Vulnerability,Setup Wizard,2016,3,1,2016-03-12T21:59Z
2016-04-01,2016-04-01,CVE-2014-6060,Remote Code Execution Vulnerability in DHCPCD,"ANDROID-15268738,ANDROID-16677003","https://android.googlesource.com/platform/external/dhcpcd/+/38cb7a7feff88d58fb4a565ba7f12cd4469a,https://android.googlesource.com/platform/external/dhcpcd/+/de806dfdb6dd3b9dec5d1d23c9029fb30079",4.4.4,"Critical,Critical","July 30, 2014;July 30, 20",RCE,,Remote Code Execution Vulnerability,DHCPCD,2016,4,1,2014-09-04T17:55Z
2016-04-01,2016-04-01,CVE-2016-1503,Remote Code Execution Vulnerability in DHCPCD,ANDROID-26461634,https://android.googlesource.com/platform/external/dhcpcd/+/1390ace71179f04a09c300ee8d0300aa69d9,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-01-04 00:00:00,RCE,,Remote Code Execution Vulnerability,DHCPCD,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0834,Remote Code Execution Vulnerability in Media Codec,ANDROID-26220548,none,"6.0, 6.0.1",Critical,2015-12-16 00:00:00,RCE,,Remote Code Execution Vulnerability,Media Codec,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0835,Remote Code Execution Vulnerability in Mediaserver,ANDROID-26070014,https://android.googlesource.com/platform/external/libmpeg2/+/ba604d336b40fd4bde1622f64d67135bdbd6,"6.0, 6.0.1",Critical,2015-12-06 00:00:00,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0836,Remote Code Execution Vulnerability in Mediaserver,ANDROID-25812590,https://android.googlesource.com/platform/external/libmpeg2/+/8b4ed5a23175b7ffa56eea4678db7287f825,"6.0, 6.0.1",Critical,2015-11-19 00:00:00,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0837,Remote Code Execution Vulnerability in Mediaserver,ANDROID-27208621,https://android.googlesource.com/platform/frameworks/av/+/7a282fb64fef25349e9d341f102d9cea3bf7,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-02-11 00:00:00,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0838,Remote Code Execution Vulnerability in Mediaserver,ANDROID-26366256,https://android.googlesource.com/platform/external/sonivox/+/3ac044334c3ff6a61cb4238ff3ddaf17c7ef,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,Google Internal,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0839,Remote Code Execution Vulnerability in Mediaserver,ANDROID-25753245,https://android.googlesource.com/platform/hardware/qcom/audio/+/ebbb82365172337c6c250c6cac4e326970a9,"6.0, 6.0.1",Critical,Google Internal,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0840,Remote Code Execution Vulnerability in Mediaserver,ANDROID-26399350,https://android.googlesource.com/platform/external/libavc/+/c57fc3703ae2e0d41b1f6580c50015937f2d,"6.0, 6.0.1",Critical,Google Internal,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0841,Remote Code Execution Vulnerability in Mediaserver,ANDROID-26040840,https://android.googlesource.com/platform/frameworks/av/+/3097f364237fb552871f7639d37a7afa4563,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,Google Internal,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0842,Remote Code Execution Vulnerability in libstagefright,ANDROID-25818142,https://android.googlesource.com/platform/external/libavc/+/943323f1d9d3dd5c2634deb26cbe72343ca6,"6.0, 6.0.1",Critical,2015-11-23 00:00:00,RCE,,Remote Code Execution Vulnerability,libstagefright,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2015-1805,Elevation of Privilege Vulnerability in Kernel,ANDROID-27275324,none,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-02-19 00:00:00,EoP,,Elevation of Privilege Vulnerability,Kernel,2016,4,1,2015-08-08T10:59Z
2016-04-01,2016-04-01,CVE-2016-0843,Elevation of Privilege Vulnerability in Qualcomm Performance Module,ANDROID-25801197,none,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2015-11-19 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Performance Module,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0844,Elevation of Privilege Vulnerability in Qualcomm RF component,ANDROID-26324307,https://android.googlesource.com/platform/external/sepolicy/+/57531cacb40682be4b1189c721fd1e7f25bf,"6.0, 6.0.1",Critical,2015-12-25 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm RF component,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2014-9322,Elevation of Privilege Vulnerability in Kernel,22479335628876606217891ANDROID-26927260,none,"6.0, 6.0.1",Critical,2015-12-25 00:00:00,EoP,,Elevation of Privilege Vulnerability,Kernel,2016,4,1,2014-12-17T11:59Z
2016-04-01,2016-04-01,CVE-2016-0846, Elevation of Privilege Vulnerability in IMemory Native Interface,ANDROID-26877992,https://android.googlesource.com/platform/frameworks/native/+/f3199c228aced7858b75a8070b8358c155ae,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-01-29 00:00:00,EoP,, Elevation of Privilege Vulnerability,IMemory Native Interface,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0847, Elevation of Privilege Vulnerability in Telecom Component,ANDROID-26864502,https://android.googlesource.com/platform/packages/services/Telecomm/+/2750faaa1ec819eed9acffea7bd3daf867fd,"5.0.2, 5.1.1, 6.0, 6.0.1",High,Google Internal,EoP,, Elevation of Privilege Vulnerability,Telecom Component,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0848, Elevation of Privilege Vulnerability in Download Manager,ANDROID-26211054,https://android.googlesource.com/platform/packages/providers/DownloadProvider/+/bdc831357e7a116bc561d51bf2ddc85ff11c,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2015-12-14 00:00:00,EoP,, Elevation of Privilege Vulnerability,Download Manager,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0849, Elevation of Privilege Vulnerability in Recovery Procedure,ANDROID-26960931,https://android.googlesource.com/platform/bootable/recovery/+/28a566f7731b4cb76d2a9ba16d997ac5aeb0,"5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-02-03 00:00:00,EoP,, Elevation of Privilege Vulnerability,Recovery Procedure,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-0850, Elevation of Privilege Vulnerability in Bluetooth,ANDROID-26551752,https://android.googlesource.com/platform/external/bluetooth/bluedroid/+/c677ee92595335233eb0e7b59809a1a94e7a,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-01-13 00:00:00,EoP,, Elevation of Privilege Vulnerability,Bluetooth,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2409, Elevation of Privilege Vulnerability in Texas Instruments Haptic Driver,ANDROID-25981545,none,"6.0, 6.0.1",High,2015-12-25 00:00:00,EoP,, Elevation of Privilege Vulnerability,Texas Instruments Haptic Driver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2410, Elevation of Privilege Vulnerability in Qualcomm Video Kernel Driver,ANDROID-26291677,none,"6.0, 6.0.1",High,2015-12-21 00:00:00,EoP,, Elevation of Privilege Vulnerability,Qualcomm Video Kernel Driver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2411, Elevation of Privilege Vulnerability in Qualcomm Power Management component,ANDROID-26866053,none,"6.0, 6.0.1",High,2016-01-28 00:00:00,EoP,, Elevation of Privilege Vulnerability,Qualcomm Power Management component,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2412, Elevation of Privilege Vulnerability in System_server,ANDROID-26593930,https://android.googlesource.com/platform/external/skia/+/b36c23b3e6b0b316075cc43e466d44c62508,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-01-15 00:00:00,EoP,, Elevation of Privilege Vulnerability,System_server,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2413, Elevation of Privilege Vulnerability in Mediaserver,ANDROID-26403627,https://android.googlesource.com/platform/frameworks/av/+/25be9ac20db51044e1b09ca67906355e4f32,"5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-01-05 00:00:00,EoP,, Elevation of Privilege Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2414,Denial of Service Vulnerability in Minikin,ANDROID-26413177,https://android.googlesource.com/platform/frameworks/minikin/+/ca8ac8acdad662230ae37998c6c4091bb394,"5.0.2, 5.1.1, 6.0, 6.0.1",High,2015-11-03 00:00:00,DoS,,Denial of Service Vulnerability,Minikin,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2415, Information Disclosure Vulnerability in Exchange ActiveSync,ANDROID-26488455,https://android.googlesource.com/platform/packages/apps/Exchange/+/0d1a38b1755efe7ed4e8d7302a24186616bb,"5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-01-11 00:00:00,ID,, Information Disclosure Vulnerability,Exchange ActiveSync,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2416,Information Disclosure Vulnerability in Mediaserver,ANDROID-27046057,https://android.googlesource.com/platform/frameworks/native/+/85d253fab5e2c01bd90990667c6de25c282f,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-02-05 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2417,Information Disclosure Vulnerability in Mediaserver,ANDROID-26914474,https://android.googlesource.com/platform/frameworks/av/+/1171e7c047bf79e7c93342bb6a812c9edd86,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-02-01 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2418,Information Disclosure Vulnerability in Mediaserver,ANDROID-26324358,https://android.googlesource.com/platform/frameworks/av/+/8d87321b704cb3f88e8cae668937d001fd63,"6.0, 6.0.1",High,2015-12-24 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2419,Information Disclosure Vulnerability in Mediaserver,ANDROID-26323455,https://android.googlesource.com/platform/frameworks/av/+/5a856f2092f7086aa0fea9ae06b9255befcd,"6.0, 6.0.1",High,2015-12-24 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2420, Elevation of Privilege Vulnerability in Debuggerd Component,ANDROID-26403620,https://android.googlesource.com/platform/system/core/+/669ecc2f5e80ff924fa20ce7445354a7c5bc,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-01-05 00:00:00,EoP,, Elevation of Privilege Vulnerability,Debuggerd Component,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2421, Elevation of Privilege Vulnerability in Setup Wizard,ANDROID-26154410,none,"5.1.1, 6.0, 6.0.1",Moderate,Google Internal,EoP,, Elevation of Privilege Vulnerability,Setup Wizard,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2422,Elevation of Privilege Vulnerability in Wi-Fi,ANDROID-26324357,https://android.googlesource.com/platform/packages/apps/CertInstaller/+/70dde9870e9450e10418a32206ac1bb30f03,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2015-12-23 00:00:00,EoP,,Elevation of Privilege Vulnerability,Wi-Fi,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2423,Elevation of Privilege Vulnerability in Telephony,ANDROID-26303187,https://android.googlesource.com/platform/packages/services/Telecomm/+/a06c9a4aef69ae27b951523cf72bf72412bf,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google Internal,EoP,,Elevation of Privilege Vulnerability,Telephony,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2424,Denial of Service Vulnerability in SyncStorageEngine,ANDROID-26513719,https://android.googlesource.com/platform/frameworks/base/+/d3383d5bfab296ba3adbc121ff8a7b542bde,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google Internal,DoS,,Denial of Service Vulnerability,SyncStorageEngine,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2425,Information Disclosure Vulnerability in AOSP Mail,"ANDROID-26989185,ANDROID-7154234","https://android.googlesource.com/platform/packages/apps/UnifiedEmail/+/0d9dfd649bae9c181e3afc5d571903f1eb5d,none","4.4.4, 5.1.1, 6.0, 6.0.1, 5.0.2","Moderate,Moderate","Jan 29, 2016;Jan 29, 2016",ID,,Information Disclosure Vulnerability,AOSP Mail,2016,4,1,2016-04-18T00:59Z
2016-04-01,2016-04-01,CVE-2016-2426,Information Disclosure Vulnerability in Framework,ANDROID-26094635,https://android.googlesource.com/platform/frameworks/base/+/63363af721650e426db5b0bdfb8b2d4fe36a,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2015-12-08 00:00:00,ID,,Information Disclosure Vulnerability,Framework,2016,4,1,2016-04-18T00:59Z
2016-05-01,2016-05-01,CVE-2016-2428,Remote Code Execution Vulnerability in Mediaserver,26751339,https://android.googlesource.com/platform/external/aac/+/5d4405f601fa11a8955fd7611532c982420e4206,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-01-22 00:00:00,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2429,Remote Code Execution Vulnerability in Mediaserver,27211885,https://android.googlesource.com/platform/external/flac/+/b499389da21d89d32deff500376c5ee4f8f0b04c,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-02-16 00:00:00,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2430,Elevation of Privilege Vulnerability in Debuggerd,27299236,https://android.googlesource.com/platform/system/core/+/ad54cfed4516292654c997910839153264ae00a0,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-02-22 00:00:00,EoP,,Elevation of Privilege Vulnerability,Debuggerd,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2431,Elevation of Privilege Vulnerability in Qualcomm TrustZone ,24968809*,none,,Critical,2015-10-15 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm TrustZone ,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2432,Elevation of Privilege Vulnerability in Qualcomm TrustZone ,25913059*,none,,Critical,2015-11-28 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm TrustZone ,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2015-0569,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,26754117*,none,,Critical,2016-01-23 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2015-0570,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,26764809*,none,,Critical,2016-01-25 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2434,Elevation of Privilege Vulnerability in NVIDIA Video Driver,27251090*,none,,Critical,2016-02-17 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Video Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2435,Elevation of Privilege Vulnerability in NVIDIA Video Driver,27297988*,none,,Critical,2016-02-20 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Video Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2436,Elevation of Privilege Vulnerability in NVIDIA Video Driver,27299111*,none,,Critical,2016-02-22 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Video Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2437,Elevation of Privilege Vulnerability in NVIDIA Video Driver,27436822*,none,,Critical,2016-03-01 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Video Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2015-1805,Elevation of Privilege Vulnerability in Kernel,27275324*,none,,Critical,2016-02-19 00:00:00,EoP,,Elevation of Privilege Vulnerability,Kernel,2016,5,1,2015-08-08T10:59Z
2016-05-01,2016-05-01,CVE-2016-2438,Remote Code Execution Vulnerability in Kernel,26636060*,none,,High,Google Internal,RCE,,Remote Code Execution Vulnerability,Kernel,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2060,Information Disclosure Vulnerability in Qualcomm Tethering Controller,27942588*,none,,High,2016-03-23 00:00:00,ID,,Information Disclosure Vulnerability,Qualcomm Tethering Controller,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2439,Remote Code Execution Vulnerability in Bluetooth,27411268,https://android.googlesource.com/platform/system/bt/+/9b534de2aca5d790c2a1c4d76b545f16137d95dd,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-02-28 00:00:00,RCE,,Remote Code Execution Vulnerability,Bluetooth,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2440,Elevation of Privilege Vulnerability in Binder,27252896,https://android.googlesource.com/platform/frameworks/native/+/a59b827869a2ea04022dd225007f29af8d61837a,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-02-18 00:00:00,EoP,,Elevation of Privilege Vulnerability,Binder,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2441,Elevation of Privilege Vulnerability in Qualcomm Buspm Driver,26354602*,none,,High,2015-12-30 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Buspm Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2442,Elevation of Privilege Vulnerability in Qualcomm Buspm Driver,26494907*,none,,High,2015-12-30 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Buspm Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2443,Elevation of Privilege Vulnerability in Qualcomm MDP Driver,26404525*,none,,High,2016-01-05 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm MDP Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2015-0571,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,26763920*,none,,High,2016-01-25 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2444,Elevation of Privilege Vulnerability in NVIDIA Video Driver,27208332*,none,,High,2016-02-16 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Video Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2445,Elevation of Privilege Vulnerability in NVIDIA Video Driver,27253079*,none,,High,2016-02-17 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Video Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2446,Elevation of Privilege Vulnerability in NVIDIA Video Driver,27441354*,none,,High,2016-03-01 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Video Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-4477,Elevation of Privilege Vulnerability in Wi-Fi,27371366,https://android.googlesource.com/platform/external/wpa_supplicant_8/+/b79e09574e50e168dd5f19d540ae0b9a05bd1535,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-02-24 00:00:00,EoP,,Elevation of Privilege Vulnerability,Wi-Fi,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2448,Elevation of Privilege Vulnerability in Mediaserver,27533704,https://android.googlesource.com/platform/frameworks/av/+/a2d1d85726aa2a3126e9c331a8e00a8c319c9e2b,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-07 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2449,Elevation of Privilege Vulnerability in Mediaserver,27568958,https://android.googlesource.com/platform/frameworks/av/+/b04aee833c5cfb6b31b8558350feb14bb1a0f353,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-09 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2450,Elevation of Privilege Vulnerability in Mediaserver,27569635,https://android.googlesource.com/platform/frameworks/av/+/7fd96ebfc4c9da496c59d7c45e1f62be178e626d,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-09 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2451,Elevation of Privilege Vulnerability in Mediaserver,27597103,https://android.googlesource.com/platform/frameworks/av/+/f9ed2fe6d61259e779a37d4c2d7edb33a1c1f8ba,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-10 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2452,Elevation of Privilege Vulnerability in Mediaserver,27662364,https://android.googlesource.com/platform/frameworks/av/+/44749eb4f273f0eb681d0fa013e3beef754fa687,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-14 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2453,Elevation of Privilege Vulnerability in MediaTek Wi-Fi Driver,27549705*,none,,High,2016-03-08 00:00:00,EoP,,Elevation of Privilege Vulnerability,MediaTek Wi-Fi Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2454,Remote Denial of Service Vulnerability in Qualcomm Hardware Codec,26221024*,none,,High,2015-12-16 00:00:00,DoS,,Remote Denial of Service Vulnerability,Qualcomm Hardware Codec,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2461,Elevation of Privilege Vulnerability in Conscrypt,27324690,https://android.googlesource.com/platform/external/conscrypt/+/50d0447566db4a77d78d592f1c1b5d31096fac8f,"6.0, 6.0.1",Moderate,Google Internal,EoP,,Elevation of Privilege Vulnerability,Conscrypt,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2462,Elevation of Privilege Vulnerability in Conscrypt,27371173,https://android.googlesource.com/platform/external/conscrypt/+/8bec47d2184fca7e8b7337d2a65b2b75a9bc8f54,"6.0, 6.0.1",Moderate,Google Internal,EoP,,Elevation of Privilege Vulnerability,Conscrypt,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-0705,Elevation of Privilege Vulnerability in OpenSSL & BoringSSL,27449871,https://android.googlesource.com/platform/external/boringssl/+/591be84e89682622957c8f103ca4be3a5ed0f800,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-02-07 00:00:00,EoP,,Elevation of Privilege Vulnerability,OpenSSL & BoringSSL,2016,5,1,2016-03-03T20:59Z
2016-05-01,2016-05-01,CVE-2016-2456,Elevation of Privilege Vulnerability in MediaTek Wi-Fi Driver,27275187*,none,,Moderate,2016-02-19 00:00:00,EoP,,Elevation of Privilege Vulnerability,MediaTek Wi-Fi Driver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2457,Elevation of Privilege Vulnerability in Wi-Fi,27411179,https://android.googlesource.com/platform/frameworks/base/+/12332e05f632794e18ea8c4ac52c98e82532e5db,"5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-02-29 00:00:00,EoP,,Elevation of Privilege Vulnerability,Wi-Fi,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2458,Information Disclosure Vulnerability in AOSP Mail,27335139,https://android.googlesource.com/platform/packages/apps/UnifiedEmail/+/a55168330d9326ff2120285763c818733590266a,"5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-02-23 00:00:00,ID,,Information Disclosure Vulnerability,AOSP Mail,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2459,Information Disclosure Vulnerability in Mediaserver,27556038,https://android.googlesource.com/platform/frameworks/native/+/a30d7d90c4f718e46fb41a99b3d52800e1011b73,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-03-07 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-2460,Information Disclosure Vulnerability in Mediaserver,27555981,https://android.googlesource.com/platform/frameworks/native/+/a30d7d90c4f718e46fb41a99b3d52800e1011b73,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-03-07 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver,2016,5,1,2016-05-09T10:59Z
2016-05-01,2016-05-01,CVE-2016-0774,Denial of Service Vulnerability in Kernel,27721803*,none,,Low,2016-03-17 00:00:00,DoS,,Denial of Service Vulnerability,Kernel,2016,5,1,2016-04-27T17:59Z
2016-06-01,2016-06-01,CVE-2016-2463,Remote Code Execution Vulnerability in Mediaserver,27855419,https://android.googlesource.com/platform/frameworks/av/+/2b6f22dc64d456471a1dc6df09d515771d1427c8,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-03-25 00:00:00,RCE,,Remote Code Execution Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2464,Remote Code Execution Vulnerabilities in libwebm,23167726,https://android.googlesource.com/platform/external/libvpx/+/cc274e2abe8b2a6698a5c47d8aa4bb45f1f9538d,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,Google Internal,RCE,,Remote Code Execution Vulnerabilities,libwebm,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2465,Elevation of Privilege Vulnerability in Qualcomm Video Driver,27407865,none,,Critical,2016-02-21 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Video Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2466,Elevation of Privilege Vulnerability in Qualcomm Sound Driver,27947307,none,,Critical,2016-02-27 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Sound Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2467,Elevation of Privilege Vulnerability in Qualcomm Sound Driver,28029010,none,,Critical,2014-03-13 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Sound Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2468,Elevation of Privilege Vulnerability in Qualcomm GPU Driver,27475454,none,,Critical,2016-03-02 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm GPU Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2062,Elevation of Privilege Vulnerability in Qualcomm GPU Driver,27364029,none,,Critical,2016-03-06 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm GPU Driver,2016,6,1,2016-05-05T21:59Z
2016-06-01,2016-06-01,CVE-2016-2474,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,27424603,none,,Critical,Google Internal,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2475,Elevation of Privilege Vulnerability in Broadcom Wi-Fi Driver,26425765,none,,High,2016-01-06 00:00:00,EoP,,Elevation of Privilege Vulnerability,Broadcom Wi-Fi Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2066,Elevation of Privilege Vulnerability in Qualcomm Sound Driver,26876409,none,,High,2016-01-29 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Sound Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2469,Elevation of Privilege Vulnerability in Qualcomm Sound Driver,27531992,none,,High,2016-03-04 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Sound Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2476,Elevation of Privilege Vulnerability in Mediaserver,27207275,https://android.googlesource.com/platform/frameworks/av/+/295c883fe3105b19bcd0f9e07d54c6b589fc5bff,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-02-11 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2477,Elevation of Privilege Vulnerability in Mediaserver,27251096,https://android.googlesource.com/platform/hardware/qcom/media/+/f22c2a0f0f9e030c240468d9d18b9297f001bcf0,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-02-17 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2478,Elevation of Privilege Vulnerability in Mediaserver,27475409,https://android.googlesource.com/platform/hardware/qcom/media/+/f22c2a0f0f9e030c240468d9d18b9297f001bcf0,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-03 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2479,Elevation of Privilege Vulnerability in Mediaserver,27532282,https://android.googlesource.com/platform/hardware/qcom/media/+/46e305be6e670a5a0041b0b4861122a0f1aabefa,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-06 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2480,Elevation of Privilege Vulnerability in Mediaserver,27532721,https://android.googlesource.com/platform/hardware/qcom/media/+/560ccdb509a7b86186fac0fce1b25bd9a3e6a6e8,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-06 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2481,Elevation of Privilege Vulnerability in Mediaserver,27532497,https://android.googlesource.com/platform/hardware/qcom/media/+/89913d7df36dbeb458ce165856bd6505a2ec647d,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-06 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2482,Elevation of Privilege Vulnerability in Mediaserver,27661749,https://android.googlesource.com/platform/hardware/qcom/media/+/46e305be6e670a5a0041b0b4861122a0f1aabefa,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-14 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2483,Elevation of Privilege Vulnerability in Mediaserver,27662502,https://android.googlesource.com/platform/hardware/qcom/media/+/89913d7df36dbeb458ce165856bd6505a2ec647d,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-14 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2484,Elevation of Privilege Vulnerability in Mediaserver,27793163,https://android.googlesource.com/platform/frameworks/av/+/7cea5cb64b83d690fe02bc210bbdf08f5a87636f,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-22 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2485,Elevation of Privilege Vulnerability in Mediaserver,27793367,https://android.googlesource.com/platform/frameworks/av/+/7cea5cb64b83d690fe02bc210bbdf08f5a87636f,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-22 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2486,Elevation of Privilege Vulnerability in Mediaserver,27793371,https://android.googlesource.com/platform/frameworks/av/+/ad40e57890f81a3cf436c5f06da66396010bd9e5,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-22 00:00:00,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2487,Elevation of Privilege Vulnerability in Mediaserver,27833616,https://android.googlesource.com/platform/frameworks/av/+/918eeaa29d99d257282fafec931b4bda0e3bae12,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,Google Internal,EoP,,Elevation of Privilege Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2061,Elevation of Privilege Vulnerability in Qualcomm Camera Driver,27207747,none,,High,2016-02-15 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Camera Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2488,Elevation of Privilege Vulnerability in Qualcomm Camera Driver,27600832,none,,High,Google Internal,EoP,,Elevation of Privilege Vulnerability,Qualcomm Camera Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2489,Elevation of Privilege Vulnerability in Qualcomm Video Driver,27407629,none,,High,2016-02-21 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Video Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2490,Elevation of Privilege Vulnerability in NVIDIA Camera Driver,27533373,none,,High,2016-03-06 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Camera Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2491,Elevation of Privilege Vulnerability in NVIDIA Camera Driver,27556408,none,,High,2016-03-08 00:00:00,EoP,,Elevation of Privilege Vulnerability,NVIDIA Camera Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2470,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,27662174,none,,High,2016-03-13 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2471,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,27773913,none,,High,2016-03-19 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2472,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,27776888,none,,High,2016-03-20 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2473,Elevation of Privilege Vulnerability in Qualcomm Wi-Fi Driver,27777501,none,,High,2016-03-20 00:00:00,EoP,,Elevation of Privilege Vulnerability,Qualcomm Wi-Fi Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2492,Elevation of Privilege Vulnerability in MediaTek Power Management Driver,28085410,none,,High,2016-04-07 00:00:00,EoP,,Elevation of Privilege Vulnerability,MediaTek Power Management Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2494,Elevation of Privilege Vulnerability in SD Card Emulation Layer,28085658,https://android.googlesource.com/platform/system/core/+/864e2e22fcd0cba3f5e67680ccabd0302dfda45d,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-04-07 00:00:00,EoP,,Elevation of Privilege Vulnerability,SD Card Emulation Layer,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2493,Elevation of Privilege Vulnerability in Broadcom Wi-Fi Driver,26571522,none,,High,Google Internal,EoP,,Elevation of Privilege Vulnerability,Broadcom Wi-Fi Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2495,Remote Denial of Service Vulnerability in Mediaserver,28076789,https://android.googlesource.com/platform/frameworks/av/+/45737cb776625f17384540523674761e6313e6d4,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-04-06 00:00:00,DoS,,Remote Denial of Service Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2496,Elevation of Privilege Vulnerability in Framework UI,26677796,https://android.googlesource.com/platform/frameworks/native/+/03a53d1c7765eeb3af0bc34c3dff02ada1953fbf,"6.0, 6.1",Moderate,2015-05-26 00:00:00,EoP,,Elevation of Privilege Vulnerability,Framework UI,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2498,Information Disclosure Vulnerability in Qualcomm Wi-Fi Driver,27777162,none,,Moderate,2016-03-20 00:00:00,ID,,Information Disclosure Vulnerability,Qualcomm Wi-Fi Driver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2499,Information Disclosure Vulnerability in Mediaserver,27855172,https://android.googlesource.com/platform/frameworks/av/+/dd3546765710ce8dd49eb23901d90345dec8282f,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-03-24 00:00:00,ID,,Information Disclosure Vulnerability,Mediaserver,2016,6,1,2016-06-13T01:59Z
2016-06-01,2016-06-01,CVE-2016-2500,Information Disclosure Vulnerability in Activity Manager,19285814,https://android.googlesource.com/platform/frameworks/base/+/9878bb99b77c3681f0fda116e2964bac26f349c3,"5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google Internal,ID,,Information Disclosure Vulnerability,Activity Manager,2016,6,1,2016-06-13T01:59Z
2016-07-01,2016-07-01,CVE-2016-2506,Remote code execution vulnerability in Mediaserver,A-28175045,https://android.googlesource.com/platform/frameworks/av/+/e248db02fbab2ee9162940bc19f087fd7d96cb9d","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-04-11 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-2505,Remote code execution vulnerability in Mediaserver,A-28333006,https://android.googlesource.com/platform/frameworks/av/+/4f236c532039a61f0cf681d2e3c6e022911bbb5c","6.0, 6.0.1",Critical,2016-04-21 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-2507,Remote code execution vulnerability in Mediaserver,A-28532266,https://android.googlesource.com/platform/frameworks/av/+/60547808ca4e9cfac50028c00c58a6ceb2319301","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-05-02 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-2508,Remote code execution vulnerability in Mediaserver,A-28799341,https://android.googlesource.com/platform/frameworks/av/+/f81038006b4c59a5a148dcad887371206033c28f,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-05-16 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3741,Remote code execution vulnerability in Mediaserver,A-28165661,https://android.googlesource.com/platform/external/libavc/+/e629194c62a9a129ce378e08cb1059a8a53f1795,"6.0, 6.0.1",Critical,Google internal,RCE,,Remote code execution vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3742,Remote code execution vulnerability in Mediaserver,A-28165659,https://android.googlesource.com/platform/external/libavc/+/a583270e1c96d307469c83dc42bd3c5f1b9ef63f","6.0, 6.0.1",Critical,Google internal,RCE,,Remote code execution vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3743,Remote code execution vulnerability in Mediaserver,A-27907656,https://android.googlesource.com/platform/external/libavc/+/ecf6c7ce6d5a22d52160698aab44fc234c63291a","6.0, 6.0.1",Critical,Google internal,RCE,,Remote code execution vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-2108,Remote code execution vulnerability in OpenSSL & BoringSSL,A-28175332,https://android.googlesource.com/platform/external/boringssl/+/74750e1fb24149043a533497f79c577b704d6e30","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-05-03 00:00:00,RCE,,Remote code execution vulnerability,OpenSSL & BoringSSL,2016,7,1,2016-05-05T01:59Z
2016-07-01,2016-07-01,CVE-2016-3744,Remote code execution vulnerability in Bluetooth,A-27930580,https://android.googlesource.com/platform/system/bt/+/514139f4b40cbb035bb92f3e24d5a389d75db9e6","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-30 00:00:00,RCE,,Remote code execution vulnerability,Bluetooth,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3751,Elevation of privilege vulnerability in libpng,A-23265085,https://android.googlesource.com/platform/external/libpng/+/9d4853418ab2f754c2b63e091c29c5529b8b86ca","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2015-12-03 00:00:00,EoP,,Elevation of privilege vulnerability,libpng,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3745,Elevation of privilege vulnerability in Mediaserver,A-28173666,https://android.googlesource.com/platform/hardware/qcom/audio/+/073a80800f341325932c66818ce4302b312909a4","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-04-10 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3746,Elevation of privilege vulnerability in Mediaserver,A-27890802,https://android.googlesource.com/platform/hardware/qcom/media/+/5b82f4f90c3d531313714df4b936f92fb0ff15cf","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-27 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3747,Elevation of privilege vulnerability in Mediaserver,A-27903498,https://android.googlesource.com/platform/hardware/qcom/media/+/4ed06d14080d8667d5be14eed200e378cba78345","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-03-28 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3748,Elevation of privilege vulnerability in sockets,A-28171804,https://android.googlesource.com/platform/external/sepolicy/+/556bb0f55324e8839d7b735a0de9bc31028e839e","6.0, 6.0.1",High,2016-04-13 00:00:00,EoP,,Elevation of privilege vulnerability,sockets,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3749,Elevation of privilege vulnerability in LockSettingsService,A-28163930,https://android.googlesource.com/platform/frameworks/base/+/e83f0f6a5a6f35323f5367f99c8e287c440f33f5","6.0, 6.0.1",High,Google internal,EoP,,Elevation of privilege vulnerability,LockSettingsService,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3750,Elevation of privilege vulnerability in Framework APIs,A-28395952,https://android.googlesource.com/platform/frameworks/native/+/54cb02ad733fb71b1bdf78590428817fb780aff8","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2015-12-16 00:00:00,EoP,,Elevation of privilege vulnerability,Framework APIs,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3752,Elevation of privilege vulnerability in ChooserTarget service,A-28384423,https://android.googlesource.com/platform/frameworks/base/+/ddbf2db5b946be8fdc45c7b0327bf560b2a06988","6.0, 6.0.1",High,Google internal,EoP,,Elevation of privilege vulnerability,ChooserTarget service,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3753,Information disclosure vulnerability in Mediaserver,A-27210135,none,4.4.4,High,2016-02-15 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-2107,Information disclosure vulnerability in OpenSSL,A-28550804,none,"4.4.4, 5.0.2, 5.1.1",High,2016-04-13 00:00:00,ID,,Information disclosure vulnerability,OpenSSL,2016,7,1,2016-05-05T01:59Z
2016-07-01,2016-07-01,CVE-2016-3754,Denial of service vulnerability in Mediaserver,A-28615448,https://android.googlesource.com/platform/frameworks/av/+/6fdee2a83432b3b150d6a34f231c4e2f7353c01e,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-05-05 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3755,Denial of service vulnerability in Mediaserver,A-28470138,https://android.googlesource.com/platform/external/libavc/+/d4841f1161bdb5e13cb19e81af42437a634dd6ef","6.0, 6.0.1",High,2016-04-29 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3756,Denial of service vulnerability in Mediaserver,A-28556125,https://android.googlesource.com/platform/external/tremolo/+/659030a2e80c38fb8da0a4eb68695349eec6778b","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3818,Denial of service vulnerability in libc,A-28740702 ,https://android.googlesource.com/platform/bionic/+/1944780b62f84acb660f46c8ae37e10928de8dab,4.4.4,High,Google internal,DoS,,Denial of service vulnerability,libc,2016,7,1,2016-07-11T02:00Z
2016-07-01,2016-07-01,CVE-2016-3757,Elevation of privilege vulnerability in lsof,A-28175237,https://android.googlesource.com/platform/system/core/+/ae18eb014609948a40e22192b87b10efc680daa7","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-04-11 00:00:00,EoP,,Elevation of privilege vulnerability,lsof,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3758,Elevation of privilege vulnerability in DexClassLoader,A-27840771,https://android.googlesource.com/platform/dalvik/+/338aeaf28e9981c15d0673b18487dba61eb5447c","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google internal,EoP,,Elevation of privilege vulnerability,DexClassLoader,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3759,Elevation of privilege vulnerability in Framework APIs,A-28406080,https://android.googlesource.com/platform/frameworks/base/+/9b8c6d2df35455ce9e67907edded1e4a2ecb9e28","5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Framework APIs,2016,7,1,2016-07-11T01:59Z
2016-07-01,2016-07-01,CVE-2016-3760,Elevation of privilege vulnerability in Bluetooth,A-27410683,https://android.googlesource.com/platform/hardware/libhardware/+/8b3d5a64c3c8d010ad4517f652731f09107ae9c5,"5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-02-29 00:00:00,EoP,,Elevation of privilege vulnerability,Bluetooth,2016,7,1,2016-07-11T02:00Z
2016-07-01,2016-07-01,CVE-2016-3761,Elevation of privilege vulnerability in NFC,A-28300969,https://android.googlesource.com/platform/packages/apps/Nfc/+/9ea802b5456a36f1115549b645b65c791eff3c2c","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-04-20 00:00:00,EoP,,Elevation of privilege vulnerability,NFC,2016,7,1,2016-07-11T02:00Z
2016-07-01,2016-07-01,CVE-2016-3762,Elevation of privilege vulnerability in sockets,A-28612709,https://android.googlesource.com/platform/external/sepolicy/+/abf0663ed884af7bc880a05e9529e6671eb58f39","5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-04-21 00:00:00,EoP,,Elevation of privilege vulnerability,sockets,2016,7,1,2016-07-11T02:00Z
2016-07-01,2016-07-01,CVE-2016-3763,Information disclosure vulnerability in Proxy Auto-Config,A-27593919,https://android.googlesource.com/platform/frameworks/base/+/ec2fc50d202d975447211012997fe425496c849c","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-03-10 00:00:00,ID,,Information disclosure vulnerability,Proxy Auto-Config,2016,7,1,2016-07-11T02:00Z
2016-07-01,2016-07-01,CVE-2016-3764,Information disclosure vulnerability in Mediaserver,A-28377502,https://android.googlesource.com/platform/frameworks/av/+/daef4327fe0c75b0a90bb8627458feec7a301e1f","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-04-25 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,7,1,2016-07-11T02:00Z
2016-07-01,2016-07-01,CVE-2016-3765,Information disclosure vulnerability in Mediaserver,A-28168413,https://android.googlesource.com/platform/external/libmpeg2/+/d1c775d1d8d2ed117d1e026719b7f9f089716597","6.0, 6.0.1",Moderate,2016-04-08 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,7,1,2016-07-11T02:00Z
2016-07-01,2016-07-01,CVE-2016-3766,Denial of service vulnerability in Mediaserver,A-28471206,https://android.googlesource.com/platform/frameworks/av/+/6fdee2a83432b3b150d6a34f231c4e2f7353c01e,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-04-29 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,7,1,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-2503,Elevation of privilege vulnerability in Qualcomm GPU driver,"A-28084795,QC-CR1006067","none,none",,Critical,2016-04-05 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm GPU driver,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2016-2067,Elevation of privilege vulnerability in Qualcomm GPU driver,"A-28305757,QC-CR988993","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.18/commit/?id=410cfa95f0a1cf58819cbfbd896f9aa45b004ac0"",,Critical,2016-04-20 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm GPU driver,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2016-3767,Elevation of privilege vulnerability in MediaTek Wi-Fi driver,"A-28169363,M-ALPS02689526","none,none",,Critical,2016-04-06 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek Wi-Fi driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3768,Elevation of privilege vulnerability in Qualcomm performance component,"A-28172137,QC-CR1010644","none,none",,Critical,2016-04-09 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm performance component,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3769,Elevation of privilege vulnerability in NVIDIA video driver,"A-28376656,N-CVE20163769","none,none",,Critical,2016-04-18 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA video driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3770,Elevation of privilege vulnerability in MediaTek drivers (Device specific),"A-28346752,M-ALPS02703102","none,none",,Critical,2016-04-22 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek drivers (Device specific),2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3771,Elevation of privilege vulnerability in MediaTek drivers (Device specific),"A-29007611,M-ALPS02703102","none,none",,Critical,2016-04-22 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek drivers (Device specific),2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3772,Elevation of privilege vulnerability in MediaTek drivers (Device specific),"A-29008188,M-ALPS02703102","none,none",,Critical,2016-04-22 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek drivers (Device specific),2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3773,Elevation of privilege vulnerability in MediaTek drivers (Device specific),"A-29008363,M-ALPS02703102","none,none",,Critical,2016-04-22 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek drivers (Device specific),2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3774,Elevation of privilege vulnerability in MediaTek drivers (Device specific),"A-29008609,M-ALPS02703102","none,none",,Critical,2016-04-22 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek drivers (Device specific),2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3775,Elevation of privilege vulnerability in kernel file system,A-28588279,none,,Critical,2016-05-04 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2015-8816,Elevation of privilege vulnerability in USB driver,A-28712303,none,,Critical,2016-05-04 00:00:00,EoP,,Elevation of privilege vulnerability,USB driver,2016,7,5,2016-04-27T17:59Z
2016-07-01,2016-07-05,CVE-2014-9795,Elevation of privilege vulnerability in Qualcomm components,"A-28820720, QC-CR681957","none, https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=ce2a0ea1f14298abc83729f3a095adab43342342",,Critical,2014-08-08 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9794,Elevation of privilege vulnerability in Qualcomm components,"A-28821172,QC-CR646385","none,https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=f39085971c8c4e36cadbf8a72aabe6c7ff538ffa"",,Critical,2014-08-08 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2015-8892,Elevation of privilege vulnerability in Qualcomm components,"A-28822807, QC-CR902998","none, https://us.codeaurora.org/cgit/quic/la/kernel/lk/commit/?id=fae606b9dd92c021e2419369975264f24f60db23",,Critical,2015-12-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9781,Elevation of privilege vulnerability in Qualcomm components,"A-28410333,QC-CR556471","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/drivers/video/?h=LA.BF.1.1.3_rb1.12&",,High,2014-02-06 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9786,Elevation of privilege vulnerability in Qualcomm components,"A-28557260, QC-CR545979","none, https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/patch/?id=2fb303d9c6ca080f253b10ed9384293ca69ad32b",,High,2014-03-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9788,Elevation of privilege vulnerability in Qualcomm components,"A-28573112,QC-CR548872","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=73bfc22aa70cc0b7e6709381125a0a42aa72a4f2"",,High,2014-03-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9779,Elevation of privilege vulnerability in Qualcomm components,"A-28598347, QC-CR548679","none, https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/arch/arm/mach-msm/qdsp6v2/msm_audio_ion.c?h=LA.BF.1.1.3_rb1.12&id=0b5f49b360afdebf8ef55df1e48ec141b3629621",,High,2014-03-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9780,Elevation of privilege vulnerability in Qualcomm components,"A-28602014,QC-CR542222","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=b5bb13e1f738f90df11e0c17f843c73999a84a54"",,High,2014-03-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9789,Elevation of privilege vulnerability in Qualcomm components,"A-28749392, QC-CR556425","none, https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=5720ed5c3a786e3ba0a2428ac45da5d7ec996b4e",,High,2014-03-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9793,Elevation of privilege vulnerability in Qualcomm components,"A-28821253,QC-CR580567","none,https://us.codeaurora.org/cgit/quic/la/kernel/lk/commit/?id=0dcccecc4a6a9a9b3314cb87b2be8b52df1b7a81"",,High,2014-03-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9782,Elevation of privilege vulnerability in Qualcomm components,"A-28431531, QC-CR511349","none, https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/patch/?id=2e57a46ab2ba7299d99d9cdc1382bd1e612963fb",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9783,Elevation of privilege vulnerability in Qualcomm components,A-28441831 QC-CR511382 ,"none, https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=2b1050b49a9a5f7bb57006648d145e001a3eaa8b",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9785,Elevation of privilege vulnerability in Qualcomm components,"A-28469042,QC-CR545747","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=b4338420db61f029ca6713a89c41b3a5852b20ce"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9787,Elevation of privilege vulnerability in Qualcomm components,"A-28571496, QC-CR545764","none, https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=528400ae4cba715f6c9ff4a2657dafd913f30b8b",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9784,Elevation of privilege vulnerability in Qualcomm components,"A-28442449,QC-CR585147","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=36503d639cedcc73880974ed92132247576e72ba"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9777,Elevation of privilege vulnerability in Qualcomm components,"A-28598501, QC-CR563654","none, https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=17bfaf64ad503d2e6607d2d3e0956f25bf07eb43",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9778,Elevation of privilege vulnerability in Qualcomm components,"A-28598515,QC-CR563694","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=af85054aa6a1bcd38be2354921f2f80aef1440e5"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9790,Elevation of privilege vulnerability in Qualcomm components,"A-28769136, QC-CR545716","none, https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?h=LA.BF.1.1.3_rb1.12&id=6ed921bda8cbb505e8654dfc1095185b0bccc38e",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9792,Elevation of privilege vulnerability in Qualcomm components,"A-28769399,QC-CR550606","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=a3e3dd9fc0a2699ae053ffd3efb52cdc73ad94cd"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9797,Elevation of privilege vulnerability in Qualcomm components,"A-28821090, QC-CR674071","none, https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=3312737f3e1ec84dd67ee0622c7dd031083f71a4",,High,2014-07-03 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9791,Elevation of privilege vulnerability in Qualcomm components,"A-28803396,QC-CR659364","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?h=LA.BF.1.1.3_rb1.12&",,High,2014-08-29 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9796,Elevation of privilege vulnerability in Qualcomm components,"A-28820722, QC-CR684756","none, https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=2e21b3a57cac7fb876bcf43244d7cc3dc1f6030d",,High,2014-09-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9800,Elevation of privilege vulnerability in Qualcomm components,"A-28822150,QC-CR692478","none,https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=6390f200d966dc13cf61bb5abbe3110447ca82b5"",,High,2014-10-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9799,Elevation of privilege vulnerability in Qualcomm components,"A-28821731, QC-CR691916","none, https://us.codeaurora.org/cgit/quic/la/kernel/lk/commit/?id=c2119f1fba46f3b6e153aa018f15ee46fe6d5b76",,High,2014-10-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9801,Elevation of privilege vulnerability in Qualcomm components,"A-28822060,QC-CR705078","none,https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=cf8f5a105bafda906ccb7f149d1a5b8564ce20c0"",,High,2014-11-28 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9802,Elevation of privilege vulnerability in Qualcomm components,"A-28821965, QC-CR705108","none, https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=222e0ec9bc755bfeaa74f9a0052b7c709a4ad054",,High,2014-12-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2015-8891,Elevation of privilege vulnerability in Qualcomm components,"A-28842418,QC-CR813930","none,https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=4f829bb52d0338c87bc6fbd0414b258f55cc7c62"",,High,2015-05-29 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2015-8888,Elevation of privilege vulnerability in Qualcomm components,"A-28822465, QC-CR813933","none, https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=1321f34f1ebcff61ad7e65e507cfd3e9028af19b",,High,2015-06-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2015-8889,Elevation of privilege vulnerability in Qualcomm components,"A-28822677,QC-CR804067","none,https://us.codeaurora.org/cgit/quic/la/kernel/lk/commit/?id=fa774e023554427ee14d7a49181e9d4afbec035e"",,High,2015-06-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2015-8890,Elevation of privilege vulnerability in Qualcomm components,"A-28822878, QC-CR823461","none, https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=e22aca36da2bb6f5016f3c885eb8c8ff85c115e4",,High,2015-08-19 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2016-2502,Elevation of privilege vulnerability in Qualcomm USB driver,"A-27657963,QC-CR997044","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=0bc45d7712eabe315ce8299a49d16433c3801156"",,High,2016-03-11 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm USB driver,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2016-3792,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-27725204, QC-CR561022","none, https://us.codeaurora.org/cgit/quic/la/platform/vendor/qcom-opensource/wlan/prima/commit/?id=28d4f0c1f712bffb4aa5b47f06e97d5a9fa06d29",,High,2016-03-17 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-2501,Elevation of privilege vulnerability in Qualcomm camera driver,"A-27890772,QC-CR1001092","none,none",,High,2016-03-27 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2016-3793,Elevation of privilege vulnerability in NVIDIA camera driver,"A-28026625,N-CVE20163793","none,none",,High,2016-04-05 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA camera driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3795,Elevation of privilege vulnerability in MediaTek power driver,"A-28085222,M-ALPS02677244","none,none",,High,2016-04-07 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek power driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3796,Elevation of privilege vulnerability in MediaTek power driver,"A-29008443,M-ALPS02677244","none,none",,High,2016-04-07 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek power driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3797,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-28085680,QC-CR1001450","none,none",,High,2016-04-07 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3798,Elevation of privilege vulnerability in MediaTek hardware sensor driver,"A-28174490,M-ALPS02703105","none,none",,High,2016-04-11 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek hardware sensor driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3799,Elevation of privilege vulnerability in MediaTek video driver,"A-28175025,M-ALPS02693738","none,none",,High,2016-04-11 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek video driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3800,Elevation of privilege vulnerability in MediaTek video driver,"A-28175027,M-ALPS02693739","none,none",,High,2016-04-11 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek video driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3801,Elevation of privilege vulnerability in MediaTek GPS driver,"A-28174914,M-ALPS02688853","none,none",,High,2016-04-11 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek GPS driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3802,Elevation of privilege vulnerability in kernel file system,A-28271368,none,,High,2016-04-19 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3803,Elevation of privilege vulnerability in kernel file system,A-28588434,none,,High,2016-05-04 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3804,Elevation of privilege vulnerability in MediaTek power management driver,"A-28332766,M-ALPS02694410","none,none",,High,2016-04-20 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek power management driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3805,Elevation of privilege vulnerability in MediaTek power management driver,"A-28333002,M-ALPS02694412","none,none",,High,2016-04-21 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek power management driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3806,Elevation of privilege vulnerability in MediaTek display driver,"A-28402341,M-ALPS02715341","none,none",,High,2016-04-26 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek display driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3807,Elevation of privilege vulnerability in serial peripheral interface driver,A-28402196,none,,High,2016-04-26 00:00:00,EoP,,Elevation of privilege vulnerability,serial peripheral interface driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3808,Elevation of privilege vulnerability in serial peripheral interface driver,A-28430009,none,,High,2016-04-26 00:00:00,EoP,,Elevation of privilege vulnerability,serial peripheral interface driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-2068,Elevation of privilege vulnerability in Qualcomm sound driver,A-28557020,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/arch/arm64/include/asm/pgtable.h?h=linux-3.10.y&id=5a0fdfada3a2aa50d7b947a2e958bf00cbe0d830,,High,2016-04-28 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2014-9803,Elevation of privilege vulnerability in kernel,A-28557020,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/arch/arm64/include/asm/pgtable.h?h=linux-3.10.y&,,High,Google internal,EoP,,Elevation of privilege vulnerability,kernel,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2016-3809,Information disclosure vulnerability in networking component,A-27532522,none,,High,2016-03-05 00:00:00,ID,,Information disclosure vulnerability,networking component,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3810,Information disclosure vulnerability in MediaTek Wi-Fi driver,"A-28175522,M-ALPS02694389","none,none",,High,2016-04-12 00:00:00,ID,,Information disclosure vulnerability,MediaTek Wi-Fi driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3811,Elevation of privilege vulnerability in kernel video driver,A-28447556,none,,Moderate,Google internal,EoP,,Elevation of privilege vulnerability,kernel video driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3812,Information disclosure vulnerability in MediaTek video codec driver,"A-28174833,M-ALPS02688832","none,none",,Moderate,2016-04-11 00:00:00,ID,,Information disclosure vulnerability,MediaTek video codec driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3813,Information disclosure vulnerability in Qualcomm USB driver,"A-28172322,QC-CR1010222","none,none",,Moderate,2016-04-11 00:00:00,ID,,Information disclosure vulnerability,Qualcomm USB driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3814,Information disclosure vulnerability in NVIDIA camera driver,"A-28193342,N-CVE20163814","none,none",,Moderate,2016-04-14 00:00:00,ID,,Information disclosure vulnerability,NVIDIA camera driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3815,Information disclosure vulnerability in NVIDIA camera driver,"A-28522274,N-CVE20163815","none,none",,Moderate,2016-05-01 00:00:00,ID,,Information disclosure vulnerability,NVIDIA camera driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-3816,Information disclosure vulnerability in MediaTek display driver,A-28402240,none,,Moderate,2016-04-26 00:00:00,ID,,Information disclosure vulnerability,MediaTek display driver,2016,7,5,2016-07-11T02:00Z
2016-07-01,2016-07-05,CVE-2016-0723,Information disclosure vulnerability in kernel teletype driver,A-28409131,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=5c17c861a357e9458001f021a7afa7aab9937439",,Moderate,2016-04-26 00:00:00,ID,,Information disclosure vulnerability,kernel teletype driver,2016,7,5,2016-02-08T03:59Z
2016-07-01,2016-07-05,CVE-2014-9798,Denial of service vulnerability in Qualcomm bootloader,"A-28821448, QC-CR681965","none, https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=b05eed2491a098bf627ac485a5b43d2f4fae2484",,Moderate,2014-10-31 00:00:00,DoS,,Denial of service vulnerability,Qualcomm bootloader,2016,7,5,2016-07-11T01:59Z
2016-07-01,2016-07-05,CVE-2015-8893,Denial of service vulnerability in Qualcomm bootloader,"A-28822690,QC-CR822275","none,https://us.codeaurora.org/cgit/quic/la//kernel/lk/commit/?id=800255e8bfcc31a02e89460460e3811f225e7a69"",,Moderate,2015-08-19 00:00:00,DoS,,Denial of service vulnerability,Qualcomm bootloader,2016,7,5,2016-07-11T01:59Z
2016-08-01,2016-08-01,CVE-2016-3819,Remote code execution vulnerability in Mediaserver,A-28533562,https://android.googlesource.com/platform/frameworks/av/+/590d1729883f700ab905cdc9ad850f3ddd7e1f56","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-05-02 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3820,Remote code execution vulnerability in Mediaserver,A-28673410,https://android.googlesource.com/platform/external/libavc/+/a78887bcffbc2995cf9ed72e0697acf560875e9e","6.0, 6.0.1",Critical,2016-05-06 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3821,Remote code execution vulnerability in Mediaserver,A-28166152,https://android.googlesource.com/platform/frameworks/av/+/42a25c46b844518ff0d0b920c20c519e1417be69","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,Google internal,RCE,,Remote code execution vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3822,Remote code execution vulnerability in libjhead,A-28868315,https://android.googlesource.com/platform/external/jhead/+/bae671597d47b9e5955c4cb742e468cebfd7ca6b","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,Google internal,RCE,,Remote code execution vulnerability,libjhead,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3823,Elevation of privilege vulnerability in Mediaserver,A-28815329,https://android.googlesource.com/platform/hardware/qcom/media/+/7558d03e6498e970b761aa44fff6b2c659202d95","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-05-17 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3824,Elevation of privilege vulnerability in Mediaserver,A-28816827,https://android.googlesource.com/platform/frameworks/av/+/b351eabb428c7ca85a34513c64601f437923d576","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-05-17 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3825,Elevation of privilege vulnerability in Mediaserver,A-28816964,https://android.googlesource.com/platform/hardware/qcom/media/+/d575ecf607056d8e3328ef2eb56c52e98f81e87d","5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-05-17 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3826,Elevation of privilege vulnerability in Mediaserver,A-29251553,https://android.googlesource.com/platform/frameworks/av/+/9cd8c3289c91254b3955bd7347cf605d6fa032c6","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-06-09 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3827,Denial of service vulnerability in Mediaserver,A-28816956,https://android.googlesource.com/platform/frameworks/av/+/a4567c66f4764442c6cb7b5c1858810194480fb5",6.0.1,High,2016-05-16 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3828,Denial of service vulnerability in Mediaserver,A-28835995,https://android.googlesource.com/platform/external/libavc/+/7554755536019e439433c515eeb44e701fb3bfb2","6.0, 6.0.1",High,2016-05-17 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3829,Denial of service vulnerability in Mediaserver,A-29023649,https://android.googlesource.com/platform/external/libavc/+/326fe991a4b7971e8aeaf4ac775491dd8abd85bb","6.0, 6.0.1",High,2016-05-27 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3830,Denial of service vulnerability in Mediaserver,A-29153599,https://android.googlesource.com/platform/frameworks/av/+/8e438e153f661e9df8db0ac41d587e940352df06","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3831,Denial of service vulnerability in system clock,A-29083635,https://android.googlesource.com/platform/frameworks/opt/telephony/+/f47bc301ccbc5e6d8110afab5a1e9bac1d4ef058","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-05-31 00:00:00,DoS,,Denial of service vulnerability,system clock,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3832,Elevation of privilege vulnerability in framework APIs,A-28795098,https://android.googlesource.com/platform/frameworks/base/+/e7cf91a198de995c7440b3b64352effd2e309906","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-05-15 00:00:00,EoP,,Elevation of privilege vulnerability,framework APIs,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3833,Elevation of privilege vulnerability in Shell,A-29189712,"https://android.googlesource.com/platform/frameworks/base/+/01875b0274e74f97edf6b0d5c92de822e0555d03",https://android.googlesource.com/platform/frameworks/base/+/4e4743a354e26467318b437892a9980eb9b8328a"","5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Shell,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-2842,Information disclosure vulnerability in OpenSSL,A-29060514,none,"4.4.4, 5.0.2, 5.1.1",None*,2016-03-29 00:00:00,ID,,Information disclosure vulnerability,OpenSSL,2016,8,1,2016-03-03T20:59Z
2016-08-01,2016-08-01,CVE-2016-3834,Information disclosure vulnerability in camera APIs,A-28466701,https://android.googlesource.com/platform/frameworks/av/+/1f24c730ab6ca5aff1e3137b340b8aeaeda4bdbc","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-04-28 00:00:00,ID,,Information disclosure vulnerability,camera APIs,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3835,Information disclosure vulnerability in Mediaserver,A-28920116,https://android.googlesource.com/platform/hardware/qcom/media/+/7558d03e6498e970b761aa44fff6b2c659202d95","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-05-23 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3836,Information disclosure vulnerability in SurfaceFlinger,A-28592402,https://android.googlesource.com/platform/frameworks/native/+/3bcf0caa8cca9143443814b36676b3bae33a4368","5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-05-04 00:00:00,ID,,Information disclosure vulnerability,SurfaceFlinger,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3837,Information disclosure vulnerability in Wi-Fi,CVA-28164077,https://android.googlesource.com/platform/frameworks/opt/net/wifi/+/a209ff12ba9617c10550678ff93d01fb72a33399","5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google internal,ID,,Information disclosure vulnerability,Wi-Fi,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3838,Denial of service vulnerability in system UI,A-28761672,https://android.googlesource.com/platform/frameworks/base/+/468651c86a8adb7aa56c708d2348e99022088af3","6.0, 6.0.1",Moderate,Google internal,DoS,,Denial of service vulnerability,system UI,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-01,CVE-2016-3839,Denial of service vulnerability in Bluetooth,A-28885210,https://android.googlesource.com/platform/system/bt/+/472271b153c5dc53c28beac55480a8d8434b2d5c","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google internal,DoS,,Denial of service vulnerability,Bluetooth,2016,8,1,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2014-9902,Remote code execution vulnerability in Qualcomm Wi-Fi driver,"A-28668638,QC-CR553937,QC-CR553941","none,https://us.codeaurora.org/cgit/quic/la//platform/vendor/qcom-opensource/wlan/prima/commit/?id=3b1c44a3a7129dc25abe2c23543f6f66c59e8f50",https://us.codeaurora.org/cgit/quic/la//platform/vendor/qcom-opensource/wlan/prima/commit/?id=3b1c44a3a7129dc25abe2c23543f6f66c59e8f50"",,Critical,2014-03-31 00:00:00,RCE,,Remote code execution vulnerability,Qualcomm Wi-Fi driver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3840,mote code execution vulnerability in Conscrypt,A-28751153,https://android.googlesource.com/platform/external/conscrypt/+/5af5e93463f4333187e7e35f3bd2b846654aa214","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,Google internal,RCE,,mote code execution vulnerability,Conscrypt,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2014-9863,Elevation of privilege vulnerability in Qualcomm components,"A-28768146,QC-CR549470","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=75eac48a48562f819f50eeff8369b296d89102d7"",,Critical,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9864,Elevation of privilege vulnerability in Qualcomm components,"A-28747998,QC-CR561841","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=a1124defc680055e2f2a8c8e3da4a94ca2ec842e"",,High,2014-03-27 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9865,Elevation of privilege vulnerability in Qualcomm components,"A-28748271,QC-CR550013","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=e65a876a155de945e306f2726f3a557415e6044e"",,High,2014-03-27 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9866,Elevation of privilege vulnerability in Qualcomm components,"A-28747684,QC-CR511358","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=8e6daae70422ad35146a87700e6634a747d1ff5d"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9867,Elevation of privilege vulnerability in Qualcomm components,"A-28749629,QC-CR514702","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=322c518689a7f820165ca4c5d6b750b02ac34665"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9868,Elevation of privilege vulnerability in Qualcomm components,"A-28749721,QC-CR511976","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=1f274b74c00187ba1c379971503f51944148b22f"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9869,Elevation of privilege vulnerability in Qualcomm components,"A-28749728,QC-CR514711","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=8d1f7531ff379befc129a6447642061e87562bca"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9870,Elevation of privilege vulnerability in Qualcomm components,"A-28749743,QC-CR561044","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm/commit/?id=4f57652fcd2dce7741f1ac6dc0417e2f265cd1de"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9871,Elevation of privilege vulnerability in Qualcomm components,"A-28749803,QC-CR514717","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=f615e40c706708f74cd826d5b19c63025f54c041"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9872,Elevation of privilege vulnerability in Qualcomm components,"A-28750155,QC-CR590721","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=fc787ebd71fa231cc7dd2a0d5f2208da0527096a"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9873,Elevation of privilege vulnerability in Qualcomm components,"A-28750726,QC-CR556860","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm/commit/?id=ef29ae1d40536fef7fb95e4d5bb5b6b57bdf9420"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9874,Elevation of privilege vulnerability in Qualcomm components,"A-28751152,QC-CR563086","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm/commit/?id=56ff68b1f93eaf22e5e0284648fd862dc08c9236"",,High,2014-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9875,Elevation of privilege vulnerability in Qualcomm components,"A-28767589,QC-CR483310","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=b77c694b88a994d077316c157168c710696f8805"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9876,Elevation of privilege vulnerability in Qualcomm components,"A-28767796,QC-CR483408","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=7efd393ca08ac74b2e3d2639b0ad77da139e9139"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9877,Elevation of privilege vulnerability in Qualcomm components,"A-28768281,QC-CR547231","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=f0c0112a6189747a3f24f20210157f9974477e03"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9878,Elevation of privilege vulnerability in Qualcomm components,"A-28769208,QC-CR547479","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=96a62c1de93a44e6ca69514411baf4b3d67f6dee"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9879,Elevation of privilege vulnerability in Qualcomm components,"A-28769221,QC-CR524490","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=ecc8116e1befb3a764109f47ba0389434ddabbe4"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9880,Elevation of privilege vulnerability in Qualcomm components,"A-28769352,QC-CR556356","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=f2a3f5e63e15e97a66e8f5a300457378bcb89d9c"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9881,Elevation of privilege vulnerability in Qualcomm components,"A-28769368,QC-CR539008","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=ba3f404a10b3bb7e9c20440837df3cd35c5d0c4b"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9882,Elevation of privilege vulnerability in Qualcomm components,"A-28769546,QC-CR552329","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=3a4ebaac557a9e3fbcbab4561650abac8298a4d9",https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=0f6afe815b1b3f920f3502be654c848bdfe5ef38"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9883,Elevation of privilege vulnerability in Qualcomm components,"A-28769912,QC-CR565160","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=cbf79a67348e48557c0d0bb9bc58391b3f84bc46"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9884,Elevation of privilege vulnerability in Qualcomm components,"A-28769920,QC-CR580740","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=f4948193c46f75e16d4382c4472485ab12b7bd17"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9885,Elevation of privilege vulnerability in Qualcomm components,"A-28769959,QC-CR562261","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=a1d5a4cbd5aa8656bc23b40c7cc43941e10f89c3"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9886,Elevation of privilege vulnerability in Qualcomm components,"A-28815575,QC-CR555030","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=80be0e249c906704085d13d4ae446f73913fc225"",,High,2014-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9887,Elevation of privilege vulnerability in Qualcomm components,"A-28804057,QC-CR636633","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=b1bc773cf61265e0e3871b2e52bd6b3270ffc6c3"",,High,2014-07-03 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9888,Elevation of privilege vulnerability in Qualcomm components,"A-28803642,QC-CR642735","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=f044936caab337a4384fbfe64a4cbae33c7e22a1"",,High,2014-08-29 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9889,Elevation of privilege vulnerability in Qualcomm components,"A-28803645,QC-CR674712","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit?id=f4e2f2d4ef58c88340774099dff3324ec8baa24a"",,High,2014-10-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-8937,Elevation of privilege vulnerability in Qualcomm components,"A-28803962,QC-CR770548","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=c66202b9288cc4ab1c38f7c928fa1005c285c170"",,High,2015-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-8938,Elevation of privilege vulnerability in Qualcomm components,"A-28804030,QC-CR766022","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=51c39420e3a49d1a7f05a77c64369b7623088238"",,High,2015-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-8939,Elevation of privilege vulnerability in Qualcomm components,"A-28398884,QC-CR779021","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm/commit/?id=884cff808385788fa620833c7e2160a4b98a21da"",,High,2015-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-8940,Elevation of privilege vulnerability in Qualcomm components,"A-28813987,QC-CR792367","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=e13ebd727d161db7003be6756e61283dce85fa3b"",,High,2015-04-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-8941,Elevation of privilege vulnerability in Qualcomm components,"A-28814502,QC-CR792473","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=d4d4d1dd626b21e68e78395bab3382c1eb04877f"",,High,2015-05-29 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-8942,Elevation of privilege vulnerability in Qualcomm components,"A-28814652,QC-CR803246","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=9ec380c06bbd79493828fcc3c876d8a53fd3369f"",,High,2015-06-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-8943,Elevation of privilege vulnerability in Qualcomm components,"A-28815158,QC-CR794217","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm/commit/?id=ad376e4053b87bd58f62f45b6df2c5544bc21aee"",,High,2015-09-11 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9891,Elevation of privilege vulnerability in Qualcomm components,"A-28749283,QC-CR550061","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=c10f03f191307f7114af89933f2d91b830150094"",,Moderate,2014-03-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9890,Elevation of privilege vulnerability in Qualcomm components,"A-28770207,QC-CR529177","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=14e0c8614d2715589583d8a95e33c422d110eb6f"",,Moderate,2014-06-02 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-2686,Elevation of privilege vulnerability in kernel networking component,A-28759139,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4de930efc23b92ddf88ce91c405ee645fe6e27ea",,Critical,2015-03-23 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking component,2016,8,5,2016-05-02T10:59Z
2016-08-01,2016-08-05,CVE-2016-3841,Elevation of privilege vulnerability in kernel networking component,A-28746669,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=45f6fad84cc305103b28d73482b344d7f5b76f39",,Critical,2015-12-03 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking component,2016,8,5,2016-08-06T20:59Z
2016-08-01,2016-08-05,CVE-2016-2504,Elevation of privilege vulnerability in Qualcomm GPU driver,"A-28026365,QC-CR1002974","none,none",,Critical,2016-04-05 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm GPU driver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3842,Elevation of privilege vulnerability in Qualcomm GPU driver,"A-28377352,QC-CR1002974","none,none",,Critical,2016-04-25 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm GPU driver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3843,Elevation of privilege vulnerability in Qualcomm performance component,"CVE-2016-3843,A-28086229,QC-CR1011071","none,none,none,https://developers.google.com/android/nexus/drivers"",,Critical,2016-04-07 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm performance component,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3857,Elevation of privilege vulnerability in kernel,A-28522518,none,,Critical,2016-05-02 00:00:00,EoP,,Elevation of privilege vulnerability,kernel,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2015-1593,Elevation of privilege vulnerability in kernel memory system,A-29577822,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4e7c22d447bb6d7e37bfe39ff658486ae78e8d77",,High,2015-02-13 00:00:00,EoP,,Elevation of privilege vulnerability,kernel memory system,2016,8,5,2015-03-16T10:59Z
2016-08-01,2016-08-05,CVE-2016-3672,Elevation of privilege vulnerability in kernel memory system,A-28763575,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=8b8addf891de8a00e4d39fc32f93f7c5eb8feceb",,High,2016-03-25 00:00:00,EoP,,Elevation of privilege vulnerability,kernel memory system,2016,8,5,2016-04-27T17:59Z
2016-08-01,2016-08-05,CVE-2016-2544,Elevation of privilege vulnerability in kernel sound component,A-28695438,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=3567eb6af614dac436c4b16a8d426f9faed639b3",,High,2016-01-19 00:00:00,EoP,,Elevation of privilege vulnerability,kernel sound component,2016,8,5,2016-04-27T17:59Z
2016-08-01,2016-08-05,CVE-2016-2546,Elevation of privilege vulnerability in kernel sound component,A-28694392,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=af368027a49a751d6ff4ee9e3f9961f35bb4fede",,High,2016-01-19 00:00:00,EoP,,Elevation of privilege vulnerability,kernel sound component,2016,8,5,2016-04-27T17:59Z
2016-08-01,2016-08-05,CVE-2014-9904,Elevation of privilege vulnerability in kernel sound component,A-28592007,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6217e5ede23285ddfee10d2e4ba0cc2d4c046205",,High,2016-05-04 00:00:00,EoP,,Elevation of privilege vulnerability,kernel sound component,2016,8,5,2016-06-27T10:59Z
2016-08-01,2016-08-05,CVE-2012-6701,Elevation of privilege vulnerability in kernel file system,A-28939037,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=a70b52ec1aaeaf60f4739edb1b422827cb6f3893",,High,2016-03-02 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2016,8,5,2016-05-02T10:59Z
2016-08-01,2016-08-05,CVE-2016-3844,Elevation of privilege vulnerability in Mediaserver,"A-28299517, N-CVE-2016-3844","none, none",,High,2016-04-19 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3845,evation of privilege vulnerability in kernel video driver,A-28399876,none,,High,2016-04-20 00:00:00,EoP,,evation of privilege vulnerability,kernel video driver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3846,Elevation of privilege vulnerability in Serial Peripheral Interface driver,A-28817378,none,,High,2016-05-17 00:00:00,EoP,,Elevation of privilege vulnerability,Serial Peripheral Interface driver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3847,Elevation of privilege vulnerability in NVIDIA media driver,"A-28871433, N-CVE-2016-3847","none, none",,High,2016-05-19 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA media driver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3848,Elevation of privilege vulnerability in NVIDIA media driver,"A-28919417, N-CVE-2016-3848","none, none",,High,2016-05-19 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA media driver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3849,Elevation of privilege vulnerability in ION driver,A-28939740,none,,High,2016-03-24 00:00:00,EoP,,Elevation of privilege vulnerability,ION driver,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3850,evation of privilege vulnerability in Qualcomm bootloader,"A-27917291,QC-CR945164","none,https://source.codeaurora.org/quic/la/kernel/lk/commit/?id=030371d45a9dcda4d0cc3c76647e753a1cc1b782"","6.0, 6.1",High,2016-03-28 00:00:00,EoP,,evation of privilege vulnerability,Qualcomm bootloader,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3843,Elevation of privilege vulnerability in Qualcomm performance component,A-29119870,"none,https://developers.google.com/android/nexus/drivers"",,High,Google internal,EoP,,Elevation of privilege vulnerability,Qualcomm performance component,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3851,Elevation of privilege vulnerability in LG Electronics bootloader,A-29189941,none,,High,Google internal,EoP,,Elevation of privilege vulnerability,LG Electronics bootloader,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2014-9892,Information disclosure vulnerability in Qualcomm components,"A-28770164,QC-CR568717","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=591b1f455c32206704cbcf426bb30911c260c33e"",,High,2014-06-02 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2015-8944,Information disclosure vulnerability in Qualcomm components,"A-28814213,QC-CR786116","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=e758417e7c31b975c862aa55d0ceef28f3cc9104"",,High,2015-04-30 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9893,Information disclosure vulnerability in Qualcomm components,"A-28747914,QC-CR542223","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=bfc6eee5e30a0c20bc37495233506f4f0cc4991d"",,Moderate,2014-03-27 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9894,Information disclosure vulnerability in Qualcomm components,"A-28749708,QC-CR545736","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=83214431cd02674c70402b160b16b7427e28737f"",,Moderate,2014-03-31 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9895,Information disclosure vulnerability in Qualcomm components,"A-28750150,QC-CR570757","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm/commit/?id=cc4b26575602e492efd986e9a6ffc4278cee53b5"",,Moderate,2014-03-31 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9896,Information disclosure vulnerability in Qualcomm components,"A-28767593,QC-CR551795","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=89f2bcf1ac860b0b380e579e9a8764013f263a7d"",,Moderate,2014-04-30 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9897,Information disclosure vulnerability in Qualcomm components,"CVE-2014-9897,A-28769856,QC-CR563752","none,none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=46135d80765cb70a914f02a6e7b6abe64679ec86"",,Moderate,2014-04-30 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9898,Information disclosure vulnerability in Qualcomm components,"A-28814690,QC-CR554575","none,https://us.codeaurora.org/cgit/quic/la/kernel/msm-3.10/commit/?id=80be0e249c906704085d13d4ae446f73913fc225"",,Moderate,2014-04-30 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9899,Information disclosure vulnerability in Qualcomm components,"A-28803909,QC-CR547910","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=8756624acb1e090b45baf07b2a8d0ebde114000e"",,Moderate,2014-07-03 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9900,Information disclosure vulnerability in Qualcomm components,"A-28803952,QC-CR570754","none,https://us.codeaurora.org/cgit/quic/la//kernel/msm-3.10/commit/?id=63c317dbee97983004dffdd9f742a20d17150071"",,Moderate,2014-08-08 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,8,5,2016-08-06T10:59Z
2016-08-01,2016-08-05,CVE-2014-9903,Information disclosure vulnerability in kernel scheduler,A-28731691,"none,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4efbc454ba68def5ef285b26ebfcfdb605b52755"",,High,2014-02-21 00:00:00,ID,,Information disclosure vulnerability,kernel scheduler,2016,8,5,2016-06-27T10:59Z
2016-08-01,2016-08-05,CVE-2016-3852,Information disclosure vulnerability in MediaTek Wi-Fi driver (device specific),"A-29141147,M-ALPS02751738","none,none",,High,2016-04-12 00:00:00,ID,,Information disclosure vulnerability,MediaTek Wi-Fi driver (device specific),2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-4482,formation disclosure vulnerability in USB driver,A-28619695,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=681fef8380eb818c0b845fca5d2ab1dcbab114ee",,High,2014-03-03 00:00:00,ID,,formation disclosure vulnerability,USB driver,2016,8,5,2016-05-23T10:59Z
2016-08-01,2016-08-05,CVE-2014-9901,Denial of service vulnerability in Qualcomm components,"A-28670333,QC-CR548711","none,https://us.codeaurora.org/cgit/quic/la//platform/vendor/qcom-opensource/wlan/prima/commit/?id=637f0f7931dd7265ac1c250dc2884d6389c66bde"",None,High,2014-03-31 00:00:00,DoS,,Denial of service vulnerability,Qualcomm components,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-3853,Elevation of privilege vulnerability in Google Play services,A-26803208,https://developers.google.com/android/nexus/drivers",,Moderate,2016-05-04 00:00:00,EoP,,Elevation of privilege vulnerability,Google Play services,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-2497,Elevation of privilege vulnerability in Framework APIs,A-27450489,https://android.googlesource.com/platform/frameworks/base/+/a75537b496e9df71c74c1d045ba5569631a16298","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google Internal,EoP,,Elevation of privilege vulnerability,Framework APIs,2016,8,5,2016-08-05T20:59Z
2016-08-01,2016-08-05,CVE-2016-4486,Information disclosure vulnerability in kernel networking component,A-28620102,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=5f8e44741f9f216e33736ea4ec65ca9ac03036e6",,Moderate,2016-05-03 00:00:00,ID,,Information disclosure vulnerability,kernel networking component,2016,8,5,2016-05-23T10:59Z
2016-08-01,2016-08-05,CVE-2016-4569,Information disclosure vulnerability in kernel sound component,A-28980557,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=cec8f96e49d9be372fdb0c3836dcf31ec71e457e",,Moderate,2016-05-09 00:00:00,ID,,Information disclosure vulnerability,kernel sound component,2016,8,5,2016-05-23T10:59Z
2016-08-01,2016-08-05,CVE-2016-4578,Information disclosure vulnerability in kernel sound component,A-28980217,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=e4ec8cc8039a7063e24204299b462bd1383184a5",,Moderate,2016-05-11 00:00:00,ID,,Information disclosure vulnerability,kernel sound component,2016,8,5,2016-05-23T10:59Z
2016-09-01,2016-09-01,CVE-2016-3861,Remote code execution vulnerability in LibUtils,A-29250543,"https://android.googlesource.com/platform/system/core/+/ecf5fd58a8f50362ce9e8d4245a33d56f29f142b",https://android.googlesource.com/platform/frameworks/av/+/3944c65637dfed14a5a895685edfa4bacaf9f76e"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Critical,2016-06-09 00:00:00,RCE,,Remote code execution vulnerability,LibUtils,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3862,Remote code execution vulnerability in Mediaserver,A-29270469,https://android.googlesource.com/platform/frameworks/base/+/e739d9ca5469ed30129d0fa228e3d0f2878671ac","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Critical,2016-06-10 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3863,Remote code execution vulnerability in MediaMuxer,A-29161888,https://android.googlesource.com/platform/frameworks/av/+/119a012b2a9a186655da4bef3ed4ed8dd9b94c26","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-06-06 00:00:00,RCE,,Remote code execution vulnerability,MediaMuxer,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3870,Elevation of privilege vulnerability in Mediaserver,A-29421804,https://android.googlesource.com/platform/frameworks/av/+/1e9801783770917728b7edbdeff3d0ec09c621ac","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-06-15 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3871,Elevation of privilege vulnerability in Mediaserver,A-29422022,https://android.googlesource.com/platform/frameworks/av/+/c2639afac631f5c1ffddf70ee8a6fe943d0bedf9","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-06-15 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3872,Elevation of privilege vulnerability in Mediaserver,A-29421675,"https://android.googlesource.com/platform/frameworks/av/+/630ed150f7201ddadb00b8b8ce0c55c4cc6e8742",https://android.googlesource.com/platform/frameworks/av/+/9f9ba255a0c59544f3555c9c45512c3a2fac5fad"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-06-15 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3875,Elevation of privilege vulnerability in device boot,A-26251884,https://android.googlesource.com/platform/frameworks/base/+/69729fa8b13cadbf3173fe1f389fe4f3b7bd0f9c","6.0, 6.0.1",High,Google internal,EoP,,Elevation of privilege vulnerability,device boot,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3876,Elevation of privilege vulnerability in Settings,A-29900345,https://android.googlesource.com/platform/frameworks/base/+/91fc934bb2e5ea59929bb2f574de6db9b5100745","6.0, 6.0.1, 7.0",High,Google internal,EoP,,Elevation of privilege vulnerability,Settings,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3899,Denial of service vulnerability in Mediaserver,A-29421811,https://android.googlesource.com/platform/frameworks/av/+/97837bb6cbac21ea679843a0037779d3834bed64","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-06-16 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3878,Denial of service vulnerability in Mediaserver,A-29493002,https://android.googlesource.com/platform/external/libavc/+/7109ce3f8f90a28ca9f0ee6e14f6ac5e414c62cf","6.0, 6.0.1",High,2016-06-17 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3879,Denial of service vulnerability in Mediaserver,A-29770686,https://android.googlesource.com/platform/external/sonivox/+/cadfb7a3c96d4fef06656cf37143e1b3e62cae86","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-06-25 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3880,Denial of service vulnerability in Mediaserver,A-25747670,https://android.googlesource.com/platform/frameworks/av/+/68f67ef6cf1f41e77337be3bc4bff91f3a3c6324","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3881,Denial of service vulnerability in Mediaserver,A-30013856,https://android.googlesource.com/platform/external/libvpx/+/4974dcbd0289a2530df2ee2a25b5f92775df80da","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3883,Elevation of privilege vulnerability in Telephony,A-28557603,https://android.googlesource.com/platform/frameworks/opt/telephony/+/b2c89e6f8962dc7aff88cb38aa3ee67d751edda9","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-05-03 00:00:00,EoP,,Elevation of privilege vulnerability,Telephony,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3884,Elevation of privilege vulnerability in Notification Manager Service,A-29421441,https://android.googlesource.com/platform/frameworks/base/+/61e9103b5725965568e46657f4781dd8f2e5b623","6.0, 6.0.1, 7.0",Moderate,2016-06-15 00:00:00,EoP,,Elevation of privilege vulnerability,Notification Manager Service,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3885,Elevation of privilege vulnerability in Debuggerd,A-29555636,https://android.googlesource.com/platform/system/core/+/d7603583f90c2bc6074a4ee2886bd28082d7c65b","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-06-21 00:00:00,EoP,,Elevation of privilege vulnerability,Debuggerd,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3886,Elevation of privilege vulnerability in System UI Tuner,A-30107438,https://android.googlesource.com/platform/frameworks/base/+/6ca6cd5a50311d58a1b7bf8fbef3f9aa29eadcd5,7,Moderate,2016-06-23 00:00:00,EoP,,Elevation of privilege vulnerability,System UI Tuner,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3887,Elevation of privilege vulnerability in Settings,A-29899712,https://android.googlesource.com/platform/frameworks/base/+/335702d106797bce8a88044783fa1fc1d5f751d0,7,Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Settings,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3888,Elevation of privilege vulnerability in SMS,A-29420123,https://android.googlesource.com/platform/frameworks/opt/telephony/+/b8d1aee993dcc565e6576b2f2439a8f5a507cff6,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,Google internal,EoP,,Elevation of privilege vulnerability,SMS,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3889,Elevation of privilege vulnerability in Settings,A-29194585,https://android.googlesource.com/platform/frameworks/base/+/e206f02d46ae5e38c74d138b51f6e1637e261abe","6.0, 6.0.1, 7.0",Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Settings,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3890,Elevation of privilege vulnerability in Java Debug Wire Protocol,A-28347842,"https://android.googlesource.com/platform/system/core/+/268068f25673242d1d5130d96202d3288c91b700,https://android.googlesource.com/platform/system/core/+/014b01706cc64dc9c2ad94a96f62e07c058d0b5d","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Java Debug Wire Protocol,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3895,Information disclosure vulnerability in Mediaserver,A-29983260,https://android.googlesource.com/platform/frameworks/native/+/363247929c35104b3e5ee9e637e9dcf579080aee","6.0, 6.0.1, 7.0",Moderate,2016-07-04 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3896,Information disclosure vulnerability in AOSP Mail,A-29767043,https://android.googlesource.com/platform/packages/apps/Email/+/cb2dfe43f25cb0c32cc73aa4569c0a5186a4ef43","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-07-24 00:00:00,ID,,Information disclosure vulnerability,AOSP Mail,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3897,Information disclosure vulnerability in Wi-Fi,A-25624963,"https://android.googlesource.com/platform/frameworks/base/+/55271d454881b67ff38485fdd97598c542cc2d55",https://android.googlesource.com/platform/frameworks/base/+/81be4e3aac55305cbb5c9d523cf5c96c66604b39"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2015-11-05 00:00:00,ID,,Information disclosure vulnerability,Wi-Fi,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-01,CVE-2016-3898,Denial of service vulnerability in Telephony,A-29832693,https://android.googlesource.com/platform/packages/services/Telephony/+/d1d248d10cf03498efb7041f1a8c9c467482a19d","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-06-28 00:00:00,DoS,,Denial of service vulnerability,Telephony,2016,9,1,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2014-9529,Elevation of privilege vulnerability in kernel security subsystem,A-29510361,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=a3a8784454692dd72e5d5d34dcdab17b4420e74c,,Critical,2015-01-06 00:00:00,EoP,,Elevation of privilege vulnerability,kernel security subsystem,2016,9,5,2015-01-09T21:59Z
2016-09-01,2016-09-05,CVE-2016-4470,Elevation of privilege vulnerability in kernel security subsystem,A-29823941,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=38327424b40bcebe2de92d07312c89360ac9229a",,Critical,2016-06-15 00:00:00,EoP,,Elevation of privilege vulnerability,kernel security subsystem,2016,9,5,2016-06-27T10:59Z
2016-09-01,2016-09-05,CVE-2013-7446,Elevation of privilege vulnerability in kernel networking subsystem,A-29119002,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/net/unix/af_unix.c?id=7d267278a9ece963d77eefec61630223fce08c6c",,Critical,2015-11-18 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking subsystem,2016,9,5,2015-12-28T11:59Z
2016-09-01,2016-09-05,CVE-2016-3134,Elevation of privilege vulnerability in kernel netfilter subsystem,A-28940694,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=54d83fc74aa9ec72794373cb47432c5f7fb1a309",,Critical,2016-03-09 00:00:00,EoP,,Elevation of privilege vulnerability,kernel netfilter subsystem,2016,9,5,2016-04-27T17:59Z
2016-09-01,2016-09-05,CVE-2016-3951,Elevation of privilege vulnerability in kernel USB driver,A-28744625,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4d06dd537f95683aba3651098ae288b7cbff8274",,Critical,2016-04-06 00:00:00,EoP,,Elevation of privilege vulnerability,kernel USB driver,2016,9,5,2016-05-02T10:59Z
2016-09-01,2016-09-05,CVE-2014-4655,Elevation of privilege vulnerability in kernel sound subsystem,A-29916012,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=82262a46627bebb0febcc26664746c25cef08563",,High,2014-06-26 00:00:00,EoP,,Elevation of privilege vulnerability,kernel sound subsystem,2016,9,5,2014-07-03T04:22Z
2016-09-01,2016-09-05,CVE-2016-2053,Elevation of privilege vulnerability in kernel ASN.1 decoder,A-28751627,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=0d62e9dd6da45bbf0f33a8617afc5fe774c8f45f",,High,2016-01-25 00:00:00,EoP,,Elevation of privilege vulnerability,kernel ASN.1 decoder,2016,9,5,2016-05-02T10:59Z
2016-09-01,2016-09-05,CVE-2016-3864,Elevation of privilege vulnerability in Qualcomm radio interface layer,"A-28823714,QC-CR913117","none,none",,High,2016-04-29 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm radio interface layer,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3858,Elevation of privilege vulnerability in Qualcomm subsystem driver,"A-28675151,QC-CR1022641","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=0c148b9a9028c566eac680f19e5d664b483cdee3"",,High,2016-05-09 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm subsystem driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-4805,Elevation of privilege vulnerability in kernel networking driver,A-28979703,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=1f461dcdd296eecedaffffc6bae2bfa90bd7eb89",,High,2016-05-15 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking driver,2016,9,5,2016-05-23T10:59Z
2016-09-01,2016-09-05,CVE-2016-3865,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-28799389,https://developers.google.com/android/nexus/drivers",,High,2016-05-16 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3859,Elevation of privilege vulnerability in Qualcomm camera driver,"A-28815326,QC-CR1034641","none,none",,High,2016-05-17 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3866,Elevation of privilege vulnerability in Qualcomm sound driver,"A-28868303,QC-CR1032820","none,https://developers.google.com/android/nexus/drivers"",,High,2016-05-18 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3867,Elevation of privilege vulnerability in Qualcomm IPA driver,"A-28919863,QC-CR1037897","none,none",,High,2016-05-21 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm IPA driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3868,Elevation of privilege vulnerability in Qualcomm power driver,"A-28967028,QC-CR1032875","none,https://developers.google.com/android/nexus/drivers"",,High,2016-05-25 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm power driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3869,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-29009982,B-RB96070","none,none",,High,2016-05-27 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-1583,Elevation of privilege vulnerability in kernel eCryptfs filesystem,A-29444228,https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=f0fe970df3838c202ef6c07a4c2b36838ef0a88b",,High,2016-06-01 00:00:00,EoP,,Elevation of privilege vulnerability,kernel eCryptfs filesystem,2016,9,5,2016-06-27T10:59Z
2016-09-01,2016-09-05,CVE-2016-3873,Elevation of privilege vulnerability in NVIDIA kernel,"A-29518457, N-CVE-2016-3873","none, none",,High,2016-06-20 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA kernel,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3874,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-29944562,QC-CR997797","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=50e8f265b3f7926aeb4e49c33f7301ace89faa77"",,High,2016-07-01 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2015-1465,Denial of service vulnerability in kernel networking subsystem,A-29506807,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=df4d92549f23e1c037e83323aff58a21b3de7fe0",,High,2015-02-03 00:00:00,DoS,,Denial of service vulnerability,kernel networking subsystem,2016,9,5,2015-04-05T21:59Z
2016-09-01,2016-09-05,CVE-2015-5364,Denial of service vulnerability in kernel networking subsystem,A-29507402,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=beb39db59d14990e401e235faf66a6b9b31240b0",,High,2015-06-30 00:00:00,DoS,,Denial of service vulnerability,kernel networking subsystem,2016,9,5,2015-08-31T10:59Z
2016-09-01,2016-09-05,CVE-2015-8839,Denial of service vulnerability in kernel ext4 file system,A-28760453,none,,Moderate,2016-04-04 00:00:00,DoS,,Denial of service vulnerability,kernel ext4 file system,2016,9,5,2016-05-02T10:59Z
2016-09-01,2016-09-05,CVE-2016-3892,Information disclosure vulnerability in Qualcomm SPMI driver,"A-28760543,QC-CR1024197","none,https://developers.google.com/android/nexus/drivers"",,Moderate,2016-05-13 00:00:00,ID,,Information disclosure vulnerability,Qualcomm SPMI driver,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3893,Information disclosure vulnerability in Qualcomm sound codec,"A-29512527,QC-CR856400","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=a7a6ddc91cce7ad5ad55c9709b24bfc80f5ac873"",,Moderate,2016-06-20 00:00:00,ID,,Information disclosure vulnerability,Qualcomm sound codec,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-3894,Information disclosure vulnerability in Qualcomm DMA component,"A-29618014,QC-CR1042033","none,https://developers.google.com/android/nexus/drivers"",,Moderate,2016-06-23 00:00:00,ID,,Information disclosure vulnerability,Qualcomm DMA component,2016,9,5,2016-09-11T21:59Z
2016-09-01,2016-09-05,CVE-2016-4998,Information disclosure vulnerability in kernel networking subsystem,A-29637687,"none,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=bdf533de6968e9686df777dc178486f600c6e617",http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6e94e0cfb0887e4013b3b930fa6ab1fe6bb6ba91"",,Moderate,2016-06-24 00:00:00,ID,,Information disclosure vulnerability,kernel networking subsystem,2016,9,5,2016-07-03T21:59Z
2016-09-01,2016-09-05,CVE-2015-2922,Denial of service vulnerability in kernel networking subsystem,A-29409847,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6fd99094de2b83d1d4c8457f2c83483b2828e75a",,High,2015-04-04 00:00:00,DoS,,Denial of service vulnerability,kernel networking subsystem,2016,9,5,2015-05-27T10:59Z
2016-09-01,2016-09-06,CVE-2016-5340,Elevation of privilege vulnerability in kernel shared memory subsystem,"A-30652312,QC-CR1008948","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=06e51489061e5473b4e2035c79dcf7c27a6f75a6"",,Critical,2022-07-16 00:00:00,EoP,,Elevation of privilege vulnerability,kernel shared memory subsystem,2016,9,6,2016-08-07T21:59Z
2016-09-01,2016-09-06,CVE-2016-2059,Elevation of privilege vulnerability in Qualcomm networking component,"A-27045580,QC-CR974577",https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=9e8bdd63f7011dff5523ea435433834b3702398d,,High,2016-02-04 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm networking component,2016,9,6,2016-05-05T21:59Z
2016-10-01,2016-10-01,CVE-2016-3900,Elevation of privilege vulnerability in ServiceManager,A-29431260,"https://android.googlesource.com/platform/frameworks/native/+/d3c6ce463ac91ecbeb2128beb475d31d3ca6ef42",https://android.googlesource.com/platform/frameworks/native/+/047eec456943dc082e33220d28abb7df4e089f69"","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-06-15 00:00:00,EoP,,Elevation of privilege vulnerability,ServiceManager,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3908,Elevation of privilege vulnerability in Lock Settings Service,A-30003944,https://android.googlesource.com/platform/frameworks/base/+/96daf7d4893f614714761af2d53dfb93214a32e4","6.0, 6.0.1, 7.0",High,2016-07-06 00:00:00,EoP,,Elevation of privilege vulnerability,Lock Settings Service,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3909,Elevation of privilege vulnerability in Mediaserver,A-30033990,https://android.googlesource.com/platform/frameworks/av/+/d4271b792bdad85a80e2b83ab34c4b30b74f53ec","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-07-08 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3910,Elevation of privilege vulnerability in Mediaserver,A-30148546,https://android.googlesource.com/platform/frameworks/av/+/035cb12f392860113dce96116a5150e2fde6f0cc","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-07-13 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3913,Elevation of privilege vulnerability in Mediaserver,A-30204103,https://android.googlesource.com/platform/frameworks/av/+/0c3b93c8c2027e74af642967eee5c142c8fd185d","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-07-18 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3911,Elevation of privilege vulnerability in Zygote process,A-30143607,https://android.googlesource.com/platform/frameworks/base/+/2c7008421cb67f5d89f16911bdbe36f6c35311ad","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-07-12 00:00:00,EoP,,Elevation of privilege vulnerability,Zygote process,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3912,Elevation of privilege vulnerability in framework APIs,A-30202481,https://android.googlesource.com/platform/frameworks/base/+/6c049120c2d749f0c0289d822ec7d0aa692f55c5","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-07-17 00:00:00,EoP,,Elevation of privilege vulnerability,framework APIs,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3914,Elevation of privilege vulnerability in Telephony,A-30481342,https://android.googlesource.com/platform/packages/providers/TelephonyProvider/+/3a3a5d145d380deef2d5b7c3150864cd04be397f","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-07-28 00:00:00,EoP,,Elevation of privilege vulnerability,Telephony,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3915,Elevation of privilege vulnerability in Camera service,A-30591838,https://android.googlesource.com/platform/system/media/+/e9e44f797742f52996ebf307740dad58c28fd9b5","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-08-01 00:00:00,EoP,,Elevation of privilege vulnerability,Camera service,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3916,Elevation of privilege vulnerability in Camera service,A-30741779,https://android.googlesource.com/platform/system/media/+/8e7a2b4d13bff03973dbad2bfb88a04296140433","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-08-02 00:00:00,EoP,,Elevation of privilege vulnerability,Camera service,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3917,Elevation of privilege vulnerability in fingerprint login,A-30744668,https://android.googlesource.com/platform/frameworks/base/+/f5334952131afa835dd3f08601fb3bced7b781cd","6.0.1, 7.0",High,2016-08-05 00:00:00,EoP,,Elevation of privilege vulnerability,fingerprint login,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3918,Information disclosure vulnerability in AOSP Mail,"A-30745403,A-30745403","https://android.googlesource.com/platform/packages/apps/Email/+/6b2b0bd7c771c698f11d7be89c2c57c8722c7454",https://android.googlesource.com/platform/packages/apps/Email/+/6b2b0bd7c771c698f11d7be89c2c57c8722c7454",none,none,none,none,none","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-08-05 00:00:00,ID,,Information disclosure vulnerability,AOSP Mail,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3882,Denial of service vulnerability in Wi-Fi,A-29464811,https://android.googlesource.com/platform/frameworks/opt/net/wifi/+/35a86eef3c0eef760f7e61c52a343327ba601630","6.0, 6.0.1, 7.0",High,2016-06-17 00:00:00,DoS,,Denial of service vulnerability,Wi-Fi,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-5348,Denial of service vulnerability in GPS,A-29555864,https://android.googlesource.com/platform/frameworks/base/+/218b813d5bc2d7d3952ea1861c38b4aa944ac59b","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-06-20 00:00:00,DoS,,Denial of service vulnerability,GPS,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3920,Denial of service vulnerability in Mediaserver,A-30744884,https://android.googlesource.com/platform/frameworks/av/+/6d0249be2275fd4086783f259f4e2c54722a7c55","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-08-05 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3921,Elevation of privilege vulnerability in Framework Listener,A-29831647,https://android.googlesource.com/platform/system/core/+/771ab014c24a682b32990da08e87e2f0ab765bd2","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-06-25 00:00:00,EoP,,Elevation of privilege vulnerability,Framework Listener,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3922,Elevation of privilege vulnerability in Telephony,A-30202619,https://android.googlesource.com/platform/hardware/ril/+/95610818918f6f11fe7d23aca1380e6c0fac2af0","6.0, 6.0.1, 7.0",Moderate,2016-07-17 00:00:00,EoP,,Elevation of privilege vulnerability,Telephony,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3923,Elevation of privilege vulnerability in Accessibility services,A-30647115,https://android.googlesource.com/platform/frameworks/base/+/5f256310187b4ff2f13a7abb9afed9126facd7bc",7,Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Accessibility services,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3924,Information disclosure vulnerability in Mediaserver,A-30204301,https://android.googlesource.com/platform/frameworks/av/+/c894aa36be535886a8e5ff02cdbcd07dd24618f6","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-07-18 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-01,CVE-2016-3925,Denial of service vulnerability in Wi-Fi,A-30230534,https://android.googlesource.com/platform/frameworks/opt/net/wifi/+/c2905409c20c8692d4396b8531b09e7ec81fa3fb","6.0, 6.0.1, 7.0",Moderate,Google internal,DoS,,Denial of service vulnerability,Wi-Fi,2016,10,1,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-0758,Remote code execution vulnerability in kernel ASN.1 decoder,A-29814470,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=23c8a812dc3c621009e4f0e5342aa4e2ede1ceaa",,Critical,2016-05-12 00:00:00,RCE,,Remote code execution vulnerability,kernel ASN.1 decoder,2016,10,5,2016-06-27T10:59Z
2016-10-01,2016-10-05,CVE-2016-7117,Remote code execution vulnerability in kernel networking subsystem,A-30515201,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=34b88a68f26a75e4fded796f1a49c40f82234b7d",,Critical,Google internal,RCE,,Remote code execution vulnerability,kernel networking subsystem,2016,10,5,2016-10-10T11:00Z
2016-10-01,2016-10-05,CVE-2016-3928,Elevation of privilege vulnerability in MediaTek video driver,"A-30019362,M-ALPS02829384","none,https://developers.google.com/android/nexus/drivers"",,Critical,2016-07-06 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek video driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-5340,Elevation of privilege vulnerability in kernel shared memory driver,"A-30652312,QC-CR1008948","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=06e51489061e5473b4e2035c79dcf7c27a6f75a6"",,Critical,2016-07-26 00:00:00,EoP,,Elevation of privilege vulnerability,kernel shared memory driver,2016,10,5,2016-08-07T21:59Z
2016-10-01,2016-10-05,CVE-2016-2059,Elevation of privilege vulnerability in Qualcomm networking component,"A-27045580,QC-CR974577","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=9e8bdd63f7011dff5523ea435433834b3702398d"",,High,2016-02-04 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm networking component,2016,10,5,2016-05-05T21:59Z
2016-10-01,2016-10-05,CVE-2016-3930,Elevation of privilege vulnerability in NVIDIA MMC test driver,,,,High,2016-05-12 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA MMC test driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3931,Elevation of privilege vulnerability in Qualcomm QSEE Communicator driver,"A-29157595,QC-CR1036418","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=e80b88323f9ff0bb0e545f209eec08ec56fca816"",,High,2016-06-04 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm QSEE Communicator driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3932,Elevation of privilege vulnerability in Mediaserver,"A-29161895,M-ALPS02770870","none,none",,High,2016-06-06 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3933,Elevation of privilege vulnerability in Mediaserver,"A-29421408, N-CVE-2016-3933","none, none",,High,2016-06-14 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3903,Elevation of privilege vulnerability in Qualcomm camera driver,"A-29513227,QC-CR1040857","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=b8874573428e8ce024f57c6242d662fcca5e5d55"",,High,2016-06-20 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3934,Elevation of privilege vulnerability in Qualcomm camera driver,"A-30102557,QC-CR789704","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=27fbeb6b025d5d46ccb0497cbed4c6e78ed1c5cc"",,High,2016-07-12 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2015-8951,Elevation of privilege vulnerability in Qualcomm sound driver,"A-30142668,QC-CR948902,QC-CR948902","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?h=APSS.FSM.3.0&,none",,High,2016-06-20 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3901,Elevation of privilege vulnerability in Qualcomm crypto engine driver,"A-29999161,QC-CR1046434","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=5f69ccf3b011c1d14a1b1b00dbaacf74307c9132"",,High,2016-07-06 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm crypto engine driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3935,Elevation of privilege vulnerability in Qualcomm crypto engine driver,"A-29999665,QC-CR1046507","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=5f69ccf3b011c1d14a1b1b00dbaacf74307c9132"",,High,2016-07-06 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm crypto engine driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3936,Elevation of privilege vulnerability in MediaTek video driver,"A-30019037,M-ALPS02829568","none,none",,High,2016-07-06 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek video driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3937,Elevation of privilege vulnerability in MediaTek video driver,"A-30030994,M-ALPS02834874","none,https://developers.google.com/android/nexus/drivers"",,High,2016-07-07 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek video driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3938,Elevation of privilege vulnerability in Qualcomm video driver,"A-30019716,QC-CR1049232","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=467c81f9736b1ebc8d4ba70f9221bba02425ca10"",,High,2016-07-07 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm video driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3939,Elevation of privilege vulnerability in Qualcomm video driver,"A-30874196,QC-CR1001224","none,https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=e0bb18771d6ca71db2c2a61226827059be3fa424"",,High,2016-08-15 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm video driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3940,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-30141991,none,,High,2016-07-12 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6672,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-30537088,none,,High,2016-07-31 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6673,Elevation of privilege vulnerability in NVIDIA camera driver,"A-30204201, N-CVE-2016-6673","none, none",,High,2016-07-17 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA camera driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6674,Elevation of privilege vulnerability in system_server,A-30445380,none,,High,2016-07-26 00:00:00,EoP,,Elevation of privilege vulnerability,system_server,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3905,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-28061823,QC-CR1001449","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=b5112838eb91b71eded4b5ee37338535784e0aef"",,High,Google internal,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6675,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-30873776,QC-CR1000861","none,https://source.codeaurora.org/quic/la//platform/vendor/qcom-opensource/wlan/prima/commit/?id=1353fa0bd0c78427f3ae7d9bde7daeb75bd01d09"",,High,2016-08-15 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6676,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-30874066,QC-CR1000853","none,https://source.codeaurora.org/quic/la//platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=6ba9136879232442a182996427e5c88e5a7512a8"",,High,2016-08-15 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-5342,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-30878283,QC-CR1032174","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=579e796cb089324c55e0e689a180575ba81b23d9"",,High,2016-08-15 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2016,10,5,2016-08-30T17:59Z
2016-10-01,2016-10-05,CVE-2015-8955,Elevation of privilege vulnerability in kernel performance subsystem,A-29508816,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=8fff105e13041e49b82f92eef034f363a6b1c071",,High,Google internal,EoP,,Elevation of privilege vulnerability,kernel performance subsystem,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2015-8950,Information disclosure vulnerability in kernel ION subsystem,"A-29795245,QC-CR1041735","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=6e2c437a2d0a85d90d3db85a7471f99764f7bbf8"",,High,2016-05-12 00:00:00,ID,,Information disclosure vulnerability,kernel ION subsystem,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6677,Information disclosure vulnerability in NVIDIA GPU driver,"A-30259955, N-CVE-2016-6677","none, none",,High,2016-07-19 00:00:00,ID,,Information disclosure vulnerability,NVIDIA GPU driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2015-0572,Elevation of privilege vulnerability in Qualcomm character driver,"A-29156684,QC-CR848489","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=34ad3d34fbff11b8e1210b9da0dac937fb956b61"",,Moderate,2016-05-28 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm character driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3860,Information disclosure vulnerability in Qualcomm sound driver,"A-29323142,QC-CR1038127","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/diff/sound/soc/msm/qdsp6v2/audio_calibration.c?id=528976f54be246ec93a71ac53aa4faf3e3791c48"",,Moderate,2016-06-13 00:00:00,ID,,Information disclosure vulnerability,Qualcomm sound driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6678,Information disclosure vulnerability in Motorola USBNet driver,A-29914434,none,,Moderate,2016-06-30 00:00:00,ID,,Information disclosure vulnerability,Motorola USBNet driver,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6679,Information disclosure vulnerability in Qualcomm components,"A-29915601,QC-CR1000913","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/prima/commit/?id=d39345f0abc309959d831d09fcbf1619cc0ae0f5"",,Moderate,2016-06-30 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-3902,Information disclosure vulnerability in Qualcomm components,"A-29953313,QC-CR1044072","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=2fca425d781572393fbe51abe2e27a932d24a768"",,Moderate,2016-07-02 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6680,Information disclosure vulnerability in Qualcomm components,"A-29982678,QC-CR1048052","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=2f2fa073b95d4700de88c0f7558b4a18c13ac552"",,Moderate,2016-07-03 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6681,Information disclosure vulnerability in Qualcomm components,"A-30152182,QC-CR1049521","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=0950fbd39ff189497f1b6115825c210e3eeaf395"",,Moderate,2016-07-14 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6682,Information disclosure vulnerability in Qualcomm components,"A-30152501,QC-CR1049615","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=0950fbd39ff189497f1b6115825c210e3eeaf395"",,Moderate,2016-07-14 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6683,Information disclosure vulnerability in kernel components,A-30143283,none,,Moderate,2016-07-13 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,10,5,2016-10-10T11:00Z
2016-10-01,2016-10-05,CVE-2016-6684,Information disclosure vulnerability in kernel components,A-30148243,none,,Moderate,2016-07-13 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,10,5,2016-10-10T11:00Z
2016-10-01,2016-10-05,CVE-2015-8956,Information disclosure vulnerability in kernel components,A-30149612,none,,Moderate,2016-07-14 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,10,5,2016-10-10T10:59Z
2016-10-01,2016-10-05,CVE-2016-6685,Information disclosure vulnerability in kernel components,A-30402628,none,,Moderate,2016-07-25 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,10,5,2016-10-10T11:00Z
2016-10-01,2016-10-05,CVE-2016-6686,Information disclosure vulnerability in NVIDIA profiler,"A-30163101, N-CVE-2016-6686","none,none",,Moderate,2016-07-15 00:00:00,ID,,Information disclosure vulnerability,NVIDIA profiler,2016,10,5,2016-10-10T11:00Z
2016-10-01,2016-10-05,CVE-2016-6687,Information disclosure vulnerability in NVIDIA profiler,"A-30162222, N-CVE-2016-6687","none,none",,Moderate,2016-07-15 00:00:00,ID,,Information disclosure vulnerability,NVIDIA profiler,2016,10,5,2016-10-10T11:00Z
2016-10-01,2016-10-05,CVE-2016-6688,Information disclosure vulnerability in NVIDIA profiler,"A-30593080, N-CVE-2016-6688","none,none",,Moderate,2016-08-02 00:00:00,ID,,Information disclosure vulnerability,NVIDIA profiler,2016,10,5,2016-10-10T11:00Z
2016-10-01,2016-10-05,CVE-2016-6689,Information disclosure vulnerability in kernel,A-30768347,none,,Moderate,2016-08-09 00:00:00,ID,,Information disclosure vulnerability,kernel,2016,10,5,2016-10-10T11:00Z
2016-10-01,2016-10-05,CVE-2016-5696,Denial of service vulnerability in kernel networking subsystem,A-30809774,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=75ff39ccc1bd5d3c455b6822ab09e533c551f758",,Moderate,2016-07-12 00:00:00,DoS,,Denial of service vulnerability,kernel networking subsystem,2016,10,5,2016-08-06T20:59Z
2016-10-01,2016-10-05,CVE-2016-6690,Denial of service vulnerability in kernel sound driver,A-28838221,none,,Low,2016-05-18 00:00:00,DoS,,Denial of service vulnerability,kernel sound driver,2016,10,5,2016-10-10T11:00Z
2016-11-01,2016-11-01,CVE-2016-6699,Remote code execution vulnerability in Mediaserver,A-31373622,https://android.googlesource.com/platform/frameworks/av/+/3b1c9f692c4d4b7a683c2b358fc89e831a641b88",7,Critical,2016-07-27 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2016,11,1,2016-12-13T19:59Z
2016-11-01,2016-11-01,CVE-2016-6700,Elevation of privilege vulnerability in libzipfile,A-30916186,none,"4.4.4, 5.0.2, 5.1.1",Critical,2016-08-17 00:00:00,EoP,,Elevation of privilege vulnerability,libzipfile,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6701,Remote code execution vulnerability in Skia,A-30190637,https://android.googlesource.com/platform/external/skia/+/aca73722873e908633ff27375f6f93a08cbb7dd3",7,High,Google internal,RCE,,Remote code execution vulnerability,Skia,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6702,Remote code execution vulnerability in libjpeg,A-30259087,none,"4.4.4, 5.0.2, 5.1.1",High,2016-07-19 00:00:00,RCE,,Remote code execution vulnerability,libjpeg,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6703,Remote code execution vulnerability in Android runtime,A-30765246,none,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,Google internal,RCE,,Remote code execution vulnerability,Android runtime,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6704,Elevation of privilege vulnerability in Mediaserver,A-30229821,"https://android.googlesource.com/platform/frameworks/av/+/c6c446f9e022adf20064e65a17574804f8af8e7d",https://android.googlesource.com/platform/hardware/qcom/audio/+/9cb9810ecb63c8ff55ecf4bc77431dc5b0688b5f"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-07-19 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6705,Elevation of privilege vulnerability in Mediaserver,A-30907212,"https://android.googlesource.com/platform/frameworks/av/+/3a03fa24d21f97e84e796ac5ef14b3f434c0e8f1",https://android.googlesource.com/platform/frameworks/av/+/bd04b47d38a89f1dada1c6da2ef4a3d235c166b8"","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-08-16 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6706,Elevation of privilege vulnerability in Mediaserver,A-31385713,https://android.googlesource.com/platform/frameworks/av/+/1d4feebdb85db46e138530f360d9ff2490e14353",7,High,2016-09-08 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,11,1,2016-12-13T19:59Z
2016-11-01,2016-11-01,CVE-2016-6707,Elevation of privilege vulnerability in System Server,A-31350622,https://android.googlesource.com/platform/frameworks/base/+/16024ea7c4bae08c972cf6b3734029aad33e8870","6.0, 6.0.1, 7.0",High,2016-09-07 00:00:00,EoP,,Elevation of privilege vulnerability,System Server,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6708,Elevation of privilege vulnerability in System UI,A-30693465,https://android.googlesource.com/platform/frameworks/base/+/c9c73fde339b4db496f2c1ff8c18df1e9db5a7c1",7,High,Google internal,EoP,,Elevation of privilege vulnerability,System UI,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6709,Information disclosure vulnerability in Conscrypt,A-31081987,https://android.googlesource.com/platform/external/conscrypt/+/44ef9535b9afb123d150d8e0362e4bb50794dd41","6.0, 6.0.1, 7.0",High,2015-10-09 00:00:00,ID,,Information disclosure vulnerability,Conscrypt,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6710,Information disclosure vulnerability in download manager,A-30537115,"https://android.googlesource.com/platform/frameworks/base/+/9fab683c9598d234dd8461335c276ed3e37c91e8",https://android.googlesource.com/platform/packages/providers/DownloadProvider/+/243e62949f7208d3b82eda3ee4ec22d3dbc1fb19"","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-07-30 00:00:00,ID,,Information disclosure vulnerability,download manager,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2014-9908,Denial of service vulnerability in Bluetooth,A-28672558,none,"4.4.4, 5.0.2, 5.1.1",High,2014-05-05 00:00:00,DoS,,Denial of service vulnerability,Bluetooth,2016,11,1,2020-01-08T15:15Z
2016-11-01,2016-11-01,CVE-2015-0410,Denial of service vulnerability in OpenJDK,A-30703445,https://android.googlesource.com/platform/libcore/+/21098574528bdf99dd50a74a60e161573e999108",7,High,2015-01-16 00:00:00,DoS,,Denial of service vulnerability,OpenJDK,2016,11,1,2015-01-21T18:59Z
2016-11-01,2016-11-01,CVE-2016-6711,Denial of service vulnerability in Mediaserver,A-30593765,https://android.googlesource.com/platform/external/libvpx/+/063be1485e0099bc81ace3a08b0ec9186dcad693","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-08-01 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,11,1,2016-12-13T19:59Z
2016-11-01,2016-11-01,CVE-2016-6712,Denial of service vulnerability in Mediaserver,A-30593752,https://android.googlesource.com/platform/external/libvpx/+/fdb1b40e7bb147c07bda988c9501ad223795d12d","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-08-01 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,11,1,2016-12-13T19:59Z
2016-11-01,2016-11-01,CVE-2016-6713,Denial of service vulnerability in Mediaserver,A-30822755,https://android.googlesource.com/platform/external/libavc/+/8cafca0e8b1ed8125918e203118c5a4e612fd56c","6.0, 6.0.1, 7.0",High,2016-08-11 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6714,Denial of service vulnerability in Mediaserver,A-31092462,https://android.googlesource.com/platform/external/libavc/+/5bdb0a6b72782e505671a387bb5f83222d891d6a","6.0, 6.0.1, 7.0",High,2016-08-22 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6715,Elevation of privilege vulnerability in Framework APIs,A-29833954,https://android.googlesource.com/platform/frameworks/base/+/3de09838fb0996bb4b420630800ad34e828fd1b6","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-06-28 00:00:00,EoP,,Elevation of privilege vulnerability,Framework APIs,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6716,Elevation of privilege vulnerability in AOSP Launcher,A-30778130,https://android.googlesource.com/platform/packages/apps/Launcher3/+/e83fc11c982e67dd0181966f5f3a239ea6b14924",7,Moderate,2016-08-05 00:00:00,EoP,,Elevation of privilege vulnerability,AOSP Launcher,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6717,Elevation of privilege vulnerability in Mediaserver,A-31350239,https://android.googlesource.com/platform/frameworks/av/+/45d9bbabbe7920bf4e0a68074b97d8260aef2e07","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-09-07 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6718,Elevation of privilege vulnerability in Account Manager Service,A-30455516,https://android.googlesource.com/platform/frameworks/base/+/fecfd550edeca422c0d9f32a9c0abe73398a1ff1",7,Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Account Manager Service,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6719,Elevation of privilege vulnerability in Bluetooth,A-29043989,https://android.googlesource.com/platform/packages/apps/Bluetooth/+/e1b6db10e913c09d0b695368336137f6aabee462","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Bluetooth,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6720,Information disclosure vulnerability in Mediaserver,A-29422020,"https://android.googlesource.com/platform/frameworks/av/+/0f177948ae2640bfe4d70f8e4248e106406b3b0a",https://android.googlesource.com/platform/frameworks/av/+/2c75e1c3b98e4e94f50c63e2b7694be5f948477c"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-06-15 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,11,1,2016-12-13T19:59Z
2016-11-01,2016-11-01,CVE-2016-6721,Information disclosure vulnerability in Mediaserver,A-30875060,https://android.googlesource.com/platform/frameworks/av/+/f6bf0102bdc1adff973e08d8ce9c869c4e2efade","6.0, 6.0.1, 7.0",Moderate,2016-08-13 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6722,Information disclosure vulnerability in Mediaserver,A-31091777,https://android.googlesource.com/platform/frameworks/av/+/89c03b3b9ff74a507a8b8334c50b08b334483556","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-08-23 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,11,1,2016-12-13T19:59Z
2016-11-01,2016-11-01,CVE-2016-6723,Denial of service vulnerability in Proxy Auto Config,A-30100884,"https://android.googlesource.com/platform/frameworks/base/+/d5b0d0b1df2e1a7943a4bb2034fd21487edd0264",https://android.googlesource.com/platform/frameworks/base/+/31f351160cdfd9dbe9919682ebe41bde3bcf91c6"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-07-11 00:00:00,DoS,,Denial of service vulnerability,Proxy Auto Config,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-01,CVE-2016-6724,Denial of service vulnerability in Input Manager Service,A-30568284,https://android.googlesource.com/platform/frameworks/base/+/7625010a2d22f8c3f1aeae2ef88dde37cbebd0bf","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,Google internal,DoS,,Denial of service vulnerability,Input Manager Service,2016,11,1,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6725,Remote code execution vulnerability in Qualcomm crypto driver,"A-30515053,QC-CR1050970","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=cc95d644ee8a043f2883d65dda20e16f95041de3"",,Critical,2016-07-25 00:00:00,RCE,,Remote code execution vulnerability,Qualcomm crypto driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2015-8961,Elevation of privilege vulnerability in kernel file system,A-30952474,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6934da9238da947628be83635e365df41064b09b",,Critical,2015-10-18 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-7911,Elevation of privilege vulnerability in kernel file system,A-30946378,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=8ba8682107ee2ca3347354e018865d8e1967c5f4",,Critical,2016-07-01 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-7910,Elevation of privilege vulnerability in kernel file system,A-30942273,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=77da160530dd1dc94f6ae15a981f24e5f0021e84",,Critical,2016-07-29 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2015-8962,Elevation of privilege vulnerability in kernel SCSI driver,A-30951599,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=f3951a3709ff50990bf3e188c27d346792103432",,Critical,2015-10-30 00:00:00,EoP,,Elevation of privilege vulnerability,kernel SCSI driver,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-7913,Elevation of privilege vulnerability in kernel media driver,A-30946097,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=8dfbcc4351a0b6d2f2d77f367552f48ffefafe18",,Critical,2016-01-28 00:00:00,EoP,,Elevation of privilege vulnerability,kernel media driver,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-7912,Elevation of privilege vulnerability in kernel USB driver,A-30950866,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=38740a5b87d53ceb89eb2c970150f6e94e00373a",,Critical,2016-04-14 00:00:00,EoP,,Elevation of privilege vulnerability,kernel USB driver,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-6728,Elevation of privilege vulnerability in kernel ION subsystem,A-30400942,none,,Critical,2016-07-25 00:00:00,EoP,,Elevation of privilege vulnerability,kernel ION subsystem,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6729,Elevation of privilege vulnerability in Qualcomm bootloader,"A-30977990,QC-CR977684","none,https://developers.google.com/android/nexus/drivers"",,Critical,2016-07-25 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm bootloader,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6730,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-30904789, N-CVE-2016-6730","none,none",,Critical,2016-08-16 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6731,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-30906023, N-CVE-2016-6731","none,none",,Critical,2016-08-16 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6732,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-30906599, N-CVE-2016-6732","none,none",,Critical,2016-08-16 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6733,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-30906694, N-CVE-2016-6733","none,none",,Critical,2016-08-16 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6734,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-30907120, N-CVE-2016-6734","none,none",,Critical,2016-08-16 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6735,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-30907701, N-CVE-2016-6735","none,none",,Critical,2016-08-16 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6736,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-30953284, N-CVE-2016-6736","none,none",,Critical,2016-08-18 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6828,Elevation of privilege vulnerability in kernel networking subsystem,A-31183296,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/include/net/tcp.h?id=bb1fceca22492109be12640d49f5ea5a544c6bb4",,Critical,2016-08-18 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking subsystem,2016,11,5,2016-10-16T21:59Z
2016-11-01,2016-11-05,CVE-2016-2184,Elevation of privilege vulnerability in kernel sound subsystem,A-30952477,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=836b34a935abc91e13e63053d0a83b24dfb5ea78",,Critical,2016-03-31 00:00:00,EoP,,Elevation of privilege vulnerability,kernel sound subsystem,2016,11,5,2016-04-27T17:59Z
2016-11-01,2016-11-05,CVE-2016-6737,Elevation of privilege vulnerability in kernel ION subsystem,A-30928456,https://developers.google.com/android/nexus/drivers",,Critical,Google internal,EoP,,Elevation of privilege vulnerability,kernel ION subsystem,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-0718,Remote code execution vulnerability in Expat,A-28698301,https://android.googlesource.com/platform/external/expat/+/52ac633b73856ded34b33bd4adb4ab793bbbe963","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-05-10 00:00:00,RCE,,Remote code execution vulnerability,Expat,2016,11,5,2016-05-26T16:59Z
2016-11-01,2016-11-05,CVE-2012-6702,Remote code execution vulnerability in Expat,A-29149404,https://android.googlesource.com/platform/external/expat/+/a11ff32280a863bff93df13ad643912ad9bf1302","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-03-06 00:00:00,RCE,,Remote code execution vulnerability,Expat,2016,11,5,2016-06-16T18:59Z
2016-11-01,2016-11-05,CVE-2016-5300,Remote code execution vulnerability in Expat,A-29149404,https://android.googlesource.com/platform/external/expat/+/a11ff32280a863bff93df13ad643912ad9bf1302","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-06-04 00:00:00,RCE,,Remote code execution vulnerability,Expat,2016,11,5,2016-06-16T18:59Z
2016-11-01,2016-11-05,CVE-2015-1283,Remote code execution vulnerability in Expat,A-27818751,https://android.googlesource.com/platform/external/expat/+/13b40c2040a17038b63a61e2b112c634da203d3b","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",Low,2015-07-24 00:00:00,RCE,,Remote code execution vulnerability,Expat,2016,11,5,2015-07-23T00:59Z
2016-11-01,2016-11-05,CVE-2016-6754,Remote code execution vulnerability in Webview,A-31217937,none,"5.0.2, 5.1.1, 6.0, 6.0.1",High,2016-08-23 00:00:00,RCE,,Remote code execution vulnerability,Webview,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2014-9675,Remote code execution vulnerability in Freetype,A-24296662,https://android.googlesource.com/platform/external/freetype/+/f720f0dbcf012d6c984dbbefa0875ef9840458c6","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1",High,Google internal,RCE,,Remote code execution vulnerability,Freetype,2016,11,5,2015-02-08T11:59Z
2016-11-01,2016-11-05,CVE-2015-8963,Elevation of privilege vulnerability in kernel performance subsystem,A-30952077,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=12ca6ad2e3a896256f086497a7c7406a547ee373",,High,2015-12-15 00:00:00,EoP,,Elevation of privilege vulnerability,kernel performance subsystem,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-6136,Elevation of privilege vulnerability in kernel system-call auditing subsystem,A-30956807,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=43761473c254b45883a64441dd0bc85a42f3645c",,High,2016-07-01 00:00:00,EoP,,Elevation of privilege vulnerability,kernel system-call auditing subsystem,2016,11,5,2016-08-06T20:59Z
2016-11-01,2016-11-05,CVE-2016-6738,Elevation of privilege vulnerability in Qualcomm crypto engine driver,"A-30034511,QC-CR1050538","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=a829c54236b455885c3e9c7c77ac528b62045e79"",,High,2016-07-07 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm crypto engine driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6739,Elevation of privilege vulnerability in Qualcomm camera driver,"A-30074605,QC-CR1049826","none,none",,High,2016-07-11 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6740,Elevation of privilege vulnerability in Qualcomm camera driver,"A-30143904,QC-CR1056307","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=ef78bd62f0c064ae4c827e158d828b2c110ebcdc"",,High,2016-07-12 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6741,Elevation of privilege vulnerability in Qualcomm camera driver,"A-30559423,QC-CR1060554","https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=d291eebd8e43bba3229ae7ef9146a132894dc293",https://developers.google.com/android/nexus/drivers"",,High,2016-07-28 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-3904,Elevation of privilege vulnerability in Qualcomm bus driver,"A-30311977,QC-CR1050455","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=069683407ca9a820d05c914b57c587bcd3f16a3a"",,High,2016-07-22 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm bus driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6742,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-30799828,none,,High,2016-08-09 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6744,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-30970485,none,,High,2016-08-19 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6745,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-31252388,none,,High,2016-09-01 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6743,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-30937462,https://developers.google.com/android/nexus/drivers",,High,Google internal,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2015-8964,Information disclosure vulnerability in kernel components,A-30951112,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=dd42bf1197144ede075a9d4793123f7689e164bc",,High,2015-11-27 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-7915,Information disclosure vulnerability in kernel components,A-30951261,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=50220dead1650609206efe91f0cc116132d59b3f",,High,2016-01-19 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-7914,Information disclosure vulnerability in kernel components,A-30513364,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=8d4a2ec1e0b41b0cf9a0c5cd4511da7f8e4f3de2",,High,2016-04-06 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-7916,Information disclosure vulnerability in kernel components,A-30951939,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=8148a73c9901a8794a50f950083c00ccf97d43b3",,High,2016-05-05 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-6746,Information disclosure vulnerability in NVIDIA GPU driver,"A-30955105, N-CVE-2016-6746","none,none",,High,2016-08-18 00:00:00,ID,,Information disclosure vulnerability,NVIDIA GPU driver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6747,Denial of service vulnerability in Mediaserver,"A-31244612, N-CVE-2016-6747","none,none",,High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-7917,Information disclosure vulnerability in kernel components,A-30947055,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=c58d6c93680f28ac58984af61d0a7ebf4319c241",,Moderate,2016-02-02 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,11,5,2016-11-16T05:59Z
2016-11-01,2016-11-05,CVE-2016-6753,Information disclosure vulnerability in kernel components,A-30149174,https://developers.google.com/android/nexus/drivers",,Moderate,2016-07-13 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6748,Information disclosure vulnerability in Qualcomm components,"A-30076504,QC-CR987018","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=be651d020b122a1ba9410d23ca4ebbe9f5598df6"",,Moderate,2016-07-12 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6749,Information disclosure vulnerability in Qualcomm components,"A-30228438,QC-CR1052818","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=f9185dc83b92e7d1ee341e32e8cf5ed00a7253a7"",,Moderate,2016-07-12 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6750,Information disclosure vulnerability in Qualcomm components,"A-30312054,QC-CR1052825","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=34bda711a1c7bc7f9fd7bea3a5be439ed00577e5"",,Moderate,2016-07-21 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-3906,Information disclosure vulnerability in Qualcomm components,"A-30445973,QC-CR1054344","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=b333d32745fec4fb1098ee1a03d4425f3c1b4c2e"",,Moderate,2016-07-27 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-3907,Information disclosure vulnerability in Qualcomm components,"A-30593266,QC-CR1054352","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=744330f4e5d70dce71c4c9e03c5b6a8b59bb0cda"",,Moderate,2016-08-02 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6698,Information disclosure vulnerability in Qualcomm components,"A-30741851,QC-CR1058826","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=de90beb76ad0b80da821c3b857dd30cd36319e61"",,Moderate,2016-08-02 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6751,Information disclosure vulnerability in Qualcomm components,"A-30902162,QC-CR1062271","none,none",,Moderate,2016-08-15 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-05,CVE-2016-6752,Information disclosure vulnerability in Qualcomm components,"A-31498159,QC-CR987051","https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?h=0de2c7600c8f1f0152a2f421c6593f931186400a",https://developers.google.com/android/nexus/drivers"",,Moderate,Google internal,ID,,Information disclosure vulnerability,Qualcomm components,2016,11,5,2016-11-25T16:59Z
2016-11-01,2016-11-06,CVE-2016-5195,Elevation of privilege vulnerability in kernel memory subsystem,A-32141528,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=9691eac5593ff1e2f82391ad327f21d90322aec1,"3.10, 3.18",Critical,2016-10-12 00:00:00,EoP,,Elevation of privilege vulnerability,kernel memory subsystem,2016,11,6,2016-11-10T21:59Z
2016-12-01,2016-12-01,CVE-2016-5419,Remote code execution vulnerability in CURL/LIBCURL,A-31271247,none,7,High,2016-08-03 00:00:00,RCE,,Remote code execution vulnerability,CURL/LIBCURL,2016,12,1,2016-08-10T14:59Z
2016-12-01,2016-12-01,CVE-2016-5420,Remote code execution vulnerability in CURL/LIBCURL,A-31271247,none,7,High,2016-08-03 00:00:00,RCE,,Remote code execution vulnerability,CURL/LIBCURL,2016,12,1,2016-08-10T14:59Z
2016-12-01,2016-12-01,CVE-2016-5421,Remote code execution vulnerability in CURL/LIBCURL,A-31271247,none,7,High,2016-08-03 00:00:00,RCE,,Remote code execution vulnerability,CURL/LIBCURL,2016,12,1,2016-08-10T14:59Z
2016-12-01,2016-12-01,CVE-2016-6762,Elevation of privilege vulnerability in libziparchive,A-31251826,"https://android.googlesource.com/platform/system/core/+/1ee4892e66ba314131b7ecf17e98bb1762c4b84c",https://android.googlesource.com/platform/bionic/+/3656958a16590d07d1e25587734e000beb437740"","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-08-28 00:00:00,EoP,,Elevation of privilege vulnerability,libziparchive,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6763,Denial of service vulnerability in Telephony,A-31530456,https://android.googlesource.com/platform/packages/services/Telephony/+/1294620627b1e9afdf4bd0ad51c25ed3daf80d84","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-09-12 00:00:00,DoS,,Denial of service vulnerability,Telephony,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6766,Denial of service vulnerability in Telephony,A-31318219,https://android.googlesource.com/platform/frameworks/av/+/0d13824315b0491d44e9c6eb5db06489ab0fcc20","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-09-05 00:00:00,DoS,,Denial of service vulnerability,Telephony,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6765,Denial of service vulnerability in Telephony,A-31449945,https://android.googlesource.com/platform/frameworks/av/+/fd9cc97d4dfe2a2fbce2c0f1704d7a27ce7cbc44","4.4.4, 5.0.2, 5.1.1, 7.0",High,2016-09-13 00:00:00,DoS,,Denial of service vulnerability,Telephony,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6764,Denial of service vulnerability in Telephony,A-31681434,https://android.googlesource.com/platform/frameworks/av/+/0d13824315b0491d44e9c6eb5db06489ab0fcc20","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-09-22 00:00:00,DoS,,Denial of service vulnerability,Telephony,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6767,Denial of service vulnerability in Telephony,A-31833604,none,4.4.4,High,Google internal,DoS,,Denial of service vulnerability,Telephony,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6768,Remote Code Execution vulnerability in Framesequence library,A-31631842,https://android.googlesource.com/platform/frameworks/ex/+/0ada9456d0270cb0e357a43d9187a6418d770760","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-09-19 00:00:00,RCE,,Remote Code Execution vulnerability,Framesequence library,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6769,Elevation of privilege vulnerability in Smart Lock,A-29055171,none,"5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-05-27 00:00:00,EoP,,Elevation of privilege vulnerability,Smart Lock,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6770,Elevation of privilege vulnerability in Framework APIs,A-30202228,https://android.googlesource.com/platform/frameworks/base/+/2c61c57ac53cbb270b4e76b9d04465f8a3f6eadc","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-07-16 00:00:00,EoP,,Elevation of privilege vulnerability,Framework APIs,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6771,Elevation of privilege vulnerability in Telephony,A-31566390,https://android.googlesource.com/platform/packages/services/Telephony/+/a39ff9526aee6f2ea4f6e02412db7b33d486fd7d","6.0, 6.0.1, 7.0",Moderate,2016-09-17 00:00:00,EoP,,Elevation of privilege vulnerability,Telephony,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6772,Elevation of privilege vulnerability in Wi-Fi,A-31856351,https://android.googlesource.com/platform/frameworks/opt/net/wifi/+/a5a18239096f6faee80f15f3fff39c3311898484","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",Moderate,2016-09-30 00:00:00,EoP,,Elevation of privilege vulnerability,Wi-Fi,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6773,Information disclosure vulnerability in Mediaserver,A-30481714,"https://android.googlesource.com/platform/external/libavc/+/026745ef046e646b8d04f4f57d8320042f6b29b0",https://android.googlesource.com/platform/external/libavc/+/6676aeb4195e7c7379915c0972f3d209410f0641"","6.0, 6.0.1, 7.0",Moderate,2016-07-27 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-01,CVE-2016-6774,Information disclosure vulnerability in Package Manager,A-31251489,https://android.googlesource.com/platform/frameworks/base/+/e2d4f5fc313ecb4ba587b20fff6d346f8cd51775",7,Moderate,2016-08-29 00:00:00,ID,,Information disclosure vulnerability,Package Manager,2016,12,1,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-4794,Elevation of privilege vulnerability in kernel memory subsystem,A-31596597,http://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=6710e594f71ccaad8101bc64321152af7cd9ea28",,Critical,2016-04-17 00:00:00,EoP,,Elevation of privilege vulnerability,kernel memory subsystem,2016,12,5,2016-05-23T10:59Z
2016-12-01,2016-12-05,CVE-2016-5195,Elevation of privilege vulnerability in kernel memory subsystem,A-32141528,"https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=9691eac5593ff1e2f82391ad327f21d90322aec1",https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=e45a502bdeae5a075257c4f061d1ff4ff0821354"",,Critical,2016-10-12 00:00:00,EoP,,Elevation of privilege vulnerability,kernel memory subsystem,2016,12,5,2016-11-10T21:59Z
2016-12-01,2016-12-05,CVE-2016-6775,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31222873, N-CVE-2016-6775","none,none",,Critical,2016-08-25 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6776,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31680980, N-CVE-2016-6776","none,none",,Critical,2016-09-22 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6777,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31910462, N-CVE-2016-6777","none,none",,Critical,2016-10-03 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2015-8966,Elevation of privilege vulnerability in kernel,A-31435731,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=76cc404bfdc0d419c720de4daaf2584542734f42",,Critical,2016-09-10 00:00:00,EoP,,Elevation of privilege vulnerability,kernel,2016,12,5,2016-12-08T21:59Z
2016-12-01,2016-12-05,CVE-2016-6915,Elevation of privilege vulnerability in NVIDIA video driver,"A-31471161, N-CVE-2016-6915","none,none",,Critical,2016-09-13 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA video driver,2016,12,5,2017-04-24T20:59Z
2016-12-01,2016-12-05,CVE-2016-6916,Elevation of privilege vulnerability in NVIDIA video driver,"A-32072350, N-CVE-2016-6916","none,none",,Critical,2016-09-13 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA video driver,2016,12,5,2017-04-24T19:59Z
2016-12-01,2016-12-05,CVE-2016-6917,Elevation of privilege vulnerability in NVIDIA video driver,"A-32072253, N-CVE-2016-6917","none,none",,Critical,2016-09-13 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA video driver,2016,12,5,2017-04-24T19:59Z
2016-12-01,2016-12-05,CVE-2016-9120,Elevation of privilege vulnerability in kernel ION driver,A-31568617,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=9590232bb4f4cc824f3425a6e1349afbe6d6d2b7",,Critical,2016-09-16 00:00:00,EoP,,Elevation of privilege vulnerability,kernel ION driver,2016,12,5,2016-12-08T21:59Z
2016-12-01,2016-12-05,CVE-2014-4014,Elevation of privilege vulnerability in kernel file system,A-31252187,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=23adbe12ef7d3d4195e80800ab36b37bee28cd03",,High,2014-06-10 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2016,12,5,2014-06-23T11:21Z
2016-12-01,2016-12-05,CVE-2015-8967,Elevation of privilege vulnerability in kernel,A-31703084,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=c623b33b4e9599c6ac5076f7db7369eb9869aa04",,High,2015-01-08 00:00:00,EoP,,Elevation of privilege vulnerability,kernel,2016,12,5,2016-12-08T21:59Z
2016-12-01,2016-12-05,CVE-2016-6778,Elevation of privilege vulnerability in HTC sound codec driver,A-31384646,none,,High,2016-02-25 00:00:00,EoP,,Elevation of privilege vulnerability,HTC sound codec driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6779,Elevation of privilege vulnerability in HTC sound codec driver,A-31386004,none,,High,2016-02-25 00:00:00,EoP,,Elevation of privilege vulnerability,HTC sound codec driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6780,Elevation of privilege vulnerability in HTC sound codec driver,A-31251496,https://developers.google.com/android/nexus/drivers",,High,2016-08-30 00:00:00,EoP,,Elevation of privilege vulnerability,HTC sound codec driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6492,Elevation of privilege vulnerability in MediaTek driver,"A-28175122,MT-ALPS02696413","none,none",,High,2016-04-11 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek driver,2016,12,5,2017-01-12T23:59Z
2016-12-01,2016-12-05,CVE-2016-6781,Elevation of privilege vulnerability in MediaTek driver,"A-31095175,MT-ALPS02943455","none,none",,High,2016-08-22 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6782,Elevation of privilege vulnerability in MediaTek driver,"A-31224389,MT-ALPS02943506","none,none",,High,2016-08-24 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6783,Elevation of privilege vulnerability in MediaTek driver,"A-31350044,MT-ALPS02943437","none,none",,High,2016-09-06 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6784,Elevation of privilege vulnerability in MediaTek driver,"A-31350755,MT-ALPS02961424","none,none",,High,2016-09-06 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6785,Elevation of privilege vulnerability in MediaTek driver,"A-31748056,MT-ALPS02961400","none,none",,High,2016-09-25 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6761,Elevation of privilege vulnerability in Qualcomm media codecs,"A-29421682,QC-CR1055792","none,none",,High,2016-06-16 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm media codecs,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6760,Elevation of privilege vulnerability in Qualcomm media codecs,"A-29617572,QC-CR1055783","none,none",,High,2016-06-23 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm media codecs,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6759,Elevation of privilege vulnerability in Qualcomm media codecs,"A-29982686,QC-CR1055766","none,none",,High,2016-07-04 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm media codecs,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6758,Elevation of privilege vulnerability in Qualcomm media codecs,"A-30148882,QC-CR1071731","none,none",,High,2016-07-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm media codecs,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6755,Elevation of privilege vulnerability in Qualcomm camera driver,"A-30740545,QC-CR1065916","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=b5df02edbcdf53dbbab77903d28162772edcf6e0"",,High,2016-08-03 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6786,Elevation of privilege vulnerability in kernel performance subsystem,A-30955111,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=f63a8daa5812afef4f06c962351687e1ff9ccb2b",,High,2016-08-18 00:00:00,EoP,,Elevation of privilege vulnerability,kernel performance subsystem,2016,12,5,2016-12-28T07:59Z
2016-12-01,2016-12-05,CVE-2016-6787,Elevation of privilege vulnerability in kernel performance subsystem,A-31095224,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=f63a8daa5812afef4f06c962351687e1ff9ccb2b",,High,2016-08-22 00:00:00,EoP,,Elevation of privilege vulnerability,kernel performance subsystem,2016,12,5,2016-12-28T07:59Z
2016-12-01,2016-12-05,CVE-2016-6788,Elevation of privilege vulnerability in MediaTek I2C driver,"A-31224428,MT-ALPS02943467","none,none",,High,2016-08-24 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek I2C driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6789,Elevation of privilege vulnerability in NVIDIA libomx library,"A-31251973, N-CVE-2016-6789","none,none",,High,2016-08-29 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA libomx library,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6790,Elevation of privilege vulnerability in NVIDIA libomx library,"A-31251628, N-CVE-2016-6790","none,none",,High,2016-08-28 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA libomx library,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6791,Elevation of privilege vulnerability in Qualcomm sound driver,"A-31252384,QC-CR1071809","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=62580295210b6c0bd809cde7088b45ebb65ace79"",,High,2016-08-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8391,Elevation of privilege vulnerability in Qualcomm sound driver,"A-31253255,QC-CR1072166","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=62580295210b6c0bd809cde7088b45ebb65ace79"",,High,2016-08-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8392,Elevation of privilege vulnerability in Qualcomm sound driver,"A-31385862,QC-CR1073136","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=62580295210b6c0bd809cde7088b45ebb65ace79"",,High,2016-09-08 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2015-7872,Elevation of privilege vulnerability in kernel security subsystem,A-31253168,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=f05819df10d7b09f6d1eb6f8534a8f68e5a4fe61",,High,2016-08-31 00:00:00,EoP,,Elevation of privilege vulnerability,kernel security subsystem,2016,12,5,2015-11-16T11:59Z
2016-12-01,2016-12-05,CVE-2016-8393,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-31911920,none,,High,2016-09-08 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8394,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-31913197,https://developers.google.com/android/nexus/drivers",,High,2016-09-08 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2014-9909,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-31676542,B-RB26684","none,none",,High,2016-09-21 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2016,12,5,2017-01-18T17:59Z
2016-12-01,2016-12-05,CVE-2014-9910,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-31746399,B-RB26710","none,none",,High,2016-09-26 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2016,12,5,2017-01-18T17:59Z
2016-12-01,2016-12-05,CVE-2016-8396,Information disclosure vulnerability in MediaTek video driver,A-31249105,none,,High,2016-08-26 00:00:00,ID,,Information disclosure vulnerability,MediaTek video driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8397,Information disclosure vulnerability in NVIDIA video driver,"A-31385953, N-CVE-2016-8397","none,none",,High,2016-09-08 00:00:00,ID,,Information disclosure vulnerability,NVIDIA video driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-5341,Denial of service vulnerability in GPS,A-31470303,https://developers.google.com/android/nexus/drivers",,High,2016-06-21 00:00:00,DoS,,Denial of service vulnerability,GPS,2016,12,5,2016-12-06T11:59Z
2016-12-01,2016-12-05,CVE-2016-8395,Denial of service vulnerability in NVIDIA camera driver,"A-31403040, N-CVE-2016-8395","none,none",,High,2016-09-09 00:00:00,DoS,,Denial of service vulnerability,NVIDIA camera driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8399,Elevation of privilege vulnerability in kernel networking subsystem,A-31349935,https://developers.google.com/android/nexus/drivers",,Moderate,2016-09-05 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking subsystem,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6756,Information disclosure vulnerability in Qualcomm components,"A-29464815,QC-CR1042068","https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=f91d28dcba304c9f3af35b5bebaa26233c8c13a5",https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=3a214ef870dc97437c7de79a1507dfe5079dce88"",,Moderate,2016-06-17 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-6757,Information disclosure vulnerability in Qualcomm components,"A-30148242,QC-CR1052821","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=cd99d3bbdb16899a425716e672485e0cdc283245"",,Moderate,2016-07-13 00:00:00,ID,,Information disclosure vulnerability,Qualcomm components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8400,Information disclosure vulnerability in NVIDIA librm library,"A-31251599, N-CVE-2016-8400","none,none",,Moderate,2016-08-29 00:00:00,ID,,Information disclosure vulnerability,NVIDIA librm library,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8401,Information disclosure vulnerability in kernel components,A-31494725,none,,Moderate,2016-09-13 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8402,Information disclosure vulnerability in kernel components,A-31495231,none,,Moderate,2016-09-13 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8403,Information disclosure vulnerability in kernel components,A-31495348,none,,Moderate,2016-09-13 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8404,Information disclosure vulnerability in kernel components,A-31496950,none,,Moderate,2016-09-13 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8405,Information disclosure vulnerability in kernel components,A-31651010,none,,Moderate,2016-09-21 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8406,Information disclosure vulnerability in kernel components,A-31796940,none,,Moderate,2016-09-27 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8407,Information disclosure vulnerability in kernel components,A-31802656,none,,Moderate,2016-09-28 00:00:00,ID,,Information disclosure vulnerability,kernel components,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8408,Information disclosure vulnerability in NVIDIA video driver,"A-31496571, N-CVE-2016-8408","none,none",,Moderate,2016-09-13 00:00:00,ID,,Information disclosure vulnerability,NVIDIA video driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8409,Information disclosure vulnerability in NVIDIA video driver,"A-31495687, N-CVE-2016-8409","none,none",,Moderate,2016-09-13 00:00:00,ID,,Information disclosure vulnerability,NVIDIA video driver,2016,12,5,2017-01-12T15:59Z
2016-12-01,2016-12-05,CVE-2016-8410,Information disclosure vulnerability in Qualcomm sound driver,"A-31498403,QC-CR#987010","none, https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?h=e2bbf665187a1f0a1248e4a088823cb182153ba9",,Moderate,Google internal,ID,,Information disclosure vulnerability,Qualcomm sound driver,2016,12,5,2017-01-12T15:59Z
2017-01-01,2017-01-01,CVE-2016-5180,Remote code execution vulnerability in c-ares,A-32205736,https://android.googlesource.com/platform/external/c-ares/+/f4baf84f285bfbdebb89b2fef8a955720f00c677",7,High,2016-09-29 00:00:00,RCE,,Remote code execution vulnerability,c-ares,2017,1,1,2016-10-03T15:59Z
2017-01-01,2017-01-01,CVE-2017-0382,Remote code execution vulnerability in Framesequence,A-32338390,https://android.googlesource.com/platform/frameworks/ex/+/7f0e3dab5a892228d8dead7f0221cc9ae82474f7","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-21 00:00:00,RCE,,Remote code execution vulnerability,Framesequence,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0383,Elevation of privilege vulnerability in Framework APIs,A-31677614,https://android.googlesource.com/platform/frameworks/native/+/e5753ba087fa59ee02f6026cc13b1ceb42a1f266","7.0, 7.1.1",High,2016-09-21 00:00:00,EoP,,Elevation of privilege vulnerability,Framework APIs,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0384,Elevation of privilege vulnerability in Audioserver,A-32095626,https://android.googlesource.com/platform/frameworks/av/+/321ea5257e37c8edb26e66fe4ee78cca4cd915fe","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-11 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0385,Elevation of privilege vulnerability in Audioserver,A-32585400,https://android.googlesource.com/platform/hardware/qcom/audio/+/ed79f2cc961d7d35fdbbafdd235c1436bcd74358","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-11 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0386,Elevation of privilege vulnerability in libnl,A-32255299,https://android.googlesource.com/platform/external/libnl/+/f0b40192efd1af977564ed6335d42a8bbdaf650a","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-18 00:00:00,EoP,,Elevation of privilege vulnerability,libnl,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0387,Elevation of privilege vulnerability in Mediaserver,A-32660278,https://android.googlesource.com/platform/frameworks/native/+/675e212c8c6653825cc3352c603caf2e40b00f9f","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-04 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0388,Information disclosure vulnerability in External Storage Provider,A-32523490,https://android.googlesource.com/platform/frameworks/base/+/47e62b7fe6807a274ba760a8fecfd624fe792da9","6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,ID,,Information disclosure vulnerability,External Storage Provider,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0389,Denial of service vulnerability in core networking,A-31850211,"https://android.googlesource.com/platform/frameworks/base/+/a014b6be3c7c6fb5cf9352a05baf84fca7a133c7",https://android.googlesource.com/platform/frameworks/base/+/47e81a2596b00ee7aaca58716ff164a1708b0b29"","6.0, 6.0.1, 7.0, 7.1.1",High,2016-07-20 00:00:00,DoS,,Denial of service vulnerability,core networking,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0390,Denial of service vulnerability in Mediaserver,A-31647370,https://android.googlesource.com/platform/external/tremolo/+/5dc99237d49e73c27d3eca54f6ccd97d13f94de0","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-09-19 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0391,Denial of service vulnerability in Mediaserver,A-32322258,https://android.googlesource.com/platform/external/libhevc/+/a33f6725d7e9f92330f995ce2dcf4faa33f6433f","6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-20 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0392,Denial of service vulnerability in Mediaserver,A-32577290,https://android.googlesource.com/platform/frameworks/av/+/453b351ac5bd2b6619925dc966da60adf6b3126c","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-29 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0393,Denial of service vulnerability in Mediaserver,A-30436808,https://android.googlesource.com/platform/external/libvpx/+/6886e8e0a9db2dbad723dc37a548233e004b33bc","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0394,Denial of service vulnerability in Telephony,A-31752213,https://android.googlesource.com/platform/packages/services/Telephony/+/1cdced590675ce526c91c6f8983ceabb8038f58d","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-09-23 00:00:00,DoS,,Denial of service vulnerability,Telephony,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0395,Elevation of privilege vulnerability in Contacts,A-32219099,https://android.googlesource.com/platform/packages/apps/ContactsCommon/+/d47661ad82d402c1e0c90eb83970687d784add1b","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-10-15 00:00:00,EoP,,Elevation of privilege vulnerability,Contacts,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0381,Information disclosure vulnerability in Mediaserver,A-31607432,https://android.googlesource.com/platform/external/libopus/+/0d052d64480a30e83fcdda80f4774624e044beb7","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-09-18 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0396,Information disclosure vulnerability in Mediaserver,A-31781965,https://android.googlesource.com/platform/frameworks/av/+/557bd7bfe6c4895faee09e46fc9b5304a956c8b7","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-09-27 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0397,Information disclosure vulnerability in Mediaserver,A-32377688,https://android.googlesource.com/platform/frameworks/av/+/7a3246b870ddd11861eda2ab458b11d723c7f62c","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-10-21 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0398,Information disclosure vulnerability in Audioserver,"A-32438594,A-32624850,A-32635664","https://android.googlesource.com/platform/frameworks/av/+/26965db50a617f69bdefca0d7533796c80374f2c,https://android.googlesource.com/platform/frameworks/av/+/26965db50a617f69bdefca0d7533796c80374f2c,https://android.googlesource.com/platform/frameworks/av/+/26965db50a617f69bdefca0d7533796c80374f2c","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1, 4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1;4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1","Moderate,Moderate,Moderate","Oct 25, 2016;Oct 25, 2016;Oct 25, 2016",ID,,Information disclosure vulnerability,Audioserver,2017,1,1,2017-01-13T16:59Z
2017-01-01,2017-01-01,CVE-2017-0399,Information disclosure vulnerability in Qualcomm audio post processor ,A-32247948,"https://android.googlesource.com/platform/frameworks/av/+/c66c43ad571ed2590dcd55a762c73c90d9744bac",https://android.googlesource.com/platform/hardware/qcom/audio/+/d72ea85c78a1a68bf99fd5804ad9784b4102fe57"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-10-18 00:00:00,ID,,Information disclosure vulnerability,Qualcomm audio post processor ,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0400,Information disclosure vulnerability in Qualcomm audio post processor ,"A-32584034,A-32438598","https://android.googlesource.com/platform/frameworks/av/+/c66c43ad571ed2590dcd55a762c73c90d9744bac",https://android.googlesource.com/platform/hardware/qcom/audio/+/d72ea85c78a1a68bf99fd5804ad9784b4102fe57",https://android.googlesource.com/platform/frameworks/av/+/c66c43ad571ed2590dcd55a762c73c90d9744bac",https://android.googlesource.com/platform/hardware/qcom/audio/+/d72ea85c78a1a68bf99fd5804ad9784b4102fe57"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1;5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1","Moderate,Moderate","Oct 25, 2016;Oct 25, 2016",ID,,Information disclosure vulnerability,Qualcomm audio post processor ,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0401,Information disclosure vulnerability in Qualcomm audio post processor ,"A-32448258,A-32588016","https://android.googlesource.com/platform/frameworks/av/+/321ea5257e37c8edb26e66fe4ee78cca4cd915fe",https://android.googlesource.com/platform/hardware/qcom/audio/+/ed79f2cc961d7d35fdbbafdd235c1436bcd74358"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1;5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1","Moderate,Moderate","Oct 26, 2016;Oct 26, 2016",ID,,Information disclosure vulnerability,Qualcomm audio post processor ,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-01,CVE-2017-0402,Information disclosure vulnerability in Qualcomm audio post processor ,"A-32436341,A-32588352","https://android.googlesource.com/platform/frameworks/av/+/c66c43ad571ed2590dcd55a762c73c90d9744bac",https://android.googlesource.com/platform/frameworks/av/+/c66c43ad571ed2590dcd55a762c73c90d9744bac"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1;5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1","Moderate,Moderate","Oct 25, 2016;Oct 25, 2016",ID,,Information disclosure vulnerability,Qualcomm audio post processor ,2017,1,1,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2015-3288,Elevation of privilege vulnerability in kernel memory subsystem,A-32460277,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=6b7339f4c31ad69c8e9c0b2859276e22cf72176d",,Critical,2015-07-09 00:00:00,EoP,,Elevation of privilege vulnerability,kernel memory subsystem,2017,1,5,2016-10-16T21:59Z
2017-01-01,2017-01-05,CVE-2016-8422,Elevation of privilege vulnerability in Qualcomm bootloader,"A-31471220,QC-CR979426","none,https://source.codeaurora.org/quic/la//kernel/lk/commit/?id=d6639f0a77f8ebfc1e05f3acdf12d5588e7e6213"",,Critical,2016-07-22 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm bootloader,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8423,Elevation of privilege vulnerability in Qualcomm bootloader,"A-31399736,QC-CR1000546","none,https://source.codeaurora.org/quic/la//kernel/lk/commit/?id=98db6cc526fa1677da05d54785937540cdc84867"",,Critical,2016-08-24 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm bootloader,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2015-5706,Elevation of privilege vulnerability in kernel file system,A-32289301,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=f15133df088ecadd141ea1907f2c96df67c729f0",,Critical,2016-08-01 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2017,1,5,2015-08-31T10:59Z
2017-01-01,2017-01-05,CVE-2016-8424,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31606947, N-CVE-2016-8424","none,none",,Critical,2016-09-17 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8425,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31797770, N-CVE-2016-8425","none,none",,Critical,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8426,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31799206, N-CVE-2016-8426","none,none",,Critical,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8482,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31799863, N-CVE-2016-8482","none,none",,Critical,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2018-04-05T18:29Z
2017-01-01,2017-01-05,CVE-2016-8427,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31799885, N-CVE-2016-8427","none,none",,Critical,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8428,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31993456, N-CVE-2016-8428","none,none",,Critical,2016-10-06 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8429,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-32160775, N-CVE-2016-8429","none,none",,Critical,2016-10-13 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8430,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-32225180, N-CVE-2016-8430","none,none",,Critical,2016-10-17 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8431,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-32402179, N-CVE-2016-8431","none,none",,Critical,2016-10-25 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8432,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-32447738, N-CVE-2016-8432","none,none",,Critical,2016-10-26 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8433,Elevation of privilege vulnerability in MediaTek driver,"A-31750190,MT-ALPS02974192","none,https://developers.google.com/android/nexus/drivers"",,Critical,2016-09-24 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8434,Elevation of privilege vulnerability in Qualcomm GPU driver,"A-32125137,QC-CR1081855","none,https://source.codeaurora.org/quic/la/kernel/msm-3.14/commit/?id=3e3866a5fced40ccf9ca442675cf915961efe4d9"",,Critical,2016-10-12 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8435,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-32700935, N-CVE-2016-8435","none,none",,Critical,2016-11-07 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8436,Elevation of privilege vulnerability in Qualcomm video driver,"A-32450261,QC-CR1007860","none,https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=228e8d17b9f5d22cf9896ab8eff88dc6737c2ced"",,Critical,2016-10-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm video driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8412,Elevation of privilege vulnerability in Qualcomm camera,"A-31225246,QC-CR1071891","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=42a98c44669d92dafcf4d6336bdccaeb2db12786"",,High,2016-08-26 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8444,Elevation of privilege vulnerability in Qualcomm camera,"A-31243641,QC-CR1074310","none,https://developers.google.com/android/nexus/drivers"",,High,2016-08-26 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8445,Elevation of privilege vulnerability in MediaTek components,"A-31747590,MT-ALPS02968983","none,none",,High,2016-09-25 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8446,Elevation of privilege vulnerability in MediaTek components,"A-31747749,MT-ALPS02968909","none,none",,High,2016-09-25 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8447,Elevation of privilege vulnerability in MediaTek components,"A-31749463,MT-ALPS02968886","none,none",,High,2016-09-25 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8448,Elevation of privilege vulnerability in MediaTek components,"A-31791148,MT-ALPS02982181","none,none",,High,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8415,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-31750554,QC-CR1079596","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=188e12a816508b11771f362c852782ec9a6f9394"",,High,2016-09-26 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8449,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31798848, N-CVE-2016-8449 ","none,none",,High,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8450,Elevation of privilege vulnerability in Qualcomm sound driver,"A-32450563,QC-CR880388","none,https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=e909d159ad1998ada853ed35be27c7b6ba241bdb"",,High,2016-10-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8451,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-32178033,none,,High,2016-10-13 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-7042,Elevation of privilege vulnerability in kernel security subsystem,A-32178986,http://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=03dab869b7b239c4e013ec82aea22e181e441cfc",,High,2016-10-14 00:00:00,EoP,,Elevation of privilege vulnerability,kernel security subsystem,2017,1,5,2016-10-16T21:59Z
2017-01-01,2017-01-05,CVE-2017-0403,Elevation of privilege vulnerability in kernel performance subsystem,A-32402548,none,,High,2016-10-25 00:00:00,EoP,,Elevation of privilege vulnerability,kernel performance subsystem,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2017-0404,Elevation of privilege vulnerability in kernel sound subsystem,A-32510733,https://developers.google.com/android/nexus/drivers",,High,2016-10-27 00:00:00,EoP,,Elevation of privilege vulnerability,kernel sound subsystem,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8452,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32506396,QC-CR1050323","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=39fa8e972fa1b10dc68a066f4f9432753d8a2526"",,High,2016-10-28 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-5345,Elevation of privilege vulnerability in Qualcomm radio driver,"A-32639452,QC-CR1079713","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=67118716a2933f6f30a25ea7e3946569a8b191c6"",,High,2016-11-03 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm radio driver,2017,1,5,2018-01-23T01:29Z
2017-01-01,2017-01-05,CVE-2016-9754,Elevation of privilege vulnerability in kernel profiling subsystem,A-32659848,http://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=59643d1535eb220668692a5359de22545af579f6",,High,2016-11-04 00:00:00,EoP,,Elevation of privilege vulnerability,kernel profiling subsystem,2017,1,5,2017-01-05T11:59Z
2017-01-01,2017-01-05,CVE-2016-8453,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-24739315,B-RB73392","none,none",,High,Google internal,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8454,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-32174590,B-RB107142","none,none",,High,2016-10-14 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8455,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-32219121,B-RB106311","none,none",,High,2016-10-15 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8456,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-32219255,B-RB105580","none,none",,High,2016-10-15 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8457,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-32219453,B-RB106116","none,https://developers.google.com/android/nexus/drivers"",,High,2016-10-15 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8458,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-31968442,none,,High,Google internal,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8460,Information disclosure vulnerability in NVIDIA video driver,"A-31668540, N-CVE-2016-8460","none,none",,High,2016-09-21 00:00:00,ID,,Information disclosure vulnerability,NVIDIA video driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8461,Information disclosure vulnerability in bootloader,A-32369621,none,,High,2016-10-21 00:00:00,ID,,Information disclosure vulnerability,bootloader,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8462,Information disclosure vulnerability in bootloader,A-32510383,none,,High,2016-10-27 00:00:00,ID,,Information disclosure vulnerability,bootloader,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8463,Denial of service vulnerability in Qualcomm FUSE file system,"A-30786860,QC-CR586855","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=cd0fa86de6ca1d40c0a93d86d1c0f7846e8a9a10"",,High,2014-01-03 00:00:00,DoS,,Denial of service vulnerability,Qualcomm FUSE file system,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8467,Denial of service vulnerability in bootloader,A-30308784,none,,High,2016-06-29 00:00:00,DoS,,Denial of service vulnerability,bootloader,2017,1,5,2017-01-13T16:59Z
2017-01-01,2017-01-05,CVE-2016-8464,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-29000183,B-RB106314","none,none",,Moderate,2016-05-26 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8466,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-31822524,B-RB105268","none,none",,Moderate,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8465,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-32474971,B-RB106053","none,https://developers.google.com/android/nexus/drivers"",,Moderate,2016-10-27 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8468,Elevation of privilege vulnerability in Binder,A-32394425,none,,Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Binder,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8469,Information disclosure vulnerability in NVIDIA camera driver,"A-31351206, N-CVE-2016-8469","none,none",,Moderate,2016-09-07 00:00:00,ID,,Information disclosure vulnerability,NVIDIA camera driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8470,Information disclosure vulnerability in MediaTek driver,"A-31528889,MT-ALPS02961395","none,none",,Moderate,2016-09-15 00:00:00,ID,,Information disclosure vulnerability,MediaTek driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8471,Information disclosure vulnerability in MediaTekdriver,"A-31528890,MT-ALPS02961380","none,none",,Moderate,2016-09-15 00:00:00,ID,,Information disclosure vulnerability,MediaTekdriver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8472,Information disclosure vulnerability in MediaTekdriver,"A-31531758,MT-ALPS02961384","none,none",,Moderate,2016-09-15 00:00:00,ID,,Information disclosure vulnerability,MediaTekdriver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8473,Information disclosure vulnerability in STMicroelectronics driver,A-31795790,none,,Moderate,2016-09-28 00:00:00,ID,,Information disclosure vulnerability,STMicroelectronics driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8474,Information disclosure vulnerability in STMicroelectronics driver,A-31799972,none,,Moderate,2016-09-28 00:00:00,ID,,Information disclosure vulnerability,STMicroelectronics driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2016-8475,Information disclosure vulnerability in HTC input driver,A-32591129,none,,Moderate,2016-10-30 00:00:00,ID,,Information disclosure vulnerability,HTC input driver,2017,1,5,2017-01-12T20:59Z
2017-01-01,2017-01-05,CVE-2014-9420,Denial of service vulnerability in kernel file system,A-32477499,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=f54e18f1b831c92f6512d2eedb224cd63d607d3d,,Moderate,2014-12-25 00:00:00,DoS,,Denial of service vulnerability,kernel file system,2017,1,5,2014-12-26T00:59Z
2017-02-01,2017-02-01,CVE-2017-0405,Remote code execution vulnerability in Surfaceflinger,A-31960359,https://android.googlesource.com/platform/frameworks/native/+/16110b86db164e8d2b6864fed58f0385fe7d0979","7.0, 7.1.1",Critical,2016-10-04 00:00:00,RCE,,Remote code execution vulnerability,Surfaceflinger,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0406,Remote code execution vulnerability in Mediaserver,A-32915871,https://android.googlesource.com/platform/external/libhevc/+/fed702734d86801cc86b4865a57e2f2028c4b575","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-11-14 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0407,Remote code execution vulnerability in Mediaserver,A-32873375,https://android.googlesource.com/platform/external/libhevc/+/7546c106004910a4583b2d7d03c6498ecf383da7","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-11-12 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0408,Remote code execution vulnerability in libgdx,A-32769670,https://android.googlesource.com/platform/external/libgdx/+/e6da772e70c9754966aabf4ddac73bb99eb1742b",7.1.1,High,2016-11-09 00:00:00,RCE,,Remote code execution vulnerability,libgdx,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0409,Remote code execution vulnerability in libstagefright,A-31999646,https://android.googlesource.com/platform/external/libavc/+/72886b6964f6539908c8e127cd13c3091d2e5a8b","6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,RCE,,Remote code execution vulnerability,libstagefright,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2016-5552,Elevation of privilege vulnerability in Java.Net,A-31858037,https://android.googlesource.com/platform/libcore/+/4b3f2c6c5b84f80fae8eeeb46727811e055715ea","7.0, 7.1.1",High,2016-09-30 00:00:00,EoP,,Elevation of privilege vulnerability,Java.Net,2017,2,1,2017-01-27T22:59Z
2017-02-01,2017-02-01,CVE-2017-0410,Elevation of privilege vulnerability in Framework APIs,A-31929765,https://android.googlesource.com/platform/frameworks/native/+/b4d6b292bce7d82c93fd454078dedf5a1302b9fa","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-02 00:00:00,EoP,,Elevation of privilege vulnerability,Framework APIs,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0411,Elevation of privilege vulnerability in Framework APIs,A-33042690,https://android.googlesource.com/platform/frameworks/base/+/203725e4d58e16334d84998c1483c374f541ed9f","7.0, 7.1.1",High,2016-11-21 00:00:00,EoP,,Elevation of privilege vulnerability,Framework APIs,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0412,Elevation of privilege vulnerability in Framework APIs,A-33039926,"https://android.googlesource.com/platform/frameworks/base/+/203725e4d58e16334d84998c1483c374f541ed9f",https://android.googlesource.com/platform/frameworks/base/+/31a06019d13d7b00ca35fc8512191c643acb8e84"","7.0, 7.1.1",High,2016-11-21 00:00:00,EoP,,Elevation of privilege vulnerability,Framework APIs,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0415,Elevation of privilege vulnerability in Mediaserver,A-32706020,https://android.googlesource.com/platform/frameworks/native/+/2e16d5fac149dab3c3e8f1b2ca89f45cf55a7b34","6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-04 00:00:00,EoP,,Elevation of privilege vulnerability,Mediaserver,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0416,Elevation of privilege vulnerability in Audioserver,A-32886609,https://android.googlesource.com/platform/frameworks/av/+/b0bcddb44d992e74140a3f5eedc7177977ea8e34","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,EoP,,Elevation of privilege vulnerability,Audioserver,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0417,Elevation of privilege vulnerability in Audioserver,A-32705438,https://android.googlesource.com/platform/frameworks/av/+/b0bcddb44d992e74140a3f5eedc7177977ea8e34","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-07 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0418,Elevation of privilege vulnerability in Audioserver,A-32703959,https://android.googlesource.com/platform/frameworks/av/+/b0bcddb44d992e74140a3f5eedc7177977ea8e34","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-07 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0419,Elevation of privilege vulnerability in Audioserver,A-32220769,https://android.googlesource.com/platform/frameworks/av/+/a155de4d70e0b9ac8fc02b2bdcbb2e8e6cca46ff","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-15 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0420,Information disclosure vulnerability in AOSP Mail,A-32615212,https://android.googlesource.com/platform/packages/apps/UnifiedEmail/+/2073799a165e6aa15117f8ad76bb0c7618b13909","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-09-12 00:00:00,ID,,Information disclosure vulnerability,AOSP Mail,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0413,Information disclosure vulnerability in AOSP Messaging,A-32161610,https://android.googlesource.com/platform/packages/apps/Messaging/+/74059eb379ea07b9c7f46bf2112a60de8e4cfc8e","6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-13 00:00:00,ID,,Information disclosure vulnerability,AOSP Messaging,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0414,Information disclosure vulnerability in AOSP Messaging,A-32807795,https://android.googlesource.com/platform/packages/apps/Messaging/+/30ab77f42d20c33c0aa9e6ffd2b164d096db32dd","6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-10 00:00:00,ID,,Information disclosure vulnerability,AOSP Messaging,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0421,Information disclosure vulnerability in Framework APIs,A-32555637,https://android.googlesource.com/platform/frameworks/base/+/858064e946dc8dbf76bff9387e847e211703e336","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,ID,,Information disclosure vulnerability,Framework APIs,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0422,Denial of service vulnerability in Bionic DNS,A-32322088,https://android.googlesource.com/platform/bionic/+/dba3df609436d7697305735818f0a840a49f1a0d","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-20 00:00:00,DoS,,Denial of service vulnerability,Bionic DNS,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0423,Elevation of privilege vulnerability in Bluetooth,A-32612586,https://android.googlesource.com/platform/packages/apps/Bluetooth/+/4c1f39e1cf203cb9db7b85e75b5fc32ec7132083","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-11-02 00:00:00,EoP,,Elevation of privilege vulnerability,Bluetooth,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0424,Information disclosure vulnerability in AOSP Messaging,A-32322450,https://android.googlesource.com/platform/packages/apps/Messaging/+/e9b7e3a6b7a8886693d298401a20788816a5afdc","6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-10-20 00:00:00,ID,,Information disclosure vulnerability,AOSP Messaging,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0425,Information disclosure vulnerability in Audioserver,A-32720785,https://android.googlesource.com/platform/frameworks/av/+/a155de4d70e0b9ac8fc02b2bdcbb2e8e6cca46ff","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-11-07 00:00:00,ID,,Information disclosure vulnerability,Audioserver,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-01,CVE-2017-0426,Information disclosure vulnerability in Filesystem,A-32799236,https://android.googlesource.com/platform/system/sepolicy/+/ae46511bfa62b56938b3df824bb2ee737dceaa7a","7.0, 7.1.1",Moderate,Google internal,ID,,Information disclosure vulnerability,Filesystem,2017,2,1,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2016-8418,Remote code execution vulnerability in Qualcomm crypto driver,"A-32652894,QC-CR1077457","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=8f8066581a8e575a7d57d27f36c4db63f91ca48f"",,Critical,2016-10-10 00:00:00,RCE,,Remote code execution vulnerability,Qualcomm crypto driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0427,Elevation of privilege vulnerability in kernel file system,A-31495866,https://developers.google.com/android/nexus/drivers",,Critical,2016-09-13 00:00:00,EoP,,Elevation of privilege vulnerability,kernel file system,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0428,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-32401526, N-CVE-2017-0428","none,none",,Critical,2016-10-25 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0429,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-32636619, N-CVE-2017-0429","none,none",,Critical,2016-11-03 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2014-9914,Elevation of privilege vulnerability in kernel networking subsystem,A-32882659,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=9709674e68646cee5a24e3000b3558d25412203a",,Critical,2016-11-09 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking subsystem,2017,2,5,2017-02-07T07:59Z
2017-02-01,2017-02-05,CVE-2017-0430,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-32838767,B-RB107459","none,none",,Critical,Google internal,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0432,Elevation of privilege vulnerability in MediaTek driver,"A-28332719,M-ALPS02708925","none,none",,High,2016-04-21 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0433,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-31913571,none,,High,2016-09-08 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0434,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-33001936,https://developers.google.com/android/nexus/drivers",,High,2016-11-18 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2016-8480,Elevation of privilege vulnerability in Qualcomm Secure Execution Environment Communicator driver,"A-31804432,QC-CR1086186","https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=0ed0f061bcd71940ed65de2ba46e37e709e31471",https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=cd70f6025a7bbce89af7a7abf4c40a219fdea406"",,High,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Secure Execution Environment Communicator driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2016-8481,Elevation of privilege vulnerability in Qualcomm sound driver,"A-31906415,QC-CR1078000","none,none",,High,2016-10-01 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0435,Elevation of privilege vulnerability in Qualcomm sound driver,"A-31906657,QC-CR1078000","none,none",,High,2016-10-01 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0436,Elevation of privilege vulnerability in Qualcomm sound driver,"A-32624661,QC-CR1078000","none,none",,High,2016-11-02 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0437,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32402310,QC-CR1092497","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=1f0b036dc74ccb6e9f0a03a540efdb0876f5ca77"",,High,2016-10-25 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0438,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32402604,QC-CR1092497","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=1f0b036dc74ccb6e9f0a03a540efdb0876f5ca77"",,High,2016-10-25 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0439,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32450647,QC-CR1092059","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=81b6b5538d3227ed4b925fcceedb109abb2a4c61"",,High,2016-10-25 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2016-8419,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32454494,QC-CR1087209","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=9ba50d536227666a5b6abd51f2b122675d950488"",,High,2016-10-26 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2016-8420,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32451171,QC-CR1087807","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=c6597e015a7ce5ee71d3725fc55e64fc50923f4e"",,High,2016-10-26 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2016-8421,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32451104,QC-CR1087797","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=61a5cdb9adc96645583f528ac923e6e59f3abbcb"",,High,2016-10-26 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0440,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-33252788,QC-CR1095770","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=10f0051f7b3b9a7635b0762a8cf102f595f7a268"",,High,2016-11-11 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0441,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32872662,QC-CR1095009","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=da87131740351b833f17f05dfa859977bc1e7684"",,High,2016-11-11 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0442,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32871330,QC-CR1092497","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=1f0b036dc74ccb6e9f0a03a540efdb0876f5ca77"",,High,2016-11-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0443,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32877494,QC-CR1092497","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=1f0b036dc74ccb6e9f0a03a540efdb0876f5ca77"",,High,2016-11-13 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2016-8476,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32879283,QC-CR1091940","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=bfe8035bce6fec72ed1d064b94529fce8fb09799"",,High,2016-11-14 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0444,Elevation of privilege vulnerability in Realtek sound driver,A-32705232,none,,High,2016-11-07 00:00:00,EoP,,Elevation of privilege vulnerability,Realtek sound driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0445,Elevation of privilege vulnerability in HTC touchscreen driver,A-32769717,none,,High,2016-11-09 00:00:00,EoP,,Elevation of privilege vulnerability,HTC touchscreen driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0446,Elevation of privilege vulnerability in HTC touchscreen driver,A-32917445,none,,High,2016-11-15 00:00:00,EoP,,Elevation of privilege vulnerability,HTC touchscreen driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0447,Elevation of privilege vulnerability in HTC touchscreen driver,A-32919560,https://developers.google.com/android/nexus/drivers",,High,2016-11-15 00:00:00,EoP,,Elevation of privilege vulnerability,HTC touchscreen driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0448,Information disclosure vulnerability in NVIDIA video driver,"A-32721029, N-CVE-2017-0448","none,none",,High,2016-11-07 00:00:00,ID,,Information disclosure vulnerability,NVIDIA video driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0449,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-31707909,B-RB32094","none,https://developers.google.com/android/nexus/drivers"",,Moderate,2016-09-23 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0450,Elevation of privilege vulnerability in Audioserver,A-32917432,none,,Moderate,2016-11-15 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2016-10044,Elevation of privilege vulnerability in kernel file system,A-31711619,https://developers.google.com/android/nexus/drivers",,Moderate,Google internal,EoP,,Elevation of privilege vulnerability,kernel file system,2017,2,5,2017-02-07T07:59Z
2017-02-01,2017-02-05,CVE-2016-8414,Information disclosure vulnerability in Qualcomm Secure Execution Environment Communicator,"A-31704078,QC-CR1076407","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=320970d3da9b091e96746424c44649a91852a846"",,Moderate,2016-09-23 00:00:00,ID,,Information disclosure vulnerability,Qualcomm Secure Execution Environment Communicator,2017,2,5,2017-02-08T15:59Z
2017-02-01,2017-02-05,CVE-2017-0451,Information disclosure vulnerability in Qualcomm sound driver,"A-31796345,QC-CR#1073129",https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=59f55cd40b5f44941afc78b78e5bf81ad3dd723e,,Moderate,2016-09-27 00:00:00,ID,,Information disclosure vulnerability,Qualcomm sound driver,2017,2,5,2017-02-08T15:59Z
2017-03-01,2017-03-01,CVE-2016-2182,Remote code execution vulnerability in OpenSSL & BoringSSL,A-32096880,https://android.googlesource.com/platform/external/boringssl/+/54bf62a81586d99d0a951ca3342d569b59e69b80","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-08-05 00:00:00,RCE,,Remote code execution vulnerability,OpenSSL & BoringSSL,2017,3,1,2016-09-16T05:59Z
2017-03-01,2017-03-01,CVE-2017-0466,Remote code execution vulnerability in Mediaserver ,A-33139050,https://android.googlesource.com/platform/external/libavc/+/c4f152575bd6d8cc6db1f89806e2ba1fd1bb314f","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-11-25 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0467,Remote code execution vulnerability in Mediaserver ,A-33250932,"https://android.googlesource.com/platform/external/libavc/+/c4f152575bd6d8cc6db1f89806e2ba1fd1bb314f",https://android.googlesource.com/platform/external/libavc/+/fd9a12f9fdd9dd3e66c59dd7037e864b948085f7"","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-11-30 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0468,Remote code execution vulnerability in Mediaserver ,A-33351708,"https://android.googlesource.com/platform/external/libavc/+/0e8b1dff88e08b9d738d2360f05b96108e190995",https://android.googlesource.com/platform/external/libavc/+/fd9a12f9fdd9dd3e66c59dd7037e864b948085f7"","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-12-05 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0469,Remote code execution vulnerability in Mediaserver ,A-33450635,https://android.googlesource.com/platform/external/libavc/+/21851eaecc814be709cb0c20f732cb858cfe1440","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-12-08 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0470,Remote code execution vulnerability in Mediaserver ,A-33818500,https://android.googlesource.com/platform/external/libavc/+/6aac82003d665708b4e21e9b91693b642e2fa64f","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-12-21 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0471,Remote code execution vulnerability in Mediaserver ,A-33816782,https://android.googlesource.com/platform/external/libavc/+/4a61d15e7b0ab979ba7e80db8ddbde025c1ce6cc","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-12-21 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0472,Remote code execution vulnerability in Mediaserver ,A-33862021,https://android.googlesource.com/platform/external/libhevc/+/dfa7251ff270ae7e12a019e6735542e36b2a47e0","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-12-23 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0473,Remote code execution vulnerability in Mediaserver ,A-33982658,https://android.googlesource.com/platform/external/libavc/+/0a4463e2beddb8290e05ad552e48b17686f854ce","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-12-30 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0474,Remote code execution vulnerability in Mediaserver ,A-32589224,https://android.googlesource.com/platform/external/libvpx/+/6f5927de29337fa532c64d0ef8c7cb68f7c89889","7.0, 7.1.1",Critical,Google internal,RCE,,Remote code execution vulnerability,Mediaserver ,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0475,Elevation of privilege vulnerability in recovery verifier,A-31914369,https://android.googlesource.com/platform/bootable/recovery/+/2c6c23f651abb3d215134dfba463eb72a5e9f8eb","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-10-02 00:00:00,EoP,,Elevation of privilege vulnerability,recovery verifier,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0476,Remote code execution vulnerability in AOSP Messaging,A-33388925,https://android.googlesource.com/platform/packages/apps/Messaging/+/8ba22b48ebff50311d7eaa8d512f9d507f0bdd0d","6.0, 6.0.1, 7.0, 7.1.1",High,2016-12-06 00:00:00,RCE,,Remote code execution vulnerability,AOSP Messaging,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0477,Remote code execution vulnerability in libgdx,A-33621647,https://android.googlesource.com/platform/external/libgdx/+/fba04a52f43315cdb7dd38766822af0324eab7c5",7.1.1,High,2016-12-14 00:00:00,RCE,,Remote code execution vulnerability,libgdx,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0478,Remote code execution vulnerability in Framesequence library,A-33718716,https://android.googlesource.com/platform/frameworks/ex/+/7c824f17b3eea976ca58be7ea097cb807126f73b","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-12-16 00:00:00,RCE,,Remote code execution vulnerability,Framesequence library,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0481,Elevation of privilege vulnerability in NFC,A-33434992,https://android.googlesource.com/platform/external/libnfc-nci/+/c67cc6ad2addddcb7185a33b08d27290ce54e350","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-06 00:00:00,EoP,,Elevation of privilege vulnerability,NFC,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0479,Elevation of privilege vulnerability in Audioserver,A-32707507,https://android.googlesource.com/platform/frameworks/av/+/22e26d8ee73488c58ba3e7928e5da155151abfd0","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-07 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0480,Elevation of privilege vulnerability in Audioserver,A-32705429,"https://android.googlesource.com/platform/frameworks/av/+/22e26d8ee73488c58ba3e7928e5da155151abfd0",https://android.googlesource.com/platform/frameworks/av/+/8415635765380be496da9b4578d8f134a527d86b"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-07 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0482,Denial of service vulnerability in Mediaserver,A-33090864,"https://android.googlesource.com/platform/external/libavc/+/ec9ab83ac437d31f484a86643e2cc66db8efae4c",https://android.googlesource.com/platform/external/libavc/+/0e8b1dff88e08b9d738d2360f05b96108e190995"","6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-22 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0483,Denial of service vulnerability in Mediaserver,A-33137046,"https://android.googlesource.com/platform/frameworks/av/+/bc62c086e9ba7530723dc8874b83159f4d77d976",https://android.googlesource.com/platform/frameworks/av/+/5cabe32a59f9be1e913b6a07a23d4cfa55e3fb2f"","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-24 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0484,Denial of service vulnerability in Mediaserver,A-33298089,"https://android.googlesource.com/platform/external/libavc/+/fd9a12f9fdd9dd3e66c59dd7037e864b948085f7",https://android.googlesource.com/platform/external/libavc/+/a467b1fb2956fdcee5636ab63573a4bca8150dbe"","6.0, 6.0.1, 7.0, 7.1.1",High,2016-12-01 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0485,Denial of service vulnerability in Mediaserver,A-33387820,https://android.googlesource.com/platform/external/libavc/+/3695b6bdaa183bb2852da06b63ebd5b9c2cace36","6.0, 6.0.1, 7.0, 7.1.1",High,2016-12-06 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0486,Denial of service vulnerability in Mediaserver,A-33621215,https://android.googlesource.com/platform/external/libavc/+/19814b7ad4ea6f0cc4cab34e50ebab2e180fc269","6.0, 6.0.1, 7.0, 7.1.1",High,2016-12-14 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0487,Denial of service vulnerability in Mediaserver,A-33751193,https://android.googlesource.com/platform/external/libavc/+/aa78b96e842fc1fb70a18acff22be35c7a715b23","6.0, 6.0.1, 7.0, 7.1.1",High,2016-12-19 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0488,Denial of service vulnerability in Mediaserver,A-34097213,https://android.googlesource.com/platform/external/libavc/+/0340381cd8c220311fd4fe2e8b23e1534657e399","6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0489,Elevation of privilege vulnerability in Location Manager,A-33091107,https://android.googlesource.com/platform/frameworks/base/+/d22261fef84481651e12995062105239d551cbc6","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-11-20 00:00:00,EoP,,Elevation of privilege vulnerability,Location Manager,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0490,Elevation of privilege vulnerability in Wi-Fi,A-33178389,https://android.googlesource.com/platform/packages/apps/CertInstaller/+/1166ca8adba9b49c9185dad11b28b02e72124d95","6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-11-25 00:00:00,EoP,,Elevation of privilege vulnerability,Wi-Fi,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0491,Elevation of privilege vulnerability in Package Manager,A-32553261,https://android.googlesource.com/platform/packages/apps/PackageInstaller/+/5c49b6bf732c88481466dea341917b8604ce53fa","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,Google internal,EoP,,Elevation of privilege vulnerability,Package Manager,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0492,Elevation of privilege vulnerability in System UI,A-30150688,https://android.googlesource.com/platform/frameworks/base/+/f4bed684c939b0f8809ef404b8609fe4ef849263",7.1.1,Moderate,Google internal,EoP,,Elevation of privilege vulnerability,System UI,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0494,Information disclosure vulnerability in AOSP Messaging,A-32764144,https://android.googlesource.com/platform/packages/apps/Messaging/+/3f9821128abd66c4cd2f040d8243efb334bfad2d","6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-11-09 00:00:00,ID,,Information disclosure vulnerability,AOSP Messaging,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0495,Information disclosure vulnerability in Mediaserver,A-33552073,https://android.googlesource.com/platform/external/libavc/+/85c0ec4106659a11c220cd1210f8d76c33d9e2ae","6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-12-11 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0496,Denial of service vulnerability in Setup Wizard,A-31554152,none,"5.0.2, 5.1.1, 6.0, 6.0.1",Moderate,2016-09-14 00:00:00,DoS,,Denial of service vulnerability,Setup Wizard,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0497,Denial of service vulnerability in Mediaserver,A-33300701,https://android.googlesource.com/platform/external/skia/+/8888cbf8e74671d44e9ff92ec3847cd647b8cdfb","7.0, 7.1.1",Moderate,2016-12-02 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0498,Denial of service vulnerability in Setup Wizard,A-30352311,"https://android.googlesource.com/platform/frameworks/base/+/1c4d535d0806dbeb6d2fa5cea0373cbd9ab6d33b",https://android.googlesource.com/platform/frameworks/base/+/5f621b5b1549e8379aee05807652d5111382ccc6"","5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,Google internal,DoS,,Denial of service vulnerability,Setup Wizard,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-01,CVE-2017-0499,Denial of service vulnerability in Audioserver,A-32095713,https://android.googlesource.com/platform/frameworks/av/+/22e26d8ee73488c58ba3e7928e5da155151abfd0","5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Low,2016-10-11 00:00:00,DoS,,Denial of service vulnerability,Audioserver,2017,3,1,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0500,Elevation of privilege vulnerability in MediaTek components,"A-28429685,M-ALPS02710006","none,none",,Critical,2016-04-27 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0501,Elevation of privilege vulnerability in MediaTek components,"A-28430015,M-ALPS02708983","none,none",,Critical,2016-04-27 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0502,Elevation of privilege vulnerability in MediaTek components,"A-28430164,M-ALPS02710027","none,none",,Critical,2016-04-27 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0503,Elevation of privilege vulnerability in MediaTek components,"A-28449045,M-ALPS02710075","none,none",,Critical,2016-04-28 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0504,Elevation of privilege vulnerability in MediaTek components,"A-30074628,M-ALPS02829371","none,none",,Critical,2016-07-09 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0505,Elevation of privilege vulnerability in MediaTek components,"A-31822282,M-ALPS02992041","none,none",,Critical,2016-09-28 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0506,Elevation of privilege vulnerability in MediaTek components,"A-32276718,M-ALPS03006904","none,https://developers.google.com/android/nexus/drivers"",,Critical,2016-10-18 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek components,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0337,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-31992762, N-CVE-2017-0337","none,none",,Critical,2016-10-06 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0338,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-33057977, N-CVE-2017-0338","none,none",,Critical,2016-11-21 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0333,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-33899363, N-CVE-2017-0333","none,none",,Critical,2016-12-25 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0306,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-34132950, N-CVE-2017-0306","none,none",,Critical,2017-01-06 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0335,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-33043375, N-CVE-2017-0335 ","none,none",,Critical,Google internal,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0507,Elevation of privilege vulnerability in kernel ION subsystem,A-31992382,none,,Critical,2016-10-06 00:00:00,EoP,,Elevation of privilege vulnerability,kernel ION subsystem,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0508,Elevation of privilege vulnerability in kernel ION subsystem,A-33940449,https://developers.google.com/android/nexus/drivers",,Critical,2016-12-28 00:00:00,EoP,,Elevation of privilege vulnerability,kernel ION subsystem,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0509,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-32124445,B-RB110688","none,none",,Critical,2016-10-12 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0510,Elevation of privilege vulnerability in kernel FIQ debugger,A-32402555,https://developers.google.com/android/nexus/drivers",,Critical,2016-10-25 00:00:00,EoP,,Elevation of privilege vulnerability,kernel FIQ debugger,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-8479,Elevation of privilege vulnerability in Qualcomm GPU driver,"A-31824853,QC-CR1093687","none,none",,Critical,2016-09-29 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-9806,Elevation of privilege vulnerability in kernel networking subsystem,A-33393474,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=92964c79b357efd980812c4de5c1fd2ec8bb5520",,Critical,2016-12-04 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking subsystem,2017,3,5,2016-12-28T07:59Z
2017-03-01,2017-03-05,CVE-2016-10200,Elevation of privilege vulnerability in kernel networking subsystem,A-33753815,https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=32c231164b762dddefa13af5a0101032c70b50ef",,Critical,2016-12-19 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking subsystem,2017,3,5,2017-03-07T21:59Z
2017-03-01,2017-03-05,CVE-2016-8655,Elevation of privilege vulnerability in kernel networking subsystem,A-33358926,https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=84ac7260236a49c79eede91617700174c2c19b0c",,High,2016-10-12 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking subsystem,2017,3,5,2016-12-08T08:59Z
2017-03-01,2017-03-05,CVE-2016-9793,Elevation of privilege vulnerability in kernel networking subsystem,A-33363517,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=b98b0bc8c431e3ceb4b26b0dfc8db509518fb290",,High,2016-12-02 00:00:00,EoP,,Elevation of privilege vulnerability,kernel networking subsystem,2017,3,5,2016-12-28T07:59Z
2017-03-01,2017-03-05,CVE-2017-0516,Elevation of privilege vulnerability in Qualcomm input hardware driver,"A-32341680,QC-CR1096301","none,none",,High,2016-10-21 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm input hardware driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0517,Elevation of privilege vulnerability in MediaTek Hardware Sensor Driver,"A-32372051,M-ALPS02973195","none,https://developers.google.com/android/nexus/drivers"",,High,2016-10-22 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek Hardware Sensor Driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0457,Elevation of privilege vulnerability in Qualcomm ADSPRPC driver,"A-31695439,QC-CR1086123,QC-CR1100695","none,none,none",,High,2016-09-22 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm ADSPRPC driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0518,Elevation of privilege vulnerability in Qualcomm fingerprint sensor driver,"A-32370896,QC-CR1086530","none,none",,High,2016-10-24 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm fingerprint sensor driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0519,Elevation of privilege vulnerability in Qualcomm fingerprint sensor driver,"A-32372915,QC-CR1086530","none,https://developers.google.com/android/nexus/drivers"",,High,2016-10-24 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm fingerprint sensor driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0520,Elevation of privilege vulnerability in Qualcomm crypto engine driver,"A-31750232,QC-CR1082636","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=eb2aad752c43f57e88ab9b0c3c5ee7b976ee31dd"",,High,2016-09-24 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm crypto engine driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0458,Elevation of privilege vulnerability in Qualcomm camera driver,"A-32588962,QC-CR1089433","none,https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=eba46cb98431ba1d7a6bd859f26f6ad03f1bf4d4"",,High,2016-10-31 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0521,Elevation of privilege vulnerability in Qualcomm camera driver,"A-32919951,QC-CR1097709","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=dbe4f26f200db10deaf38676b96d8738afcc10c8"",,High,2016-11-15 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0522,Elevation of privilege vulnerability in MediaTek APK,"A-32916158,M-ALPS03032516","none,https://developers.google.com/android/nexus/drivers"",,High,2016-11-15 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek APK,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0464,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32940193,QC-CR1102593","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=051597a4fe19fd1292fb7ea2e627d12d1fd2934f"",,High,2016-11-15 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0453,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-33979145,QC-CR1105085","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=05af1f34723939f477cb7d25adb320d016d68513"",,High,2016-12-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0523,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32835279,QC-CR1096945","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=5bb646471da76d3d5cd02cf3da7a03ce6e3cb582"",,High,Google internal,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0524,Elevation of privilege vulnerability in Synaptics touchscreen driver,A-33002026,https://developers.google.com/android/nexus/drivers",,High,2016-11-18 00:00:00,EoP,,Elevation of privilege vulnerability,Synaptics touchscreen driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0456,Elevation of privilege vulnerability in Qualcomm IPA driver,"A-33106520,QC-CR1099598","none,none",,High,2016-11-23 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm IPA driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0525,Elevation of privilege vulnerability in Qualcomm IPA driver,"A-33139056,QC-CR1097714","none,none",,High,2016-11-25 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm IPA driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0526,Elevation of privilege vulnerability in HTC Sensor Hub Driver,A-33897738,none,,High,2016-12-25 00:00:00,EoP,,Elevation of privilege vulnerability,HTC Sensor Hub Driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0527,Elevation of privilege vulnerability in HTC Sensor Hub Driver,A-33899318,https://developers.google.com/android/nexus/drivers",,High,2016-12-25 00:00:00,EoP,,Elevation of privilege vulnerability,HTC Sensor Hub Driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0307,Elevation of privilege vulnerability in NVIDIA GPU driver,"A-33177895, N-CVE-2017-0307","none,none",,High,2016-11-28 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0463,Elevation of privilege vulnerability in Qualcomm networking driver,"A-33277611,QC-CR1101792","none,https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=955bd7e7ac097bdffbadafab90e5378038fefeb2"",,High,2016-11-30 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm networking driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0460,Elevation of privilege vulnerability in Qualcomm networking driver,"A-31252965,QC-CR1098801","none,none",,High,Google internal,EoP,,Elevation of privilege vulnerability,Qualcomm networking driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0528,Elevation of privilege vulnerability in kernel security subsystem,A-33351919,https://developers.google.com/android/nexus/drivers",,High,2016-12-04 00:00:00,EoP,,Elevation of privilege vulnerability,kernel security subsystem,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-5856,Elevation of privilege vulnerability in Qualcomm SPCom driver,"A-32610665,QC-CR1094078","none,https://source.codeaurora.org/quic/la/kernel/msm-4.4/commit/?id=0c0622914ba53cdcb6e79e85f64bfdf7762c0368"",,High,Google internal,EoP,,Elevation of privilege vulnerability,Qualcomm SPCom driver,2017,3,5,2017-04-12T22:59Z
2017-03-01,2017-03-05,CVE-2016-5857,Elevation of privilege vulnerability in Qualcomm SPCom driver,"A-34386529,QC-CR1094140","none,https://source.codeaurora.org/quic/la/kernel/msm-4.4/commit/?id=d9d2c405d46ca27b25ed55a8dbd02bd1e633e2d5"",,High,Google internal,EoP,,Elevation of privilege vulnerability,Qualcomm SPCom driver,2017,3,5,2017-03-20T16:59Z
2017-03-01,2017-03-05,CVE-2014-8709,Information disclosure vulnerability in kernel networking subsystem,A-34077221,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=338f977f4eb441e69bb9a46eaa0ac715c931a67f",,High,2014-11-09 00:00:00,ID,,Information disclosure vulnerability,kernel networking subsystem,2017,3,5,2014-11-10T11:55Z
2017-03-01,2017-03-05,CVE-2017-0529,Information disclosure vulnerability in MediaTek driver,"A-28449427,M-ALPS02710042","none,https://developers.google.com/android/nexus/drivers"",,High,2016-04-27 00:00:00,ID,,Information disclosure vulnerability,MediaTek driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0455,Information disclosure vulnerability in Qualcomm bootloader,"A-32370952,QC-CR1082755","none,https://source.codeaurora.org/quic/la/kernel/lk/commit/?id=2c00928b4884fdb0b1661bcc530d7e68c9561a2f"",,High,2016-10-21 00:00:00,ID,,Information disclosure vulnerability,Qualcomm bootloader,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-8483,Information disclosure vulnerability in Qualcomm power driver,"A-33745862,QC-CR1035099","none,https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=6997dcb7ade1315474855821e64782205cb0b53a"",,High,2016-12-19 00:00:00,ID,,Information disclosure vulnerability,Qualcomm power driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0334,Information disclosure vulnerability in NVIDIA GPU driver,"A-33245849, N-CVE-2017-0334","none,none",,High,2016-11-30 00:00:00,ID,,Information disclosure vulnerability,NVIDIA GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0336,Information disclosure vulnerability in NVIDIA GPU driver,"A-33042679, N-CVE-2017-0336 ","none,none",,High,Google internal,ID,,Information disclosure vulnerability,NVIDIA GPU driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-8650,Denial of service vulnerability in kernel cryptographic subsystem,A-33401771,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=f5527fffff3f002b0a6b376163613b82f69de073",,High,2016-10-12 00:00:00,DoS,,Denial of service vulnerability,kernel cryptographic subsystem,2017,3,5,2016-11-28T03:59Z
2017-03-01,2017-03-05,CVE-2016-8417,Elevation of privilege vulnerability in Qualcomm camera driver (device specific),"A-32342399,QC-CR1088824","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=01dcc0a7cc23f23a89adf72393d5a27c6d576cd0"",,Moderate,2016-10-21 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm camera driver (device specific),2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0461,Information disclosure vulnerability in Qualcomm Wi-Fi driver,"A-32073794,QC-CR1100132","none,https://source.codeaurora.org/quic/la/platform/vendor/qcom-opensource/wlan/qcacld-2.0/commit/?id=ce5d6f84420a2e6ca6aad6b866992970dd313a65"",,Moderate,2016-10-09 00:00:00,ID,,Information disclosure vulnerability,Qualcomm Wi-Fi driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0459,Information disclosure vulnerability in Qualcomm Wi-Fi driver,"A-32644895,QC-CR1091939","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?h=rel/msm-3.18&",,Moderate,2016-11-03 00:00:00,ID,,Information disclosure vulnerability,Qualcomm Wi-Fi driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0531,Information disclosure vulnerability in Qualcomm Wi-Fi driver,"A-32877245,QC-CR1087469","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=530f3a0fd837ed105eddaf99810bc13d97dc4302"",,Moderate,2016-11-13 00:00:00,ID,,Information disclosure vulnerability,Qualcomm Wi-Fi driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0532,Information disclosure vulnerability in MediaTek video codec driver,"A-32370398,M-ALPS03069985","none,none",,Moderate,2016-10-22 00:00:00,ID,,Information disclosure vulnerability,MediaTek video codec driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0533,Information disclosure vulnerability in Qualcomm video driver,"A-32509422,QC-CR1088206","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=e3af5e89426f1c8d4e703d415eff5435b925649f"",,Moderate,2016-10-27 00:00:00,ID,,Information disclosure vulnerability,Qualcomm video driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0534,Information disclosure vulnerability in Qualcomm video driver,"A-32508732,QC-CR1088206","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=e3af5e89426f1c8d4e703d415eff5435b925649f"",,Moderate,2016-10-28 00:00:00,ID,,Information disclosure vulnerability,Qualcomm video driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-8416,Information disclosure vulnerability in Qualcomm video driver,"A-32510746,QC-CR1088206","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=e3af5e89426f1c8d4e703d415eff5435b925649f"",,Moderate,2016-10-28 00:00:00,ID,,Information disclosure vulnerability,Qualcomm video driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-8478,Information disclosure vulnerability in Qualcomm video driver,"A-32511270,QC-CR1088206","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=e3af5e89426f1c8d4e703d415eff5435b925649f"",,Moderate,2016-10-28 00:00:00,ID,,Information disclosure vulnerability,Qualcomm video driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-8413,Information disclosure vulnerability in Qualcomm camera driver,"A-32709702,QC-CR518731","none,https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=bc77232707df371ff6bab9350ae39676535c0e9d"",,Moderate,2016-11-04 00:00:00,ID,,Information disclosure vulnerability,Qualcomm camera driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2016-8477,Information disclosure vulnerability in Qualcomm camera driver,"A-32720522,QC-CR1090007","https://source.codeaurora.org/quic/la/kernel/msm-3.10/commit/?id=33c9042e38506b04461fa99e304482bc20923508",https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=96145eb5f0631f0e105d47abebc8f940f7621eeb"",,Moderate,2016-11-07 00:00:00,ID,,Information disclosure vulnerability,Qualcomm camera driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0535,Information disclosure vulnerability in HTC sound codec driver,A-33547247,none,,Moderate,2016-12-11 00:00:00,ID,,Information disclosure vulnerability,HTC sound codec driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0536,Information disclosure vulnerability in Synaptics touchscreen driver,A-33555878,https://developers.google.com/android/nexus/drivers",,Moderate,2016-12-12 00:00:00,ID,,Information disclosure vulnerability,Synaptics touchscreen driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0537,Information disclosure vulnerability in kernel USB gadget driver,A-31614969,none,,Moderate,Google internal,ID,,Information disclosure vulnerability,kernel USB gadget driver,2017,3,5,2017-03-08T01:59Z
2017-03-01,2017-03-05,CVE-2017-0452,Information disclosure vulnerability in Qualcomm camera driver,"A-32873615,QC-CR#1093693",none,,Low,2016-11-10 00:00:00,ID,,Information disclosure vulnerability,Qualcomm camera driver,2017,3,5,2017-03-08T01:59Z
2017-04-01,2017-04-01,CVE-2017-0538,Remote code execution vulnerability in Mediaserver,A-33641588,https://android.googlesource.com/platform/external/libavc/+/494561291a503840f385fbcd11d9bc5f4dc502b8","6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-12-13 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0539,Remote code execution vulnerability in Mediaserver,A-33864300,https://android.googlesource.com/platform/external/libhevc/+/1ab5ce7e42feccd49e49752e6f58f9097ac5d254","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Critical,2016-12-23 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0541,Remote code execution vulnerability in Mediaserver,A-34031018,https://android.googlesource.com/platform/external/sonivox/+/56d153259cc3e16a6a0014199a2317dde333c978","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Critical,2017-01-01 00:00:00,RCE,,Remote code execution vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0542,Remote code execution vulnerability in Mediaserver,A-33934721,https://android.googlesource.com/platform/external/libavc/+/33ef7de9ddc8ea7eb9cbc440d1cf89957a0c267b","6.0, 6.0.1, 7.0, 7.1.1",Critical,Google internal,RCE,,Remote code execution vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0543,Remote code execution vulnerability in Mediaserver,A-34097866,https://android.googlesource.com/platform/external/libavc/+/f634481e940421020e52f511c1fb34aac1db4b2f","6.0, 6.0.1, 7.0, 7.1.1",Critical,Google internal,RCE,,Remote code execution vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0544,Elevation of privilege vulnerability in CameraBase,A-31992879,https://android.googlesource.com/platform/frameworks/av/+/4b49489c12e6862e9a320ebcb53872e809ed20ec","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-06 00:00:00,EoP,,Elevation of privilege vulnerability,CameraBase,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0545,Elevation of privilege vulnerability in Audioserver,A-32591350,https://android.googlesource.com/platform/frameworks/av/+/e5a54485e08400a976092cd5b1c6d909d0e1a4ab","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-10-31 00:00:00,EoP,,Elevation of privilege vulnerability,Audioserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0546,Elevation of privilege vulnerability in SurfaceFlinger,A-32628763,https://android.googlesource.com/platform/frameworks/native/+/45b202513ba7440beaefbf9928f73fb6683dcfbd","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-11-02 00:00:00,EoP,,Elevation of privilege vulnerability,SurfaceFlinger,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0547,Information disclosure vulnerability in Mediaserver,A-33861560,https://android.googlesource.com/platform/frameworks/av/+/9667e3eff2d34c3797c3b529370de47b2c1f1bf6","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",High,2016-12-22 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0548,Denial of service vulnerability in libskia,A-33251605,https://android.googlesource.com/platform/external/skia/+/318e3505ac2436c62ec19fd27ebe9f8e7d174544","7.0, 7.1.1",High,2016-11-29 00:00:00,DoS,,Denial of service vulnerability,libskia,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0549,Denial of service vulnerability in Mediaserver,A-33818508,https://android.googlesource.com/platform/external/libavc/+/37345554fea84afd446d6d8fbb87feea5a0dde3f","6.0, 6.0.1, 7.0, 7.1.1",High,2016-12-20 00:00:00,DoS,,Denial of service vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0550,Denial of service vulnerability in Mediaserver,A-33933140,https://android.googlesource.com/platform/external/libavc/+/7950bf47b6944546a0aff11a7184947de9591b51","6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0551,Denial of service vulnerability in Mediaserver,A-34097231,"https://android.googlesource.com/platform/external/libavc/+/8b5fd8f24eba5dd19ab2f80ea11a9125aa882ae2",https://android.googlesource.com/platform/external/libavc/+/494561291a503840f385fbcd11d9bc5f4dc502b8"","6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0552,Denial of service vulnerability in Mediaserver,A-34097915,https://android.googlesource.com/platform/external/libavc/+/9a00f562a612d56e7b2b989d168647db900ba6cf","6.0, 6.0.1, 7.0, 7.1.1",High,Google internal,DoS,,Denial of service vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0553,Elevation of privilege vulnerability in libnl,A-32342065,https://android.googlesource.com/platform/external/libnl/+/f83d9c1c67b6be69a96995e384f50b572b667df0","5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-10-21 00:00:00,EoP,,Elevation of privilege vulnerability,libnl,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0554,Elevation of privilege vulnerability in Telephony,A-33815946,"https://android.googlesource.com/platform/packages/services/Telephony/+/aeb795ef2290af1a0e4b14909363bc574e6b3ee7",https://android.googlesource.com/platform/frameworks/base/+/3294256ba5b9e2ba2d8619d617e3d900e5386564"","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-12-20 00:00:00,EoP,,Elevation of privilege vulnerability,Telephony,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0555,Information disclosure vulnerability in Mediaserver,A-33551775,https://android.googlesource.com/platform/external/libavc/+/0b23c81c3dd9ec38f7e6806a3955fed1925541a0","6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-12-12 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0556,Information disclosure vulnerability in Mediaserver,A-34093952,https://android.googlesource.com/platform/external/libmpeg2/+/f301cff2c1ddd880d9a2c77b22602a137519867b","6.0, 6.0.1, 7.0, 7.1.1",Moderate,2017-01-04 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0557,Information disclosure vulnerability in Mediaserver,A-34093073,https://android.googlesource.com/platform/external/libmpeg2/+/227c1f829127405e21dab1664393050c652ef71e","6.0, 6.0.1, 7.0, 7.1.1",Moderate,2017-01-04 00:00:00,ID,,Information disclosure vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0558,Information disclosure vulnerability in Mediaserver,A-34056274,https://android.googlesource.com/platform/frameworks/av/+/50358a80b1724f6cf1bcdf003e1abf9cc141b122","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,Google internal,ID,,Information disclosure vulnerability,Mediaserver,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0559,Information disclosure vulnerability in libskia,A-33897722,https://android.googlesource.com/platform/external/skia/+/16882f721279a82a1c860ac689ce570b16fe26a0","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,2016-12-25 00:00:00,ID,,Information disclosure vulnerability,libskia,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-01,CVE-2017-0560,Information disclosure vulnerability in Factory Reset,A-30681079,https://android.googlesource.com/platform/frameworks/base/+/efdec8f5688ce6b0a287eddb6d5dad93ffa0e1ee","4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0, 7.1.1",Moderate,Google internal,ID,,Information disclosure vulnerability,Factory Reset,2017,4,1,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0561,Remote code execution vulnerability in Broadcom Wi-Fi firmware,"A-34199105,B-RB110814","none,none",,Critical,2017-01-09 00:00:00,RCE,,Remote code execution vulnerability,Broadcom Wi-Fi firmware,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2016-10230,Remote code execution vulnerability in Qualcomm crypto engine driver,"A-34389927,QC-CR1091408","none,https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=bd9a8fc6d7f6bd1a0b936994630006de450df657"",,Critical,2017-01-10 00:00:00,RCE,,Remote code execution vulnerability,Qualcomm crypto engine driver,2017,4,5,2018-04-04T18:29Z
2017-04-01,2017-04-05,CVE-2016-10229,Remote code execution vulnerability in kernel networking subsystem,A-32813456,http://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?id=197c949e7798fbf28cfadc69d9ca0c2abbf93191",,Critical,Google internal,RCE,,Remote code execution vulnerability,kernel networking subsystem,2017,4,5,2017-04-04T05:59Z
2017-04-01,2017-04-05,CVE-2017-0562,Elevation of privilege vulnerability in MediaTek touchscreen driver,"A-30202425,M-ALPS02898189","none,https://developers.google.com/android/nexus/drivers"",,Critical*,2016-07-16 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek touchscreen driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0563,Elevation of privilege vulnerability in HTC touchscreen driver,A-32089409,none,,Critical,2016-10-09 00:00:00,EoP,,Elevation of privilege vulnerability,HTC touchscreen driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0564,Elevation of privilege vulnerability in kernel ION subsystem,A-34276203,https://developers.google.com/android/nexus/drivers",,Critical,2017-01-12 00:00:00,EoP,,Elevation of privilege vulnerability,kernel ION subsystem,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2016-5129,Remote code execution vulnerability in v8,A-29178923,none,"6.0, 6.0.1, 7.0",High,2016-07-20 00:00:00,RCE,,Remote code execution vulnerability,v8,2017,4,5,2016-07-23T19:59Z
2017-04-01,2017-04-05,CVE-2016-10244,Remote code execution vulnerability in Freetype,A-31470908,none,"4.4.4, 5.0.2, 5.1.1, 6.0, 6.0.1, 7.0",High,2016-09-13 00:00:00,RCE,,Remote code execution vulnerability,Freetype,2017,4,5,2017-03-06T06:59Z
2017-04-01,2017-04-05,CVE-2014-4656,Elevation of privilege vulnerability in kernel sound subsystem,A-34464977,http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=883a1d49f0d77d30012f114b2e19fc141beb3e8e",,High,2014-06-26 00:00:00,EoP,,Elevation of privilege vulnerability,kernel sound subsystem,2017,4,5,2014-07-03T04:22Z
2017-04-01,2017-04-05,CVE-2017-0339,Elevation of privilege vulnerability in NVIDIA crypto driver,"A-27930566, N-CVE-2017-0339","none,none",,High,2016-03-29 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA crypto driver,2017,4,5,2017-04-05T14:59Z
2017-04-01,2017-04-05,CVE-2017-0332,Elevation of privilege vulnerability in NVIDIA crypto driver,"A-33812508, N-CVE-2017-0332","none,none",,High,2016-12-21 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA crypto driver,2017,4,5,2017-04-05T14:59Z
2017-04-01,2017-04-05,CVE-2017-0327,Elevation of privilege vulnerability in NVIDIA crypto driver,"A-33893669, N-CVE-2017-0327","none,none",,High,2016-12-24 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA crypto driver,2017,4,5,2017-04-05T14:59Z
2017-04-01,2017-04-05,CVE-2017-0565,Elevation of privilege vulnerability in MediaTek thermal driver,"A-28175904,M-ALPS02696516","none,https://developers.google.com/android/nexus/drivers"",,High,2016-04-11 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek thermal driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0566,Elevation of privilege vulnerability in MediaTek camera driver,"A-28470975,M-ALPS02696367","none,none",,High,2016-04-29 00:00:00,EoP,,Elevation of privilege vulnerability,MediaTek camera driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0567,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-32125310,B-RB112575","none,none",,High,2016-10-12 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0568,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-34197514,B-RB112600","none,none",,High,2017-01-09 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0569,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-34198729,B-RB110666","none,none",,High,2017-01-09 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0570,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-34199963,B-RB110688","none,none",,High,2017-01-09 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0571,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-34203305,B-RB111541","none,none",,High,2017-01-09 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0572,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-34198931,B-RB112597","none,none",,High,2017-01-09 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0573,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-34469904,B-RB91539","none,none",,High,2017-01-18 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0574,Elevation of privilege vulnerability in Broadcom Wi-Fi driver,"A-34624457,B-RB113189","none,https://developers.google.com/android/nexus/drivers"",,High,2017-01-22 00:00:00,EoP,,Elevation of privilege vulnerability,Broadcom Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0575,Elevation of privilege vulnerability in Qualcomm Wi-Fi driver,"A-32658595,QC-CR1103099","none,none",,High,2016-11-03 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm Wi-Fi driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0325,Elevation of privilege vulnerability in NVIDIA I2C HID driver,"A-33040280, N-CVE-2017-0325 ","none,none",,High,2016-11-20 00:00:00,EoP,,Elevation of privilege vulnerability,NVIDIA I2C HID driver,2017,4,5,2017-04-05T14:59Z
2017-04-01,2017-04-05,CVE-2017-0454,Elevation of privilege vulnerability in Qualcomm audio driver,"A-33353700,QC-CR1104067","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=cb0701a2f99fa19f01fbd4249bda9a8eadb0241f"",,High,2016-12-05 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm audio driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0576,Elevation of privilege vulnerability in Qualcomm crypto engine driver,"A-33544431,QC-CR1103089","none,https://source.codeaurora.org/quic/la/kernel/msm-3.18/commit/?id=2b09507d78b25637df6879cd2ee2031b208b3532"",,High,2016-12-09 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm crypto engine driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0577,Elevation of privilege vulnerability in HTC touchscreen driver,A-33842951,none,,High,2016-12-21 00:00:00,EoP,,Elevation of privilege vulnerability,HTC touchscreen driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2017-0578,Elevation of privilege vulnerability in DTS sound driver,A-33964406,https://developers.google.com/android/nexus/drivers",,High,2016-12-28 00:00:00,EoP,,Elevation of privilege vulnerability,DTS sound driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2016-10231,Elevation of privilege vulnerability in Qualcomm sound codec driver,"A-33966912,QC-CR1096799","none,https://source.codeaurora.org/quic/la//kernel/msm-3.18/commit/?id=3bfe5a89916f7d29492e9f6d941d108b688cb804"",,High,2016-12-29 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm sound codec driver,2017,4,5,2018-04-04T18:29Z
2017-04-01,2017-04-05,CVE-2017-0579,Elevation of privilege vulnerability in Qualcomm video driver,"A-34125463,QC-CR1115406","none,none",,High,2017-01-05 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm video driver,2017,4,5,2017-04-07T22:59Z
2017-04-01,2017-04-05,CVE-2016-10232,Elevation of privilege vulnerability in Qualcomm video driver,"A-34386696,QC-CR1024872","none,https://source.codeaurora.org/quic/la//kernel/msm-3.10/commit/?id=21e0ead58e47798567d846b84f16f89cf69a57ae"",,High,2017-01-10 00:00:00,EoP,,Elevation of privilege vulnerability,Qualcomm video driver,2017,4,5,2018-04-04T18:29Z