-
Notifications
You must be signed in to change notification settings - Fork 12
/
2014.json
3562 lines (3562 loc) · 203 KB
/
2014.json
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
[
{
"impact": "Synching with a malicious git repository may allow unexpected files to be added to the .git folder",
"available": "OS X Mavericks v10.9.4 or later",
"description": "The checks involved in disallowed paths did not account for case insensitivity or unicode characters. This issue was addressed by adding additional checks.",
"update": "",
"module": "Git",
"id": "CVE-2014-9390 ",
"credit": "Matt Mackall of Mercurial and Augie Fackler of Mercurial",
"page": "http://support.apple.com/en-us/HT204147"
},
{
"impact": "Visiting a website that frames malicious content may lead to UI spoofing",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "A UI spoofing issue existed in the handling of scrollbar boundaries. This issue was addressed through improved bounds checking.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-1748 ",
"credit": "Jordan Milne",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4452",
"credit": "",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4459",
"credit": "",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Style sheets are loaded cross-origin which may allow for data exfiltration",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "An SVG loaded in an img element could load a CSS file cross-origin. This issue was addressed through enhanced blocking of external CSS references in SVGs.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4465 ",
"credit": "Rennie deGraaf of iSEC Partners",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4466 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4468 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4469 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4470 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4471 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4472 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4473 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4474 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10.1",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-4475 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT204421"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in libxml. These issues were addressed by updating libxml to version 2.9.0.",
"update": "",
"module": "libxml",
"id": "CVE-2011-3102 ",
"credit": "J\u00fcri Aedla",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in libxml. These issues were addressed by updating libxml to version 2.9.0.",
"update": "",
"module": "libxml",
"id": "CVE-2012-0841",
"credit": "",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in libxml. These issues were addressed by updating libxml to version 2.9.0.",
"update": "",
"module": "libxml",
"id": "CVE-2012-2807 ",
"credit": "J\u00fcri Aedla",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in libxslt. These issues were addressed by updating libxslt to version 1.1.28.",
"update": "",
"module": "libxslt",
"id": "CVE-2012-2825 ",
"credit": "Nicolas Gregoire",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in libxslt. These issues were addressed by updating libxslt to version 1.1.28.",
"update": "",
"module": "libxslt",
"id": "CVE-2012-2870 ",
"credit": "Nicolas Gregoire",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in libxslt. These issues were addressed by updating libxslt to version 1.1.28.",
"update": "",
"module": "libxslt",
"id": "CVE-2012-2871 ",
"credit": "Kai Lu of Fortinet's FortiGuard Labs, Nicolas Gregoire",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in libxml. These issues were addressed by updating libxml to version 2.9.0.",
"update": "",
"module": "libxml",
"id": "CVE-2012-5134 ",
"credit": "Google Chrome Security Team (J\u00fcri Aedla)",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "Viewing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "An uninitialized memory access issue existed in the handling of text tracks. This issue was addressed by additional validation of text tracks.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1024 ",
"credit": "Richard Kuo and Billy Suguitan of Triemt Corporation",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1037 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1038 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1039 ",
"credit": "own-hero Research working with iDefense VCP",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1040 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1041 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1042 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1043 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1044 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1045 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1046 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1047 ",
"credit": "miaubiz",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-2842 ",
"credit": "Cyril Cattiaux",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-5125 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-5126 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-5127 ",
"credit": "Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "A man-in-the-middle attack while browsing the iTunes Store via iTunes may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-5128 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "An attacker with a privileged network position may control the contents of the iTunes Tutorials window",
"available": "Mac OS X v10.6.8 or later, Windows 8, Windows 7, Vista, and XP SP2 or later",
"description": "The contents of the iTunes Tutorials window are retrieved from the network using an unprotected HTTP connection. An attacker with a privileged network position may inject arbitrary contents. This issue was addressed by using an encrypted HTTPS connection to retrieve tutorials.",
"update": "",
"module": "iTunes",
"id": "CVE-2014-1242 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT6001"
},
{
"impact": "Loading a malformed executable file may cause memory corruption in the kernel",
"available": "Macs running Boot Camp 5",
"description": "A bounds checking issue existed in the AppleMNT.sys driver's parsing of Portable Executable files. If a Portable Executable file with a malformed header is loaded, this could cause a Boot Camp driver to corrupt kernel memory. The issue was addressed through improved bounds checking.",
"update": "",
"module": "Boot Camp",
"id": "CVE-2014-1253 ",
"credit": "MJ0011 of 360 Security Center",
"page": "http://support.apple.com/en-us/HT6126"
},
{
"impact": "An attacker may be able to decrypt data protected by SSL",
"available": "OS X Mountain Lion v10.8.5",
"description": "There were known attacks on the confidentiality of SSL 3.0 and TLS 1.0 when a cipher suite used a block cipher in CBC mode. To address these issues for applications using Secure Transport, the 1-byte fragment mitigation was enabled by default for this configuration.",
"update": "",
"module": "Secure Transport",
"id": "CVE-2011-3389 ",
"credit": "Juliano Rizzo and Thai Duong",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Multiple vulnerabilities in Apache",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "Multiple vulnerabilities existed in Apache, the most serious of which may lead to cross-site scripting. These issues were addressed by updating Apache to version 2.2.26.",
"update": "",
"module": "Apache",
"id": "CVE-2013-1862",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Multiple vulnerabilities in Apache",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "Multiple vulnerabilities existed in Apache, the most serious of which may lead to cross-site scripting. These issues were addressed by updating Apache to version 2.2.26.",
"update": "",
"module": "Apache",
"id": "CVE-2013-1896",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "Multiple vulnerabilities existed in PHP, the most serious of which may have led to arbitrary code execution. These issues were addressed by updating PHP to version 5.4.24 on OS X Mavericks v10.9, and 5.3.28 on OS X Lion and Mountain Lion.",
"update": "",
"module": "PHP",
"id": "CVE-2013-4073",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "Multiple vulnerabilities existed in PHP, the most serious of which may have led to arbitrary code execution. These issues were addressed by updating PHP to version 5.4.24 on OS X Mavericks v10.9, and 5.3.28 on OS X Lion and Mountain Lion.",
"update": "",
"module": "PHP",
"id": "CVE-2013-4113",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "Multiple vulnerabilities existed in PHP, the most serious of which may have led to arbitrary code execution. These issues were addressed by updating PHP to version 5.4.24 on OS X Mavericks v10.9, and 5.3.28 on OS X Lion and Mountain Lion.",
"update": "",
"module": "PHP",
"id": "CVE-2013-4248",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Executing a malicious application may result in arbitrary code execution within the kernel",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5",
"description": "An out of bounds array access existed in the IOSerialFamily driver. This issue was addressed through additional bounds checking. This issue does not affect systems running OS X Mavericks v10.9 or later.",
"update": "",
"module": "IOSerialFamily",
"id": "CVE-2013-5139 ",
"credit": "@dent1zt",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "A file could show the wrong extension",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5",
"description": "An issue existed in the handling of certain unicode characters that could allow filenames to show incorrect extensions. The issue was addressed by filtering unsafe unicode characters from display in filenames. This issue does not affect systems running OS X Mavericks v10.9 or later.",
"update": "",
"module": "LaunchServices",
"id": "CVE-2013-5178 ",
"credit": "Jesse Ruderman of Mozilla Corporation, Stephane Sudre of Intego",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "The App Sandbox may be bypassed",
"available": "OS X Mountain Lion v10.8.5",
"description": "The LaunchServices interface for launching an application allowed sandboxed apps to specify the list of arguments passed to the new process. A compromised sandboxed application could abuse this to bypass the sandbox. This issue was addressed by preventing sandboxed applications from specifying arguments. This issue does not affect systems running OS X Mavericks 10.9 or later.",
"update": "",
"module": "App Sandbox",
"id": "CVE-2013-5179 ",
"credit": "Friedrich Graeter of The Soulmen GbR",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Executing a malicious application could result in arbitrary code execution within the graphics card",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "An issue existed that allowed writes to some trusted memory on the graphics card. This issue was addressed by removing the ability of the host to write to that memory.",
"update": "",
"module": "NVIDIA Drivers",
"id": "CVE-2013-5986 ",
"credit": "Marcin Kościelnicki from the X.Org Foundation Nouveau project",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Executing a malicious application could result in arbitrary code execution within the graphics card",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "An issue existed that allowed writes to some trusted memory on the graphics card. This issue was addressed by removing the ability of the host to write to that memory.",
"update": "",
"module": "NVIDIA Drivers",
"id": "CVE-2013-5987 ",
"credit": "Marcin Kościelnicki from the X.Org Foundation Nouveau project",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "Multiple vulnerabilities existed in PHP, the most serious of which may have led to arbitrary code execution. These issues were addressed by updating PHP to version 5.4.24 on OS X Mavericks v10.9, and 5.3.28 on OS X Lion and Mountain Lion.",
"update": "",
"module": "PHP",
"id": "CVE-2013-6420",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "A memory corruption issue existed in the handling of 'dref' atoms. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1247 ",
"credit": "Tom Gallagher & Paul Bates working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "A buffer overflow existed in the handling of 'ldat' atoms. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1248 ",
"credit": "Jason Kratzer working with iDefense VCP",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Viewing or downloading a document containing a maliciously crafted embedded font may lead to arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "A memory corruption issue existed in the handling of handling of Type 1 fonts. This issue was addressed through improved bounds checking.",
"update": "",
"module": "ATS",
"id": "CVE-2014-1254 ",
"credit": "Felix Groebert of the Google Security Team",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "The App Sandbox may be bypassed",
"available": "OS X Mavericks 10.9 and 10.9.1",
"description": "An arbitrary free issue existed in the handling of Mach messages passed to ATS. This issue was addressed through additional validation of Mach messages.",
"update": "",
"module": "ATS",
"id": "CVE-2014-1255 ",
"credit": "Meder Kydyraliev of the Google Security Team",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "The App Sandbox may be bypassed",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "A buffer overflow issue existed in the handling of Mach messages passed to ATS. This issue was addressed by additional bounds checking.",
"update": "",
"module": "ATS",
"id": "CVE-2014-1256 ",
"credit": "Meder Kydyraliev of the Google Security Team",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Session cookies may persist even after resetting Safari",
"available": "OS X Mountain Lion v10.8.5",
"description": "Resetting Safari did not always delete session cookies until Safari was closed. This issue was addressed through improved handling of session cookies. This issue does not affect systems running OS X Mavericks 10.9 or later.",
"update": "",
"module": "CFNetwork Cookies",
"id": "CVE-2014-1257 ",
"credit": "Rob Ansaldo of Amherst College, Graham Bennett",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Visiting a maliciously crafted site may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "A heap buffer overflow existed in CoreAnimation's handling of images. This issue was addressed through improved bounds checking.",
"update": "",
"module": "CoreAnimation",
"id": "CVE-2014-1258 ",
"credit": "Karl Smith of NCC Group",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Viewing a file with a maliciously crafted name may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "A buffer overflow existed in the handling of file names. This issue was addressed through improved bounds checking.",
"update": "",
"module": "File Bookmark",
"id": "CVE-2014-1259",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Downloading a maliciously crafted Microsoft Office file may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5",
"description": "A memory corruption issue existed in QuickLook's handling of Microsoft Office files. Downloading a maliciously crafted Microsoft Office file may have led to an unexpected application termination or arbitrary code execution. This issue does not affect systems running OS X Mavericks 10.9 or later.",
"update": "",
"module": "QuickLook",
"id": "CVE-2014-1260 ",
"credit": "Felix Groebert of the Google Security Team",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Applications that use CoreText may be vulnerable to an unexpected application termination or arbitrary code execution",
"available": "OS X Mavericks 10.9 and 10.9.1",
"description": "A signedness issue existed in CoreText in the handling of Unicode fonts. This issue is addressed through improved bounds checking.",
"update": "",
"module": "CoreText",
"id": "CVE-2014-1261 ",
"credit": "Lucas Apa and Carlos Mario Penagos of IOActive Labs",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "The App Sandbox may be bypassed",
"available": "OS X Mavericks 10.9 and 10.9.1",
"description": "A memory corruption issue existed in the handling of Mach messages passed to ATS. This issue was addressed through improved bounds checking.",
"update": "",
"module": "ATS",
"id": "CVE-2014-1262 ",
"credit": "Meder Kydyraliev of the Google Security Team",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "An attacker with a privileged network position may intercept user credentials or other sensitive information",
"available": "OS X Mavericks 10.9 and 10.9.1",
"description": "When using curl to connect to an HTTPS URL containing an IP address, the IP address was not validated against the certificate. This issue does not affect systems prior to OS X Mavericks v10.9.",
"update": "",
"module": "curl",
"id": "CVE-2014-1263 ",
"credit": "Roland Moriz of Moriz GmbH",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Accessing a file's ACL via Finder may lead to other users gaining unauthorized access to files",
"available": "OS X Mavericks 10.9 and 10.9.1",
"description": "Accessing a file's ACL via Finder may corrupt the ACLs on the file. This issue was addressed through improved handling of ACLs.",
"update": "",
"module": "Finder",
"id": "CVE-2014-1264",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "An unprivileged user may change the system clock",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks 10.9 and 10.9.1",
"description": "This update changes the behavior of the",
"update": "",
"module": "Date and Time",
"id": "CVE-2014-1265",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "An attacker with a privileged network position may capture or modify data in sessions protected by SSL/TLS",
"available": "OS X Mavericks 10.9 and 10.9.1",
"description": "Secure Transport failed to validate the authenticity of the connection. This issue was addressed by restoring missing validation steps.",
"update": "",
"module": "Data Security",
"id": "CVE-2014-1266",
"credit": "",
"page": "http://support.apple.com/en-us/HT6150"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "An out of bounds byte swapping issue existed in the handling of QuickTime image descriptions. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-1032 ",
"credit": "Jason Kratzer working with iDefense VCP",
"page": "http://support.apple.com/en-us/HT6151"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "An uninitialized pointer issue existed in the handling of track lists. This issue was addressed through improved error checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1243 ",
"credit": "Tom Gallagher (Microsoft) & Paul Bates (Microsoft) working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT6151"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "A buffer overflow existed in the handling of H.264 encoded movie files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1244 ",
"credit": "Tom Gallagher & Paul Bates working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT6151"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "A signedness issue existed in the handling of 'stsz' atoms. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1245 ",
"credit": "Tom Gallagher & Paul Bates working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT6151"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "A buffer overflow existed in the handling of 'ftab' atoms. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1246 ",
"credit": "An anonymous researcher working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT6151"
},
{
"impact": "Viewing a maliciously crafted PSD image may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "A buffer overflow existed in the handling of PSD images. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1249 ",
"credit": "dragonltx of Tencent Security Team",
"page": "http://support.apple.com/en-us/HT6151"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "An out of bounds byte swapping issue existed in the handling of 'ttfo' elements. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1250 ",
"credit": "Jason Kratzer working with iDefense VCP",
"page": "http://support.apple.com/en-us/HT6151"
},
{
"impact": "Playing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "A buffer overflow existed in the handling of 'clef' atoms. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2014-1251 ",
"credit": "Aliz Hammond working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT6151"
},
{
"impact": "A man-in-the-middle attacker may entice a user into downloading a malicious app via Enterprise App Download",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "An attacker with a privileged network position could spoof network communications to entice a user into downloading a malicious app. This issue was mitigated by using SSL and prompting the user during URL redirects.",
"update": "",
"module": "iTunes Store",
"id": "CVE-2013-3948 ",
"credit": "Stefan Esser",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "A maliciously crafted backup can alter the filesystem",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "A symbolic link in a backup would be restored, allowing subsequent operations during the restore to write to the rest of the filesystem. This issue was addressed by checking for symbolic links during the restore process.",
"update": "",
"module": "Backup",
"id": "CVE-2013-5133 ",
"credit": "evad3rs",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "Opening a maliciously crafted Microsoft Word document may lead to an unexpected application termination or arbitrary code execution",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "A double free issue existed in the handling of Microsoft Word documents. This issue was addressed through improved memory management.",
"update": "",
"module": "Office Viewer",
"id": "CVE-2014-1252 ",
"credit": "Felix Groebert of the Google Security Team",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "A person with physical access to the device may be able to access FaceTime contacts from the lock screen",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "FaceTime contacts on a locked device could be exposed by making a failed FaceTime call from the lock screen. This issue was addressed through improved handling of FaceTime calls.",
"update": "",
"module": "FaceTime",
"id": "CVE-2014-1274",
"credit": "",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "A malicious application may monitor on user actions in other apps",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "An interface in IOKit framework allowed malicious apps to monitor on user actions in other apps. This issue was addressed through improved access control policies in the framework.",
"update": "",
"module": "IOKit HID Event",
"id": "CVE-2014-1276 ",
"credit": "Min Zheng, Hui Xue, and Dr. Tao (Lenx) Wei of FireEye",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "Deleted images may still appear in the Photos app underneath transparent images",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "Deleting an image from the asset library did not delete cached versions of the image. This issue was addressed through improved cache management.",
"update": "",
"module": "Photos Backend",
"id": "CVE-2014-1281 ",
"credit": "Walter Hoelblinger of Hoelblinger.com, Morgan Adams, Tom Pennington",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "A person with physical access to the device may be able to see the home screen of the device even if the device has not been activated",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "An unexpected application termination during activation could cause the phone to show the home screen. The issue was addressed through improved error handling during activation.",
"update": "",
"module": "Springboard",
"id": "CVE-2014-1285 ",
"credit": "Roboboi99",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "A remote attacker may be able to cause the lock screen to become unresponsive",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "A state management issue existed in the lock screen. This issue was addressed through improved state management.",
"update": "",
"module": "SpringBoard Lock Screen",
"id": "CVE-2014-1286 ",
"credit": "Bogdan Alecu of M-sec.net",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "A person with physical access to the device may be able to disable Find My iPhone without entering an iCloud password",
"available": "iPhone 4 and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "A state management issue existed in the handling of the Find My iPhone state. This issue was addressed through improved handling of Find My iPhone state.",
"update": "",
"module": "Settings - Accounts",
"id": "CVE-2014-2019",
"credit": "",
"page": "http://support.apple.com/en-us/HT6162"
},
{
"impact": "Viewing a maliciously crafted TIFF file may lead to an unexpected application termination or arbitrary code execution",
"available": "Apple TV (2nd generation and later)",
"description": "A buffer overflow existed in libtiff's handling of TIFF images. This issue was addressed through additional validation of TIFF images.",
"update": "",
"module": "Apple TV",
"id": "CVE-2012-2088",
"credit": "",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "Viewing a maliciously crafted JPEG file may lead to the disclosure of memory contents",
"available": "Apple TV (2nd generation and later)",
"description": "An uninitialized memory access issue existed in libjpeg's handling of JPEG markers, resulting in the disclosure of memory contents. This issue was addressed through additional validation of JPEG files.",
"update": "",
"module": "Apple TV",
"id": "CVE-2013-6629 ",
"credit": "Michal Zalewski",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "Profile expiration dates were not honored",
"available": "Apple TV (2nd generation and later)",
"description": "Expiration dates of mobile configuration profiles were not evaluated correctly. The issue was resolved through improved handling of configuration profiles.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1267",
"credit": "",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "A malicious application can cause an unexpected system termination",
"available": "Apple TV (2nd generation and later)",
"description": "A reachable assertion issue existed in CoreCapture's handling of IOKit API calls. The issue was addressed through additional validation of input from IOKit.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1271 ",
"credit": "Filippo Bigarella",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "A local user may be able to change permissions on arbitrary files",
"available": "Apple TV (2nd generation and later)",
"description": "CrashHouseKeeping followed symbolic links while changing permissions on files. This issue was addressed by not following symbolic links when changing permissions on files.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1272 ",
"credit": "evad3rs",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "Code signing requirements may be bypassed",
"available": "Apple TV (2nd generation and later)",
"description": "Text relocation instructions in dynamic libraries may be loaded by dyld without code signature validation. This issue was addressed by ignoring text relocation instructions.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1273 ",
"credit": "evad3rs",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "Viewing a maliciously crafted PDF file may lead to an unexpected application termination or arbitrary code execution",
"available": "Apple TV (2nd generation and later)",
"description": "A buffer overflow existed in the handling of JPEG2000 images in PDF files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1275 ",
"credit": "Felix Groebert of the Google Security Team",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "A local user may be able to cause an unexpected system termination or arbitrary code execution in the kernel",
"available": "Apple TV (2nd generation and later)",
"description": "An out of bounds memory access issue existed in the ARM ptmx_get_ioctl function. This issue was addressed through improved bounds checking.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1278 ",
"credit": "evad3rs",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "An attacker with access to an Apple TV may access sensitive user information from logs",
"available": "Apple TV (2nd generation and later)",
"description": "Sensitive user information was logged. This issue was addressed by logging less information.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1279 ",
"credit": "David Schuetz working at Intrepidus Group",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "Playing a maliciously crafted video could lead to the device becoming unresponsive",
"available": "Apple TV (2nd generation and later)",
"description": "A null dereference issue existed in the handling of MPEG-4 encoded files. This issue was addressed through improved memory handling.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1280 ",
"credit": "rg0rd",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "A configuration profile may be hidden from the user",
"available": "Apple TV (2nd generation and later)",
"description": "A configuration profile with a long name could be loaded onto the device but was not displayed in the profile UI. The issue was addressed through improved handling of profile names.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1282 ",
"credit": "Assaf Hefetz, Yair Amit and Adi Sharabani of Skycure",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "A person with physical access to the device may be able to cause arbitrary code execution in kernel mode",
"available": "Apple TV (2nd generation and later)",
"description": "A memory corruption issue existed in the handling of USB messages. This issue was addressed through additional validation of USB messages.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1287 ",
"credit": "Andy Davis of NCC Group",
"page": "http://support.apple.com/en-us/HT6163"
},
{
"impact": "An attacker running arbitrary code in the WebProcess may be able to read arbitrary files despite sandbox restrictions",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.2",
"description": "A logic issue existed in the handling of IPC messages from the WebProcess. This issue was addressed through additional validation of IPC messages.",
"update": "",
"module": "WebKit",
"id": "CVE-2014-1297 ",
"credit": "Ian Beer of Google Project Zero",
"page": "http://support.apple.com/en-us/HT6181"
},
{
"impact": "An attacker with a privileged network position may capture data or change the operations performed in sessions protected by SSL",
"available": "Apple TV 2nd generation and later",
"description": "In a 'triple handshake' attack, it was possible for an attacker to establish two connections which had the same encryption keys and handshake, insert the attacker's data in one connection, and renegotiate so that the connections may be forwarded to each other. To prevent attacks based on this scenario, Secure Transport was changed so that, by default, a renegotiation must present the same server certificate as was presented in the original connection.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1295 ",
"credit": "Antoine Delignat-Lavaud, Karthikeyan Bhargavan and Alfredo Pironti of Prosecco at Inria Paris",
"page": "http://support.apple.com/en-us/HT6209"
},
{
"impact": "An attacker in a privileged network position can obtain web site credentials",
"available": "Apple TV 2nd generation and later",
"description": "Set-Cookie HTTP headers would be processed even if the connection closed before the header line was complete. An attacker could strip security settings from the cookie by forcing the connection to close before the security settings were sent, and then obtain the value of the unprotected cookie. This issue was addressed by ignoring incomplete HTTP header lines.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1296 ",
"credit": "Antoine Delignat-Lavaud of Prosecco at Inria Paris",
"page": "http://support.apple.com/en-us/HT6209"
},
{
"impact": "A local user can read kernel pointers, which can be used to bypass kernel address space layout randomization",
"available": "Apple TV 2nd generation and later",
"description": "A set of kernel pointers stored in an IOKit object could be retrieved from userland. This issue was addressed through removing the pointers from the object.",
"update": "",
"module": "Apple TV",
"id": "CVE-2014-1320 ",
"credit": "Ian Beer of Google Project Zero working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT6209"