-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path2015.json
8202 lines (8202 loc) · 452 KB
/
2015.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": "Custom firewall rules may not be enforced",
"available": "OS X Yosemite v10.10 or later",
"description": "An incorrect path was referenced in the firewall configuration files. This issue was addressed by correcting the path to point to the correct configuration file.",
"update": "",
"module": "Firewall",
"id": "CVE-2015-1150 ",
"credit": "Phil Schumm of the Research Computing Group, University of Chicago",
"page": "https://support.apple.com/en-us/HT204201"
},
{
"impact": "Access controls may not be enforced on mobile devices",
"available": "OS X Yosemite v10.10 or later",
"description": "Access controls for the Activity and People wiki pages were not enforced on iPad clients. This issue was addressed by improving access control verification.",
"update": "",
"module": "Wiki Server",
"id": "CVE-2015-1151",
"credit": "",
"page": "https://support.apple.com/en-us/HT204201"
},
{
"impact": "A person with a privileged network position may cause a denial of service",
"available": "OS X Mavericks v10.9.5",
"description": "A race condition issue existed in the handling of IPv6 packets. This issue was addressed through improved lock state checking.",
"update": "",
"module": "Kernel",
"id": "CVE-2011-2391",
"credit": "",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Some third-party applications with non-secure text entry and mouse events may log those events",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "Due to the combination of an uninitialized variable and an application's custom allocator, non-secure text entry and mouse events may have been logged. This issue was addressed by ensuring that logging is off by default. This issue did not affect systems prior to OS X Yosemite.",
"update": "",
"module": "CoreGraphics",
"id": "CVE-2014-1595 ",
"credit": "Steven Michaud of Mozilla working with Kent Howard",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A local user may be able to determine kernel memory layout",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple uninitialized memory issues existed in the network statistics interface, which led to the disclosure of kernel memory content. This issue was addressed through additional memory initialization.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-4371 ",
"credit": "Fermin J. Serna of the Google Security Team",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "An integer overflow existed in the handling of IOKit functions. This issue was addressed through improved validation of IOKit API arguments.",
"update": "",
"module": "IOKit",
"id": "CVE-2014-4389 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A local user may be able to determine kernel memory layout",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple uninitialized memory issues existed in the network statistics interface, which led to the disclosure of kernel memory content. This issue was addressed through additional memory initialization.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-4419 ",
"credit": "Fermin J. Serna of the Google Security Team",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A local user may be able to determine kernel memory layout",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple uninitialized memory issues existed in the network statistics interface, which led to the disclosure of kernel memory content. This issue was addressed through additional memory initialization.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-4420 ",
"credit": "Fermin J. Serna of the Google Security Team",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A local user may be able to determine kernel memory layout",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple uninitialized memory issues existed in the network statistics interface, which led to the disclosure of kernel memory content. This issue was addressed through additional memory initialization.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-4421 ",
"credit": "Fermin J. Serna of the Google Security Team",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A remote attacker may be able to determine all the network addresses of the system",
"available": "OS X Mavericks v10.9.5",
"description": "The AFP file server supported a command which returned all the network addresses of the system. This issue was addressed by removing the addresses from the result.",
"update": "",
"module": "AFP Server",
"id": "CVE-2014-4426 ",
"credit": "Craig Young of Tripwire VERT",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Website cache may not be fully cleared after leaving private browsing",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "A privacy issue existed where browsing data could remain in the cache after leaving private browsing. This issue was addressed through a change in caching behavior.",
"update": "",
"module": "CFNetwork Cache",
"id": "CVE-2014-4460",
"credit": "",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A validation issue existed in the handling of certain metadata fields of IOSharedDataQueue objects. This issue was addressed through relocation of the metadata.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-4461 ",
"credit": "@PanguTeam",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Opening a maliciously crafted PDF file 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 and v10.10.1",
"description": "An integer overflow existed in the handling of PDF files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "CoreGraphics",
"id": "CVE-2014-4481 ",
"credit": "Felipe Andres Manzano of the Binamuse VRT, via the iSIGHT Partners GVP Program",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Opening a maliciously crafted PDF file 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 and v10.10.1",
"description": "A buffer overflow existed in the handling of font files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "FontParser",
"id": "CVE-2014-4483 ",
"credit": "Apple",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Processing a maliciously crafted .dfont file 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 and v10.10.1",
"description": "A memory corruption issue existed in the handling of .dfont files. This issue was addressed through improved bounds checking.",
"update": "",
"module": "FontParser",
"id": "CVE-2014-4484 ",
"credit": "Gaurav Baruah working with HP's Zero Day Initiative",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Viewing a maliciously crafted XML file may lead to an unexpected application termination or arbitrary code execution",
"available": "OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A buffer overflow existed in the XML parser. This issue was addressed through improved bounds checking.",
"update": "",
"module": "Foundation",
"id": "CVE-2014-4485 ",
"credit": "Apple",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A null pointer dereference existed in IOAcceleratorFamily's handling of certain IOService userclient types. This issue was addressed through improved validation of IOAcceleratorFamily contexts.",
"update": "",
"module": "IOAcceleratorFamily",
"id": "CVE-2014-4486 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A buffer overflow existed in IOHIDFamily. This issue was addressed with improved bounds checking.",
"update": "",
"module": "IOHIDFamily",
"id": "CVE-2014-4487 ",
"credit": "TaiG Jailbreak Team",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A validation issue existed in IOHIDFamily's handling of resource queue metadata. This issue was addressed through improved validation of metadata.",
"update": "",
"module": "IOHIDFamily",
"id": "CVE-2014-4488 ",
"credit": "Apple",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A null pointer dereference existed in IOHIDFamily's handling of event queues. This issue was addressed through improved validation of IOHIDFamily event queue initialization.",
"update": "",
"module": "IOHIDFamily",
"id": "CVE-2014-4489 ",
"credit": "@beist",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Maliciously crafted or compromised applications may be able to determine addresses in the kernel",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "An information disclosure issue existed in the handling of APIs related to kernel extensions. Responses containing an OSBundleMachOHeaders key may have included kernel addresses, which may aid in bypassing address space layout randomization protection. This issue was addressed by unsliding the addresses before returning them.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-4491 ",
"credit": "@PanguTeam, Stefan Esser",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious, sandboxed app can compromise the networkd daemon",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple type confusion issues existed in networkd's handling of interprocess communication. By sending networkd a maliciously formatted message, it may have been possible to execute arbitrary code as the networkd process. The issue is addressed through additional type checking.",
"update": "",
"module": "libnetcore",
"id": "CVE-2014-4492 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "Specifying a custom cache mode allowed writing to kernel read-only shared memory segments. This issue was addressed by not granting write permissions as a side-effect of some custom cache modes.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-4495 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5",
"description": "An integer signedness error existed in IOBluetoothFamily which allowed manipulation of kernel memory. This issue was addressed through improved bounds checking. This issue does not affect OS X Yosemite systems.",
"update": "",
"module": "Bluetooth",
"id": "CVE-2014-4497",
"credit": "",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious Thunderbolt device may be able to affect firmware flashing",
"available": "",
"description": "Thunderbolt devices could modify the host firmware if connected during an EFI update. This issue was addressed by not loading option ROMs during updates.",
"update": "",
"module": "CPU Software",
"id": "CVE-2014-4498 ",
"credit": "Trammell Hudson of Two Sigma Investments",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "An attacker with access to a system may be able to recover Apple ID credentials",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "An issue existed in the handling of App Store logs. The App Store process could log Apple ID credentials in the log when additional logging was enabled. This issue was addressed by disallowing logging of credentials.",
"update": "",
"module": "CommerceKit Framework",
"id": "CVE-2014-4499 ",
"credit": "Sten Petersen",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "The Kerberos libgssapi library returned a context token with a dangling pointer. This issue was addressed by improving state management.",
"update": "",
"module": "Kerberos",
"id": "CVE-2014-5352",
"credit": "",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Using the command line ftp tool to fetch files from a malicious http server may lead to arbitrary code execution",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A command injection issue existed in the handling of HTTP redirects. This issue was addressed through improved validation of special characters.",
"update": "",
"module": "lukemftp",
"id": "CVE-2014-8517",
"credit": "",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Opening a maliciously crafted PDF file 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",
"description": "A memory corruption issue existed in the handling of PDF files. The issue was addressed through improved bounds checking. This issue does not affect OS X Yosemite systems.",
"update": "",
"module": "CoreGraphics",
"id": "CVE-2014-8816 ",
"credit": "Mike Myers, of Digital Operatives LLC",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple type confusion issues existed in coresymbolicationd's handling of XPC messages. These issues were addressed through improved type checking.",
"update": "",
"module": "CoreSymbolication",
"id": "CVE-2014-8817 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Multiple vulnerabilities in Intel graphics driver",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple vulnerabilities existed in the Intel graphics driver, the most serious of which may have led to arbitrary code execution with system privileges. This update addresses the issues through additional bounds checks.",
"update": "",
"module": "Intel Graphics Driver",
"id": "CVE-2014-8819 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Multiple vulnerabilities in Intel graphics driver",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple vulnerabilities existed in the Intel graphics driver, the most serious of which may have led to arbitrary code execution with system privileges. This update addresses the issues through additional bounds checks.",
"update": "",
"module": "Intel Graphics Driver",
"id": "CVE-2014-8820 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Multiple vulnerabilities in Intel graphics driver",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple vulnerabilities existed in the Intel graphics driver, the most serious of which may have led to arbitrary code execution with system privileges. This update addresses the issues through additional bounds checks.",
"update": "",
"module": "Intel Graphics Driver",
"id": "CVE-2014-8821 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Executing a malicious application may result in arbitrary code execution within the kernel",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A bounds checking issue existed in a user client vended by the IOHIDFamily driver which allowed a malicious application to overwrite arbitrary portions of the kernel address space. The issue is addressed by removing the vulnerable user client method.",
"update": "",
"module": "IOHIDFamily",
"id": "CVE-2014-8822 ",
"credit": "Vitaliy Toropov working with HP's Zero Day Initiative",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A privileged application may be able to read arbitrary data from kernel memory",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "A memory access issue existed in the handling of IOUSB controller user client functions. This issue was addressed through improved argument validation.",
"update": "",
"module": "IOUSBFamily",
"id": "CVE-2014-8823 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A validation issue existed in the handling of certain metadata fields of IODataQueue objects. This issue was addressed through improved validation of metadata.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-8824 ",
"credit": "@PanguTeam",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A local attacker can spoof directory service responses to the kernel, elevate privileges, or gain kernel execution",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "Issues existed in identitysvc validation of the directory service resolving process, flag handling, and error handling. This issue was addressed through improved validation.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-8825 ",
"credit": "Alex Radocea of CrowdStrike",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious JAR file may bypass Gatekeeper checks",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "An issue existed in the handling of application launches which allowed certain malicious JAR files to bypass Gatekeeper checks. This issue was addressed through improved handling of file type metadata.",
"update": "",
"module": "LaunchServices",
"id": "CVE-2014-8826 ",
"credit": "Hernan Ochoa of Amplia Security",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A Mac may not lock immediately upon wake",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "An issue existed in the rendering of the lock screen. This issue was address through improved screen rendering while locked.",
"update": "",
"module": "LoginWindow",
"id": "CVE-2014-8827 ",
"credit": "Xavier Bertels of Mono, and multiple OS X seed testers",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A sandboxed process may be able to circumvent sandbox restrictions",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5",
"description": "A design issue existed in the caching of sandbox profiles which allowed sandboxed applications to gain write access to the cache. This issue was addressed by restricting write access to paths containing a \u201ccom.apple.sandbox\u201d segment. This issue does not affect OS X Yosemite v10.10 or later.",
"update": "",
"module": "Sandbox",
"id": "CVE-2014-8828 ",
"credit": "Apple",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application could execute arbitrary code leading to compromise of user information",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5",
"description": "Multiple out of bounds write issues existed in SceneKit. These issues were addressed through improved bounds checking.",
"update": "",
"module": "SceneKit",
"id": "CVE-2014-8829 ",
"credit": "Jose Duart of the Google Security Team",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "An app may access keychain items belonging to other apps",
"available": "OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "An access control issue existed in the Keychain. Applications signed with self-signed or Developer ID certificates could access keychain items whose access control lists were based on keychain groups. This issue was addressed by validating the signing identity when granting access to keychain groups.",
"update": "",
"module": "security_taskgate",
"id": "CVE-2014-8831 ",
"credit": "Apple",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Spotlight may save unexpected information to an external hard drive",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "An issue existed in Spotlight where memory contents may have been written to external hard drives when indexing. This issue was addressed with better memory management.",
"update": "",
"module": "Spotlight",
"id": "CVE-2014-8832 ",
"credit": "F-Secure",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Spotlight may display results for files not belonging to the user",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "A deserialization issue existed in Spotlight's handling of permission caches. A user performing a Spotlight query may have been shown search results referencing files for which they don't have sufficient privileges to read. This issue was addressed with improved bounds checking.",
"update": "",
"module": "SpotlightIndex",
"id": "CVE-2014-8833 ",
"credit": "David J Peacock, Independent Technology Consultant",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Printing-related preference files may contain sensitive information about PDF documents",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "OS X Yosemite v10.10 addressed an issue in the handling of password-protected PDF files created from the Print dialog where passwords may have been included in printing preference files. This update removes such extraneous information that may have been present in printing preference files.",
"update": "",
"module": "UserAccountUpdater",
"id": "CVE-2014-8834 ",
"credit": "Apple",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with root privileges",
"available": "OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "A type confusion vulnerability existed in sysmond that allowed a local application to escalate privileges. The issue was addressed with improved type checking.",
"update": "",
"module": "sysmond",
"id": "CVE-2014-8835 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "An error existed in the Bluetooth driver that allowed a malicious application to control the size of a write to kernel memory. The issue was addressed through additional input validation.",
"update": "",
"module": "Bluetooth",
"id": "CVE-2014-8836 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple security issues existed in the Bluetooth driver, allowing a malicious application to execute arbitrary code with system privilege. The issues were addressed through additional input validation.",
"update": "",
"module": "Bluetooth",
"id": "CVE-2014-8837 ",
"credit": "Roberto Paleari and Aristide Fattori of Emaze Networks",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A downloaded application signed with a revoked Developer ID certificate may pass Gatekeeper checks",
"available": "OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "An issue existed with how cached application certificate information was evaluated. This issue was addressed with cache logic improvements.",
"update": "",
"module": "Security",
"id": "CVE-2014-8838 ",
"credit": "Apple",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "The sender of an email could determine the IP address of the recipient",
"available": "OS X Yosemite v10.10 and v10.10.1",
"description": "Spotlight did not check the status of Mail\u2019s \"Load remote content in messages\" setting. This issue was addressed by improving configuration checking.",
"update": "",
"module": "Spotlight",
"id": "CVE-2014-8839 ",
"credit": "John Whitehead of The New York Times, Frode Moe of LastFriday.no",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "Using the ntp daemon with cryptographic authentication enabled may lead to information leaks",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 and v10.10.1",
"description": "Multiple input validation issues existed in ntpd. These issues were addressed through improved data validation.",
"update": "",
"module": "ntpd",
"id": "CVE-2014-9297",
"credit": "",
"page": "https://support.apple.com/en-us/HT204244"
},
{
"impact": "A local user may be able to execute unsigned code",
"available": "iPhone 4s and later, iPod touch (5th 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 through improved validation of segment sizes.",
"update": "",
"module": "dyld",
"id": "CVE-2014-4455 ",
"credit": "TaiG Jailbreak Team",
"page": "https://support.apple.com/en-us/HT204245"
},
{
"impact": "Style sheets are loaded cross-origin which may allow for data exfiltration",
"available": "iPhone 4s and later, iPod touch (5th generation) and later, iPad 2 and later",
"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": "https://support.apple.com/en-us/HT204245"
},
{
"impact": "Visiting a website that frames malicious content may lead to UI spoofing",
"available": "iPhone 4s and later, iPod touch (5th generation) and later, iPad 2 and later",
"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-4467 ",
"credit": "Jordan Milne",
"page": "https://support.apple.com/en-us/HT204245"
},
{
"impact": "A maliciously crafted afc command may allow access to protected parts of the filesystem",
"available": "iPhone 4s and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "A vulnerability existed in the symbolic linking mechanism of afc. This issue was addressed by adding additional path checks.",
"update": "",
"module": "AppleFileConduit",
"id": "CVE-2014-4480 ",
"credit": "TaiG Jailbreak Team",
"page": "https://support.apple.com/en-us/HT204245"
},
{
"impact": "A malicious enterprise-signed application may be able to take control of the local container for applications already on a device",
"available": "iPhone 4s and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "A vulnerability existed in the application installation process. This was addressed by preventing enterprise applications from overriding existing applications in specific scenarios.",
"update": "",
"module": "MobileInstallation",
"id": "CVE-2014-4493 ",
"credit": "Hui Xue and Tao Wei of FireEye, Inc.",
"page": "https://support.apple.com/en-us/HT204245"
},
{
"impact": "Enterprise-signed applications may be launched without prompting for trust",
"available": "iPhone 4s and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "An issue existed in determining when to prompt for trust when first opening an enterprise-signed application. This issue was addressed through improved code signature validation.",
"update": "",
"module": "Springboard",
"id": "CVE-2014-4494 ",
"credit": "Song Jin, Hui Xue, and Tao Wei of FireEye, Inc.",
"page": "https://support.apple.com/en-us/HT204245"
},
{
"impact": "A website may be able to bypass sandbox restrictions using the iTunes Store",
"available": "iPhone 4s and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "An issue existed in the handling of URLs redirected from Safari to the iTunes Store that could allow a malicious website to bypass Safari's sandbox restrictions. The issue was addressed with improved filtering of URLs opened by the iTunes Store.",
"update": "",
"module": "iTunes Store",
"id": "CVE-2014-8840 ",
"credit": "lokihardt@ASRT working with HP's Zero Day Initiative",
"page": "https://support.apple.com/en-us/HT204245"
},
{
"impact": "Maliciously crafted or compromised applications may be able to determine addresses in the kernel",
"available": "OS X Yosemite v10.10.2",
"description": "The mach_port_kobject kernel interface leaked kernel addresses and heap permutation value, which may aid in bypassing address space layout randomization protection. This was addressed by disabling the mach_port_kobject interface in production configurations.",
"update": "",
"module": "Kernel",
"id": "CVE-2014-4496 ",
"credit": "TaiG Jailbreak Team",
"page": "https://support.apple.com/en-us/HT204413"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, and OS X Yosemite v10.10.2",
"description": "An off by one issue existed in IOAcceleratorFamily. This issue was addressed through improved bounds checking.",
"update": "",
"module": "IOAcceleratorFamily",
"id": "CVE-2015-1066 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204413"
},
{
"impact": "A remote attacker can cause a device to unexpectedly restart",
"available": "iPhone 4s and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "A null pointer dereference issue existed in CoreTelephony's handling of Class 0 SMS messages. This issue was addressed through improved message validation.",
"update": "",
"module": "CoreTelephony",
"id": "CVE-2015-1063 ",
"credit": "Roman Digerberg, Sweden",
"page": "https://support.apple.com/en-us/HT204423"
},
{
"impact": "A person with physical access to the device may be able to see the home screen of the device even if the device is not activated",
"available": "iPhone 4s and later, iPod touch (5th generation) and later, iPad 2 and later",
"description": "An unexpected application termination during activation could have caused the device to show the home screen. The issue was addressed through improved error handling during activation.",
"update": "",
"module": "Springboard",
"id": "CVE-2015-1064",
"credit": "",
"page": "https://support.apple.com/en-us/HT204423"
},
{
"impact": "An malicious application may be able to create folders in trusted locations in the file system",
"available": "Apple TV 3rd generation and later",
"description": "An issue existed in the developer disk mounting logic which resulted in invalid disk image folders not being deleted. This was addressed through improved error handling.",
"update": "",
"module": "Apple TV",
"id": "CVE-2015-1062 ",
"credit": "TaiG Jailbreak Team",
"page": "https://support.apple.com/en-us/HT204426"
},
{
"impact": "Multiple vulnerabilities in Apache Subversion",
"available": "OS X Mavericks v10.9.4 or later",
"description": "Multiple vulnerabilities existed in Apache Subversion, the most serious of which may have allowed an attacker with a privileged position to spoof SSL servers via a crafted certificate. These issues were addressed by updating Apache Subversion to version 1.7.19.",
"update": "",
"module": "subversion",
"id": "CVE-2014-3522",
"credit": "",
"page": "https://support.apple.com/en-us/HT204427"
},
{
"impact": "Multiple vulnerabilities in Apache Subversion",
"available": "OS X Mavericks v10.9.4 or later",
"description": "Multiple vulnerabilities existed in Apache Subversion, the most serious of which may have allowed an attacker with a privileged position to spoof SSL servers via a crafted certificate. These issues were addressed by updating Apache Subversion to version 1.7.19.",
"update": "",
"module": "subversion",
"id": "CVE-2014-3528",
"credit": "",
"page": "https://support.apple.com/en-us/HT204427"
},
{
"impact": "Multiple vulnerabilities in Apache Subversion",
"available": "OS X Mavericks v10.9.4 or later",
"description": "Multiple vulnerabilities existed in Apache Subversion, the most serious of which may have allowed an attacker with a privileged position to spoof SSL servers via a crafted certificate. These issues were addressed by updating Apache Subversion to version 1.7.19.",
"update": "",
"module": "subversion",
"id": "CVE-2014-3580",
"credit": "",
"page": "https://support.apple.com/en-us/HT204427"
},
{
"impact": "Multiple vulnerabilities in Apache Subversion",
"available": "OS X Mavericks v10.9.4 or later",
"description": "Multiple vulnerabilities existed in Apache Subversion, the most serious of which may have allowed an attacker with a privileged position to spoof SSL servers via a crafted certificate. These issues were addressed by updating Apache Subversion to version 1.7.19.",
"update": "",
"module": "subversion",
"id": "CVE-2014-8108",
"credit": "",
"page": "https://support.apple.com/en-us/HT204427"
},
{
"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": "https://support.apple.com/en-us/HT204427"
},
{
"impact": "Inconsistent user interface may prevent users from discerning a phishing attack",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, and OS X Yosemite v10.10.2",
"description": "A user interface inconsistency existed in Safari that allowed an attacker to misrepresent the URL. This issue was addressed through improved user interface consistency checks.",
"update": "",
"module": "WebKit",
"id": "CVE-2015-1084 ",
"credit": "Apple",
"page": "https://support.apple.com/en-us/HT204560"
},
{
"impact": "A malicious application may be able to execute arbitrary code with system privileges",
"available": "OS X Yosemite v10.10.2",
"description": "A type confusion issue existed in IOSurface's handling of serialized objects. The issue was addressed through additional type checking.",
"update": "",
"module": "IOSurface",
"id": "CVE-2015-1061 ",
"credit": "Ian Beer of Google Project Zero",
"page": "https://support.apple.com/en-us/HT204563"
},
{
"impact": "An attacker with a privileged network position may be able to execute arbitrary code",
"available": "OS X Yosemite v10.10.2",
"description": "Multiple buffer overflows existed in the handling of data during iCloud Keychain recovery. These issues were addressed through improved bounds checking.",
"update": "",
"module": "iCloud Keychain",
"id": "CVE-2015-1065 ",
"credit": "Andrey Belenko of NowSecure",
"page": "https://support.apple.com/en-us/HT204563"
},
{
"impact": "Users' browsing history may not be completely purged",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, and OS X Yosemite v10.10.2",
"description": "A state management issue existed in Safari that resulted in users' browsing history not being purged from history.plist. This issue was addressed by improved state management.",
"update": "",
"module": "Safari",
"id": "CVE-2015-1112 ",
"credit": "William Breuer, The Netherlands",
"page": "https://support.apple.com/en-us/HT204658"
},
{
"impact": "Visiting a maliciously crafted website may lead to resources of another origin being accessed",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, and OS X Yosemite v10.10.2",
"description": "An issue existed in WebKit's credential handling for FTP URLs. This issue was addressed by improved URL decoding.",
"update": "",
"module": "WebKit",
"id": "CVE-2015-1126 ",
"credit": "Jouko Pynnonen of Klikki Oy",
"page": "https://support.apple.com/en-us/HT204658"
},
{
"impact": "Users' browsing history in private mode may be indexed",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, and OS X Yosemite v10.10.2",
"description": "A state management issue existed in Safari that inadvertently indexed users' browsing history when in private browsing mode. This issue was addressed by improved state management.",
"update": "",
"module": "WebKit",
"id": "CVE-2015-1127 ",
"credit": "Tyler C",
"page": "https://support.apple.com/en-us/HT204658"
},
{
"impact": "Notifications preferences may reveal users' browsing history in private browsing mode",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, and OS X Yosemite v10.10.2",
"description": "Responding to push notification requests in private browsing mode revealed users' browsing history. This issue was addressed by disabling push notification prompts in private browsing mode.",
"update": "",
"module": "Safari",
"id": "CVE-2015-1128 ",
"credit": "Joseph Winn of Credit Union Geek",
"page": "https://support.apple.com/en-us/HT204658"
},
{
"impact": "Multiple vulnerabilities in Apache",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in Apache versions prior to 2.4.10 and 2.2.29, including one that may allow a remote attacker to execute arbitrary code. These issues were addressed by updating Apache to versions 2.4.10 and 2.2.29",
"update": "",
"module": "apache",
"id": "CVE-2013-6438",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2013-6712",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in Apache",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in Apache versions prior to 2.4.10 and 2.2.29, including one that may allow a remote attacker to execute arbitrary code. These issues were addressed by updating Apache to versions 2.4.10 and 2.2.29",
"update": "",
"module": "apache",
"id": "CVE-2014-0098",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in Apache",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in Apache versions prior to 2.4.10 and 2.2.29, including one that may allow a remote attacker to execute arbitrary code. These issues were addressed by updating Apache to versions 2.4.10 and 2.2.29",
"update": "",
"module": "apache",
"id": "CVE-2014-0117",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in Apache",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in Apache versions prior to 2.4.10 and 2.2.29, including one that may allow a remote attacker to execute arbitrary code. These issues were addressed by updating Apache to versions 2.4.10 and 2.2.29",
"update": "",
"module": "apache",
"id": "CVE-2014-0118",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-0207",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in Apache",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in Apache versions prior to 2.4.10 and 2.2.29, including one that may allow a remote attacker to execute arbitrary code. These issues were addressed by updating Apache to versions 2.4.10 and 2.2.29",
"update": "",
"module": "apache",
"id": "CVE-2014-0226",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in Apache",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in Apache versions prior to 2.4.10 and 2.2.29, including one that may allow a remote attacker to execute arbitrary code. These issues were addressed by updating Apache to versions 2.4.10 and 2.2.29",
"update": "",
"module": "apache",
"id": "CVE-2014-0231",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-0237",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-0238",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-2497",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3478",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3479",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3480",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3487",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3538",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in OpenSSL 0.9.8zc, including one that may allow an attacker to intercept connections to a server that supports export-grade ciphers. These issues were addressed by updating OpenSSL to version 0.9.8zd.",
"update": "",
"module": "OpenSSL",
"id": "CVE-2014-3569",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in OpenSSL 0.9.8zc, including one that may allow an attacker to intercept connections to a server that supports export-grade ciphers. These issues were addressed by updating OpenSSL to version 0.9.8zd.",
"update": "",
"module": "OpenSSL",
"id": "CVE-2014-3570",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in OpenSSL 0.9.8zc, including one that may allow an attacker to intercept connections to a server that supports export-grade ciphers. These issues were addressed by updating OpenSSL to version 0.9.8zd.",
"update": "",
"module": "OpenSSL",
"id": "CVE-2014-3571",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in OpenSSL",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in OpenSSL 0.9.8zc, including one that may allow an attacker to intercept connections to a server that supports export-grade ciphers. These issues were addressed by updating OpenSSL to version 0.9.8zd.",
"update": "",
"module": "OpenSSL",
"id": "CVE-2014-3572",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3587",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3597",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3668",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3669",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"
},
{
"impact": "Multiple vulnerabilities in PHP",
"available": "OS X Mountain Lion v10.8.5, OS X Mavericks v10.9.5, OS X Yosemite v10.10 to v10.10.2",
"description": "Multiple vulnerabilities existed in PHP versions prior to 5.3.29, 5.4.38, and 5.5.20, including one which may have led to arbitrary code execution. This update addresses the issues by updating PHP to versions 5.3.29, 5.4.38, and 5.5.20.",
"update": "",
"module": "PHP",
"id": "CVE-2014-3670",
"credit": "",
"page": "https://support.apple.com/en-us/HT204659"