-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path2013.json
3432 lines (3432 loc) · 183 KB
/
2013.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": "Visiting a maliciously crafted website may lead to a cross-site scripting attack",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "A canonicalization issue existed in the handling of the EUC-JP encoding, which could lead to a cross-site scripting attack on EUC-JP encoded websites. This issue was addressed by updating the EUC-JP mapping table.",
"update": "",
"module": "International Components for Unicode",
"id": "CVE-2011-3058 ",
"credit": "Masato Kinugawa",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2012-3606 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2012-3607 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2012-3621 ",
"credit": "Skylined of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2012-3632 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2012-3687 ",
"credit": "kuzzcc",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2012-3701 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "Authentication relying on certificate-based Apple ID authentication may be bypassed",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "An error handling issue existed in Identity Services. If the user's AppleID certificate failed to validate, the user's AppleID was assumed to be the empty string. If multiple systems belonging to different users enter this state, applications relying on this identity determination may erroneously extend trust. This issue was addressed by ensuring that NULL is returned instead of an empty string.",
"update": "",
"module": "Identity Services",
"id": "CVE-2013-0963",
"credit": "",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "Visiting a maliciously crafted website may lead to an unexpected application termination or arbitrary code execution",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "Multiple memory corruption issues existed in WebKit. These issues were addressed through improved memory handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2013-0968 ",
"credit": "Aaron Nelson",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "JavaScript may be enabled in Mobile Safari without user interaction",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "If a user disabled JavaScript in Safari Preferences, visiting a site which displayed a Smart App Banner would re-enable JavaScript without warning the user. This issue was addressed by not enabling JavaScript when visiting a site with a Smart App Banner.",
"update": "",
"module": "StoreKit",
"id": "CVE-2013-0974 ",
"credit": "Andrew Plotkin of Zarfhome Software Consulting, Ben Madison of BitCloud, Marek Durcek",
"page": "http://support.apple.com/en-us/HT5642"
},
{
"impact": "A remote attacker on the same Wi-Fi network may be able to cause an unexpected system termination",
"available": "Apple TV 2nd generation",
"description": "An out of bounds read issue exists in Broadcom's BCM4325 and BCM4329 firmware's handling of 802.11i information elements. This issue was addressed through additional validation of 802.11i information elements.",
"update": "",
"module": "Apple TV",
"id": "CVE-2012-2619 ",
"credit": "Andres Blanco and Matias Eissler of Core Security",
"page": "http://support.apple.com/en-us/HT5643"
},
{
"impact": "A user-mode process may be able to access the first page of kernel memory",
"available": "Apple TV 2nd generation and later",
"description": "The kernel has checks to validate that the user-mode pointer and length passed to the copyin and copyout functions would not result in a user-mode process being able to directly access kernel memory. The checks were not being used if the length was smaller than one page. This issue was addressed through additional validation of the arguments to copyin and copyout.",
"update": "",
"module": "Apple TV",
"id": "CVE-2013-0964 ",
"credit": "Mark Dowd of Azimuth Security",
"page": "http://support.apple.com/en-us/HT5643"
},
{
"impact": "Visiting a maliciously crafted website may lead to a cross-site scripting attack",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.2",
"description": "A cross-site scripting issue existed in the handling of frame elements. This issue was addressed through improved origin tracking.",
"update": "",
"module": "WebKit",
"id": "CVE-2012-2889 ",
"credit": "Sergey Glazunov",
"page": "http://support.apple.com/en-us/HT5671"
},
{
"impact": "Copying and pasting content on a malicious website may lead to a cross-site scripting attack",
"available": "OS X Lion v10.7.5, OS X Lion Server v10.7.5, OS X Mountain Lion v10.8.2",
"description": "A cross-site scripting issue existed in the handling of content pasted from a different origin. This issue was addressed through additional validation of pasted content.",
"update": "",
"module": "WebKit",
"id": "CVE-2013-0962 ",
"credit": "Mario Heiderich of Cure53",
"page": "http://support.apple.com/en-us/HT5671"
},
{
"impact": "A local user may be able to execute unsigned code",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "A state management issue existed in the handling of Mach-O executable files with overlapping segments. This issue was addressed by refusing to load an executable with overlapping segments.",
"update": "",
"module": "dyld",
"id": "CVE-2013-0977 ",
"credit": "evad3rs",
"page": "http://support.apple.com/en-us/HT5704"
},
{
"impact": "A local user may be able to determine the address of structures in the kernel",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "An information disclosure issue existed in the ARM prefetch abort handler. This issue was addressed by panicking if the prefetch abort handler is not being called from an abort context.",
"update": "",
"module": "Kernel",
"id": "CVE-2013-0978 ",
"credit": "evad3rs",
"page": "http://support.apple.com/en-us/HT5704"
},
{
"impact": "A local user may be able to change permissions on arbitrary files",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "When restoring from backup, lockdownd changed permissions on certain files even if the path to the file included a symbolic link. This issue was addressed by not changing permissions on any file with a symlink in its path.",
"update": "",
"module": "Lockdown",
"id": "CVE-2013-0979 ",
"credit": "evad3rs",
"page": "http://support.apple.com/en-us/HT5704"
},
{
"impact": "A person with physical access to the device may be able to bypass the screen lock",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "A logic issue existed in the handling of emergency calls from the lock screen. This issue was addressed through improved lock state management.",
"update": "",
"module": "Passcode Lock",
"id": "CVE-2013-0980 ",
"credit": "Christopher Heffley of theMedium.ca, videosdebarraquito",
"page": "http://support.apple.com/en-us/HT5704"
},
{
"impact": "A local user may be able to execute arbitrary code in the kernel",
"available": "iPhone 3GS and later, iPod touch (4th generation) and later, iPad 2 and later",
"description": "The IOUSBDeviceFamily driver used pipe object pointers that came from userspace. This issue was addressed by performing additional validation of pipe object pointers.",
"update": "",
"module": "USB",
"id": "CVE-2013-0981 ",
"credit": "evad3rs",
"page": "http://support.apple.com/en-us/HT5704"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1491",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1537",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1540",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1557",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1558",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1563",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1569",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2383",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2384",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2394",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2417",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2419",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2420",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2422",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2424",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2429",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2430",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2432",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2435",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_43",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2440",
"credit": "",
"page": "http://support.apple.com/en-us/HT5734"
},
{
"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 7, Vista, 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-2012-2824 ",
"credit": "miaubiz",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-2012-2857 ",
"credit": "Arthur Gerkis",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-2012-3748 ",
"credit": "Joost Pol and Daan Keuper of Certified Secure working with HP TippingPoint's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-2012-5112 ",
"credit": "Pinkie Pie working with Google's Pwnium 2 contest",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0912 ",
"credit": "Nils and Jon from MWR Labs working with HP TippingPoint's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0948 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0949 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0950 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0951 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0952 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0953 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0954 ",
"credit": "Dominic Cooney of Google and Martin Barbella of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0955 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0956 ",
"credit": "Apple Product Security",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0958 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0959 ",
"credit": "Abhishek Arya (Inferno) of the Google Chrome Security Team",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0960 ",
"credit": "Apple",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-0961 ",
"credit": "wushi of team509 working with iDefense VCP",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"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 7, Vista, 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-1011 ",
"credit": "Google Chrome Security Team (Inferno)",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"impact": "An attacker in a privileged network position may manipulate HTTPS server certificates, leading to the disclosure of sensitive information",
"available": "Mac OS X v10.6.8 or later, Windows 7, Vista, XP SP2 or later",
"description": "A certificate validation issue existed in iTunes. In certain contexts, an active network attacker could present untrusted certificates to iTunes and they would be accepted without warning. This issue was resolved by improved certificate validation.",
"update": "",
"module": "iTunes",
"id": "CVE-2013-1014 ",
"credit": "Christopher of ThinkSECURE Pte Ltd, Christopher Hickstein of University of Minnesota",
"page": "http://support.apple.com/en-us/HT5766"
},
{
"impact": "Opening a maliciously crafted TeXML file may lead to an unexpected application termination or arbitrary code execution",
"available": "Windows 7, Vista, XP SP2 or later",
"description": "A memory corruption issue existed in the handling of TeXML files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-1015 ",
"credit": "Aniway.Anyway@gmail.com working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5770"
},
{
"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.263 encoded movie files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-1016 ",
"credit": "Tom Gallagher (Microsoft) & Paul Bates (Microsoft) working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5770"
},
{
"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 'dref' atoms. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-1017 ",
"credit": "Tom Gallagher (Microsoft) & Paul Bates (Microsoft) working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5770"
},
{
"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 memory corruption issue existed in the handling of JPEG encoded data. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-1020 ",
"credit": "Tom Gallagher (Microsoft) & Paul Bates (Microsoft) working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5770"
},
{
"impact": "Opening 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 JPEG encoded data. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-1021 ",
"credit": "Mil3s beep working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5770"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2011-1945",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2011-3207",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2011-3210",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2011-4108",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2011-4109",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2011-4576",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2011-4577",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2011-4619",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2012-0050",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2012-2110",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2012-2131",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "",
"update": "",
"module": "OpenSSL",
"id": "CVE-2012-2333",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "An attacker may be able to decrypt data protected by SSL",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "There were known attacks on the confidentiality of TLS 1.0 when compression was enabled. This issue was addressed by disabling compression in OpenSSL.",
"update": "",
"module": "OpenSSL",
"id": "CVE-2012-4929 ",
"credit": "Juliano Rizzo and Thai Duong",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "A local user in the lpadmin group may be able to read or write arbitrary files with system privileges",
"available": "OS X Mountain Lion v10.8 to v10.8.3",
"description": "A privilege escalation issue existed in the handling of CUPS configuration via the CUPS web interface. A local user in the lpadmin group may be able to read or write arbitrary files with system privileges. This issue was addressed by moving certain configuration directives to cups-files.conf, which can not be modified from the CUPS web interface.",
"update": "",
"module": "CUPS",
"id": "CVE-2012-5519",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in Ruby on Rails",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8",
"description": "Multiple vulnerabilities existed in Ruby on Rails, the most serious of which may lead to arbitrary code execution on systems running Ruby on Rails applications. These issues were addressed by updating Ruby on Rails to version 2.3.18. This issue may affect OS X Lion or OS X Mountain Lion systems that were upgraded from Mac OS X 10.6.8 or earlier. Users can update affected gems on such systems by using the /usr/bin/gem utility.",
"update": "",
"module": "Ruby",
"id": "CVE-2013-0155",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in Ruby on Rails",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8",
"description": "Multiple vulnerabilities existed in Ruby on Rails, the most serious of which may lead to arbitrary code execution on systems running Ruby on Rails applications. These issues were addressed by updating Ruby on Rails to version 2.3.18. This issue may affect OS X Lion or OS X Mountain Lion systems that were upgraded from Mac OS X 10.6.8 or earlier. Users can update affected gems on such systems by using the /usr/bin/gem utility.",
"update": "",
"module": "Ruby",
"id": "CVE-2013-0276",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in Ruby on Rails",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8",
"description": "Multiple vulnerabilities existed in Ruby on Rails, the most serious of which may lead to arbitrary code execution on systems running Ruby on Rails applications. These issues were addressed by updating Ruby on Rails to version 2.3.18. This issue may affect OS X Lion or OS X Mountain Lion systems that were upgraded from Mac OS X 10.6.8 or earlier. Users can update affected gems on such systems by using the /usr/bin/gem utility.",
"update": "",
"module": "Ruby",
"id": "CVE-2013-0277",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in Ruby on Rails",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8",
"description": "Multiple vulnerabilities existed in Ruby on Rails, the most serious of which may lead to arbitrary code execution on systems running Ruby on Rails applications. These issues were addressed by updating Ruby on Rails to version 2.3.18. This issue may affect OS X Lion or OS X Mountain Lion systems that were upgraded from Mac OS X 10.6.8 or earlier. Users can update affected gems on such systems by using the /usr/bin/gem utility.",
"update": "",
"module": "Ruby",
"id": "CVE-2013-0333",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Opening a maliciously crafted PICT image may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.2",
"description": "A buffer overflow existed in the handling of PICT images. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickDraw Manager",
"id": "CVE-2013-0975 ",
"credit": "Tobias Klein working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "An attacker with access to a user's session may be able to log into previously accessed sites, even if Private Browsing was used",
"available": "OS X Mountain Lion v10.8 to v10.8.3",
"description": "Permanent cookies were saved after quitting Safari, even when Private Browsing was enabled. This issue was addressed by improved handling of cookies.",
"update": "",
"module": "CFNetwork",
"id": "CVE-2013-0982 ",
"credit": "Alexander Traud of www.traud.de",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Visiting a maliciously crafted site may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8 to v10.8.3",
"description": "An unbounded stack allocation issue existed in the handling of text glyphs. This could be triggered by maliciously crafted URLs in Safari. The issue was addressed through improved bounds checking.",
"update": "",
"module": "CoreAnimation",
"id": "CVE-2013-0983 ",
"credit": "David Fifield of Stanford University, Ben Syverson",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "A remote attacker may execute arbitrary code with system privileges on systems with Directory Service enabled",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8",
"description": "An issue existed in the directory server's handling of messages from the network. By sending a maliciously crafted message, a remote attacker could cause the directory server to terminate or execute arbitrary code with system privileges. This issue was addressed through improved bounds checking. This issue does not affect OS X Lion or OS X Mountain Lion systems.",
"update": "",
"module": "Directory Service",
"id": "CVE-2013-0984 ",
"credit": "Nicolas Economou of Core Security",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "A local user may disable FileVault",
"available": "OS X Mountain Lion v10.8 to v10.8.3",
"description": "A local user who is not an administrator may disable FileVault using the command-line. This issue was addressed by adding additional authentication.",
"update": "",
"module": "Disk Management",
"id": "CVE-2013-0985",
"credit": "",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Viewing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "A buffer overflow existed in the handling of 'enof' atoms. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-0986 ",
"credit": "Tom Gallagher (Microsoft) & Paul Bates (Microsoft) working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Viewing a maliciously crafted QTIF file may lead to an unexpected application termination or arbitrary code execution",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "A memory corruption issue existed in the handling of QTIF files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-0987 ",
"credit": "roob working with iDefense VCP",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Viewing a maliciously crafted FPX file may lead to an unexpected application termination or arbitrary code execution",
"available": "Mac OS X 10.6.8, Mac OS X Server 10.6.8, OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "A buffer overflow existed in the handling of FPX files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-0988 ",
"credit": "G. Geshev working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Playing a maliciously crafted MP3 file may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mountain Lion v10.8 to v10.8.3",
"description": "A buffer overflow existed in the handling of MP3 files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "QuickTime",
"id": "CVE-2013-0989 ",
"credit": "G. Geshev working with HP's Zero Day Initiative",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "An authenticated user may be able to write files outside the shared directory",
"available": "OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"description": "If SMB file sharing is enabled, an authenticated user may be able to write files outside the shared directory. This issue was addressed through improved access control.",
"update": "",
"module": "SMB",
"id": "CVE-2013-0990 ",
"credit": "Ward van Wanrooij",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Viewing a maliciously crafted movie file may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Lion v10.7 to v10.7.5, OS X Lion Server v10.7 to v10.7.5, OS X Mountain Lion v10.8 to v10.8.3",
"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": "CoreMedia Playback",
"id": "CVE-2013-1024 ",
"credit": "Richard Kuo and Billy Suguitan of Triemt Corporation",
"page": "http://support.apple.com/en-us/HT5784"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_45",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1500",
"credit": "",
"page": "http://support.apple.com/en-us/HT5797"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_45",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-1571",
"credit": "",
"page": "http://support.apple.com/en-us/HT5797"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_45",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2407",
"credit": "",
"page": "http://support.apple.com/en-us/HT5797"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_45",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2412",
"credit": "",
"page": "http://support.apple.com/en-us/HT5797"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_45",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2437",
"credit": "",
"page": "http://support.apple.com/en-us/HT5797"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_45",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2442",
"credit": "",
"page": "http://support.apple.com/en-us/HT5797"
},
{
"impact": "Multiple vulnerabilities in Java 1.6.0_45",
"available": "Mac OS X v10.6.8, Mac OS X Server v10.6.8, OS X Lion v10.7 or later, OS X Lion Server v10.7 or later, OS X Mountain Lion v10.8 or later",
"description": "",
"update": "",
"module": "Java",
"id": "CVE-2013-2443",
"credit": "",
"page": "http://support.apple.com/en-us/HT5797"