-
Notifications
You must be signed in to change notification settings - Fork 12
/
2023.json
6130 lines (6130 loc) · 296 KB
/
2023.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": "Processing a file may lead to a denial-of-service or potentially disclose memory contents",
"available": "macOS Big Sur and macOS Monterey",
"description": "The issue was addressed with improved checks.",
"update": "December 21, 2023",
"module": "WebKit",
"id": "CVE-2014-1745",
"credit": "an anonymous researcher",
"bugzilla": "249434",
"page": "https://support.apple.com/en-us/HT213671",
"rsr": ""
},
{
"impact": "A remote user may be able to cause unexpected app termination or arbitrary code execution",
"available": "macOS Sonoma",
"description": "This issue was addressed with improved checks.",
"update": "",
"module": "ncurses",
"id": "CVE-2020-19185",
"credit": "",
"page": "https://support.apple.com/en-us/HT214036",
"rsr": ""
},
{
"impact": "A remote user may be able to cause unexpected app termination or arbitrary code execution",
"available": "macOS Sonoma",
"description": "This issue was addressed with improved checks.",
"update": "",
"module": "ncurses",
"id": "CVE-2020-19186",
"credit": "",
"page": "https://support.apple.com/en-us/HT214036",
"rsr": ""
},
{
"impact": "A remote user may be able to cause unexpected app termination or arbitrary code execution",
"available": "macOS Sonoma",
"description": "This issue was addressed with improved checks.",
"update": "",
"module": "ncurses",
"id": "CVE-2020-19187",
"credit": "",
"page": "https://support.apple.com/en-us/HT214036",
"rsr": ""
},
{
"impact": "A remote user may be able to cause unexpected app termination or arbitrary code execution",
"available": "macOS Sonoma",
"description": "This issue was addressed with improved checks.",
"update": "",
"module": "ncurses",
"id": "CVE-2020-19188",
"credit": "",
"page": "https://support.apple.com/en-us/HT214036",
"rsr": ""
},
{
"impact": "A remote user may be able to cause unexpected app termination or arbitrary code execution",
"available": "macOS Sonoma",
"description": "This issue was addressed with improved checks.",
"update": "",
"module": "ncurses",
"id": "CVE-2020-19189",
"credit": "",
"page": "https://support.apple.com/en-us/HT214036",
"rsr": ""
},
{
"impact": "A remote user may be able to cause unexpected app termination or arbitrary code execution",
"available": "macOS Sonoma",
"description": "This issue was addressed with improved checks.",
"update": "",
"module": "ncurses",
"id": "CVE-2020-19190",
"credit": "",
"page": "https://support.apple.com/en-us/HT214036",
"rsr": ""
},
{
"impact": "An HTML document may be able to render iframes with sensitive user information",
"available": "macOS Big Sur and macOS Monterey",
"description": "This issue was addressed with improved iframe sandbox enforcement.",
"update": "March 16, 2023",
"module": "WebKit",
"id": "CVE-2022-0108",
"credit": "",
"bugzilla": "241753",
"page": "https://support.apple.com/en-us/HT213638",
"rsr": ""
},
{
"impact": "An application may be able to execute arbitrary code with kernel privileges",
"available": "macOS Big Sur",
"description": "A use after free issue was addressed with improved memory management.",
"update": "",
"module": "AppleAVD",
"id": "CVE-2022-26702",
"credit": "an anonymous researcher, Antonio Zekic (@antoniozekic), and John Aakerblom (@jaakerblom)",
"page": "https://support.apple.com/en-us/HT213675",
"rsr": ""
},
{
"impact": "Multiple issues in curl",
"available": "macOS Monterey",
"description": "Multiple issues were addressed by updating to curl version 7.86.0.",
"update": "",
"module": "curl",
"id": "CVE-2022-32221",
"credit": "",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code with kernel privileges",
"available": "macOS Monterey",
"description": "A type confusion issue was addressed with improved checks.",
"update": "",
"module": "DriverKit",
"id": "CVE-2022-32915",
"credit": "Tommy Muir (@Muirey03)",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "Parsing a file may lead to disclosure of user information",
"available": "macOS Monterey 12.5 and later",
"description": "The issue was addressed with improved checks.",
"update": "",
"module": "otool",
"id": "CVE-2022-32920",
"credit": "hjy79425575",
"page": "https://support.apple.com/en-us/HT213883",
"rsr": ""
},
{
"impact": "Multiple issues in curl",
"available": "macOS Monterey",
"description": "Multiple issues were addressed by updating to curl version 7.85.0.",
"update": "",
"module": "curl",
"id": "CVE-2022-35252",
"credit": "",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "Multiple issues in curl",
"available": "macOS Monterey",
"description": "Multiple issues were addressed by updating to curl version 7.86.0.",
"update": "",
"module": "curl",
"id": "CVE-2022-35260",
"credit": "",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Ventura",
"description": "A use after free issue was addressed with improved memory management.",
"update": "",
"module": "Vim",
"id": "CVE-2022-3705",
"credit": "",
"page": "https://support.apple.com/en-us/HT213605",
"rsr": ""
},
{
"impact": "Processing a maliciously crafted image may lead to a denial of service",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "The issue was addressed with improved memory handling.",
"update": "October 31, 2023",
"module": "ImageIO",
"id": "CVE-2022-3970",
"credit": "found by OSS-Fuzz",
"page": "https://support.apple.com/en-us/HT213841",
"rsr": ""
},
{
"impact": "An app may be able to access mail folder attachments through a temporary directory used during compression",
"available": "macOS Monterey",
"description": "An access issue was addressed with improved access restrictions.",
"update": "May 11, 2023",
"module": "Mail",
"id": "CVE-2022-42834",
"credit": "Wojciech Regu\u0142a (@_r3ggi) of SecuRing",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "Processing maliciously crafted web content may lead to arbitrary code execution. Apple is aware of a report that this issue may have been actively exploited against versions of iOS released before iOS 15.1.",
"available": "iPhone 5s, iPhone 6, iPhone 6 Plus, iPad Air, iPad mini 2, iPad mini 3, and iPod touch (6th generation)",
"description": "A type confusion issue was addressed with improved state handling.",
"update": "",
"module": "WebKit",
"id": "CVE-2022-42856",
"credit": "Cl\u00e9ment Lecigne of Google's Threat Analysis Group",
"bugzilla": "248266",
"page": "https://support.apple.com/en-us/HT213597",
"rsr": ""
},
{
"impact": "Multiple issues in curl",
"available": "macOS Monterey",
"description": "Multiple issues were addressed by updating to curl version 7.86.0.",
"update": "",
"module": "curl",
"id": "CVE-2022-42915",
"credit": "",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "Multiple issues in curl",
"available": "macOS Monterey",
"description": "Multiple issues were addressed by updating to curl version 7.86.0.",
"update": "",
"module": "curl",
"id": "CVE-2022-42916",
"credit": "",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "Multiple issues in curl",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating curl.",
"update": "",
"module": "curl",
"id": "CVE-2022-43551",
"credit": "",
"page": "https://support.apple.com/en-us/HT213670",
"rsr": ""
},
{
"impact": "Multiple issues in curl",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating curl.",
"update": "",
"module": "curl",
"id": "CVE-2022-43552",
"credit": "",
"page": "https://support.apple.com/en-us/HT213670",
"rsr": ""
},
{
"impact": "Visiting a malicious website may lead to address bar spoofing",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "A spoofing issue existed in the handling of URLs. This issue was addressed with improved input validation.",
"update": "May 1, 2023, updated December 21, 2023",
"module": "WebKit",
"id": "CVE-2022-46705",
"credit": "Hyeon Park (@tree_segment) of Team ApplePIE",
"bugzilla": "247287",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "A person with physical access to an iOS device may be able to view the last image used in Magnifier from the lock screen",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "This issue was addressed by restricting options offered on a locked device.",
"update": "August 1, 2023",
"module": "Magnifier",
"id": "CVE-2022-46724",
"credit": "Abhay Kailasia (@abhay_kailasia) of Lakshmi Narain College Of Technology Bhopal",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "Visiting a malicious website may lead to address bar spoofing",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "A spoofing issue existed in the handling of URLs. This issue was addressed with improved input validation.",
"update": "August 1, 2023, updated December 21, 2023",
"module": "WebKit",
"id": "CVE-2022-46725",
"credit": "Hyeon Park (@tree_segment) of Team ApplePIE",
"bugzilla": "247289",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating to Vim version 9.0.1191.",
"update": "",
"module": "Vim",
"id": "CVE-2023-0049",
"credit": "",
"page": "https://support.apple.com/en-us/HT213670",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating to Vim version 9.0.1191.",
"update": "",
"module": "Vim",
"id": "CVE-2023-0051",
"credit": "",
"page": "https://support.apple.com/en-us/HT213670",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating to Vim version 9.0.1191.",
"update": "",
"module": "Vim",
"id": "CVE-2023-0054",
"credit": "",
"page": "https://support.apple.com/en-us/HT213670",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating to Vim version 9.0.1191.",
"update": "",
"module": "Vim",
"id": "CVE-2023-0288",
"credit": "",
"page": "https://support.apple.com/en-us/HT213670",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Big Sur",
"description": "Multiple issues were addressed by updating to Vim version 9.0.1191.",
"update": "",
"module": "Vim",
"id": "CVE-2023-0433",
"credit": "",
"page": "https://support.apple.com/en-us/HT213675",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Big Sur",
"description": "Multiple issues were addressed by updating to Vim version 9.0.1191.",
"update": "",
"module": "Vim",
"id": "CVE-2023-0512",
"credit": "",
"page": "https://support.apple.com/en-us/HT213675",
"rsr": ""
},
{
"impact": "An attacker in a privileged network position may be able to execute arbitrary code",
"available": "macOS Ventura",
"description": "An out-of-bounds write issue was addressed with improved input validation.",
"update": "December 21, 2023",
"module": "tcpdump",
"id": "CVE-2023-1801",
"credit": "",
"page": "https://support.apple.com/en-us/HT213843",
"rsr": ""
},
{
"impact": "Processing an image may result in disclosure of process memory",
"available": "macOS Ventura",
"description": "This issue was addressed with improved checks.",
"update": "December 21, 2023",
"module": "Model I/O",
"id": "CVE-2023-1916",
"credit": "",
"page": "https://support.apple.com/en-us/HT213843",
"rsr": ""
},
{
"impact": "An app may be able to elevate privileges",
"available": "macOS Ventura",
"description": "This issue was addressed by updating sudo.",
"update": "September 5, 2023",
"module": "sudo",
"id": "CVE-2023-22809",
"credit": "",
"page": "https://support.apple.com/en-us/HT213758",
"rsr": ""
},
{
"impact": "An encrypted volume may be unmounted and remounted by a different user without prompting for the password",
"available": "macOS Monterey",
"description": "A logic issue was addressed with improved state management.",
"update": "",
"module": "DiskArbitration",
"id": "CVE-2023-23493",
"credit": "Oliver Norpoth (@norpoth) of KLIXX GmbH (klixx.com)",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "A user in a privileged network position may be able to cause a denial-of-service",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "A buffer overflow was addressed with improved bounds checking.",
"update": "",
"module": "CarPlay",
"id": "CVE-2023-23494",
"credit": "Itay Iellin of General Motors Product Cyber Security",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "An app may be able to access sensitive user data",
"available": "Mac Studio (2022 and later), iMac (2019 and later), Mac Pro (2019 and later), Mac mini (2018 and later), MacBook Air (2018 and later), MacBook Pro (2018 and later), and iMac Pro (2017)",
"description": "A permissions issue was addressed with improved redaction of sensitive information.",
"update": "",
"module": "iCloud",
"id": "CVE-2023-23495",
"credit": "Csaba Fitzl (@theevilbit) of Offensive Security",
"page": "https://support.apple.com/en-us/HT213940",
"rsr": ""
},
{
"impact": "Processing maliciously crafted web content may lead to arbitrary code execution",
"available": "macOS Big Sur and macOS Monterey",
"description": "The issue was addressed with improved checks.",
"update": "March 16, 2023",
"module": "WebKit",
"id": "CVE-2023-23496",
"credit": "ChengGang Wu, Yan Kang, YuHao Hu, Yue Sun, Jiming Wang, JiKai Ren, and Hang Shu of Institute of Computing Technology, Chinese Academy of Sciences",
"bugzilla": "245464",
"page": "https://support.apple.com/en-us/HT213638",
"rsr": ""
},
{
"impact": "An app may be able to gain root privileges",
"available": "macOS Monterey",
"description": "A logic issue was addressed with improved state management.",
"update": "",
"module": "PackageKit",
"id": "CVE-2023-23497",
"credit": "Mickey Jin (@patch1t)",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "The quoted original message may be selected from the wrong email when forwarding an email from an Exchange account",
"available": "iPhone 6s (all models), iPhone 7 (all models), iPhone SE (1st generation), iPad Air 2, iPad mini (4th generation), and iPod touch (7th generation)",
"description": "A logic issue was addressed with improved state management.",
"update": "March 16, 2023",
"module": "Mail Exchange",
"id": "CVE-2023-23498",
"credit": "Jose Lizandro Luevano",
"page": "https://support.apple.com/en-us/HT213598",
"rsr": ""
},
{
"impact": "An app may be able to access user-sensitive data",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "This issue was addressed by enabling hardened runtime.",
"update": "",
"module": "AppleMobileFileIntegrity",
"id": "CVE-2023-23499",
"credit": "Wojciech Regu\u0142a (@_r3ggi) of SecuRing (wojciechregula.blog)",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "An app may be able to leak sensitive kernel state",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "The issue was addressed with improved memory handling.",
"update": "",
"module": "Kernel",
"id": "CVE-2023-23500",
"credit": "Pan ZhenPeng (@Peterpan0927) of STAR Labs SG Pte. Ltd. (@starlabs_sg)",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "An app may be able to disclose kernel memory.",
"available": "macOS Ventura",
"description": "The issue was addressed with improved memory handling",
"update": "",
"module": "Wi-Fi",
"id": "CVE-2023-23501",
"credit": "Pan ZhenPeng (@Peterpan0927) of STAR Labs SG Pte. Ltd. (@starlabs_sg)",
"page": "https://support.apple.com/en-us/HT213605",
"rsr": ""
},
{
"impact": "An app may be able to determine kernel memory layout",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "An information disclosure issue was addressed by removing the vulnerable code.",
"update": "",
"module": "Kernel",
"id": "CVE-2023-23502",
"credit": "Pan ZhenPeng (@Peterpan0927) of STAR Labs SG Pte. Ltd. (@starlabs_sg)",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "An app may be able to bypass Privacy preferences",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "A logic issue was addressed with improved state management.",
"update": "",
"module": "Maps",
"id": "CVE-2023-23503",
"credit": "an anonymous researcher",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code with kernel privileges",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "The issue was addressed with improved memory handling.",
"update": "",
"module": "Kernel",
"id": "CVE-2023-23504",
"credit": "Adam Doup\u00e9 of ASU SEFCOM",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "An app may be able to access information about a user\u2019s contacts",
"available": "macOS Monterey",
"description": "A privacy issue was addressed with improved private data redaction for log entries.",
"update": "May 11, 2023",
"module": "Screen Time",
"id": "CVE-2023-23505",
"credit": "Wojciech Regula of SecuRing (wojciechregula.blog) and Csaba Fitzl (@theevilbit) of Offensive Security",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "An app may be able to access user-sensitive data",
"available": "macOS Ventura",
"description": "A permissions issue was addressed with improved validation.",
"update": "",
"module": "libxpc",
"id": "CVE-2023-23506",
"credit": "Guilherme Rambo of Best Buddy Apps (rambo.codes)",
"page": "https://support.apple.com/en-us/HT213605",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code with kernel privileges",
"available": "macOS Monterey",
"description": "The issue was addressed with improved bounds checks.",
"update": "",
"module": "Intel Graphics Driver",
"id": "CVE-2023-23507",
"credit": "an anonymous researcher",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "An app may be able to bypass Privacy preferences",
"available": "macOS Monterey",
"description": "The issue was addressed with improved memory handling.",
"update": "",
"module": "Windows Installer",
"id": "CVE-2023-23508",
"credit": "Mickey Jin (@patch1t)",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "An app may be able to access a user\u2019s Safari history",
"available": "macOS Ventura",
"description": "A permissions issue was addressed with improved validation.",
"update": "",
"module": "Safari",
"id": "CVE-2023-23510",
"credit": "Guilherme Rambo of Best Buddy Apps (rambo.codes)",
"page": "https://support.apple.com/en-us/HT213605",
"rsr": ""
},
{
"impact": "An app may be able to bypass Privacy preferences",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "The issue was addressed with improved memory handling.",
"update": "",
"module": "Weather",
"id": "CVE-2023-23511",
"credit": "Wojciech Regula of SecuRing (wojciechregula.blog), an anonymous researcher",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "Visiting a website may lead to an app denial-of-service",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "The issue was addressed with improved handling of caches.",
"update": "",
"module": "Safari",
"id": "CVE-2023-23512",
"credit": "Adriatik Raci",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "Mounting a maliciously crafted Samba network share may lead to arbitrary code execution",
"available": "macOS Monterey",
"description": "A buffer overflow issue was addressed with improved memory handling.",
"update": "",
"module": "dcerpc",
"id": "CVE-2023-23513",
"credit": "Dimitrios Tatsis and Aleksandar Nikolic of Cisco Talos",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code with kernel privileges",
"available": "macOS Big Sur",
"description": "A use after free issue was addressed with improved memory management.",
"update": "",
"module": "Kernel",
"id": "CVE-2023-23514",
"credit": "Xinru Chi of Pangu Lab and Ned Williamson of Google Project Zero",
"page": "https://support.apple.com/en-us/HT213675",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code with kernel privileges",
"available": "macOS Monterey",
"description": "The issue was addressed with improved memory handling.",
"update": "May 11, 2023",
"module": "Kernel",
"id": "CVE-2023-23516",
"credit": "Jordy Zomer (@pwningsystems)",
"page": "https://support.apple.com/en-us/HT213604",
"rsr": ""
},
{
"impact": "Processing maliciously crafted web content may lead to arbitrary code execution",
"available": "macOS Big Sur and macOS Monterey",
"description": "The issue was addressed with improved memory handling.",
"update": "March 16, 2023",
"module": "WebKit",
"id": "CVE-2023-23517",
"credit": "YeongHyeon Choi (@hyeon101010), Hyeon Park (@tree_segment), SeOk JEON (@_seokjeon), YoungSung Ahn (@_ZeroSung), JunSeo Bae (@snakebjs0107), and Dohyun Lee (@l33d0hyun) of Team ApplePIE",
"bugzilla": "248268",
"page": "https://support.apple.com/en-us/HT213638",
"rsr": ""
},
{
"impact": "Processing maliciously crafted web content may lead to arbitrary code execution",
"available": "macOS Big Sur and macOS Monterey",
"description": "The issue was addressed with improved memory handling.",
"update": "March 16, 2023",
"module": "WebKit",
"id": "CVE-2023-23518",
"credit": "YeongHyeon Choi (@hyeon101010), Hyeon Park (@tree_segment), SeOk JEON (@_seokjeon), YoungSung Ahn (@_ZeroSung), JunSeo Bae (@snakebjs0107), and Dohyun Lee (@l33d0hyun) of Team ApplePIE",
"bugzilla": "248268",
"page": "https://support.apple.com/en-us/HT213638",
"rsr": ""
},
{
"impact": "Processing an image may lead to a denial-of-service",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "A memory corruption issue was addressed with improved state management.",
"update": "September 5, 2023",
"module": "ImageIO",
"id": "CVE-2023-23519",
"credit": "Meysam Firouzi @R00tkitSMM of Mbition Mercedes-Benz Innovation Lab, Yi\u011fit Can YILMAZ (@yilmazcanyigit), and jzhu working with Trend Micro Zero Day Initiative",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "A user may be able to read arbitrary files as root",
"available": "Apple TV 4K (all models) and Apple TV HD",
"description": "A race condition was addressed with additional validation.",
"update": "June 7, 2023",
"module": "Crash Reporter",
"id": "CVE-2023-23520",
"credit": "Cees Elzinga",
"page": "https://support.apple.com/en-us/HT213601",
"rsr": ""
},
{
"impact": "An app may be able to observe unprotected user data.",
"available": "macOS Ventura",
"description": "A privacy issue was addressed with improved handling of temporary files.",
"update": "",
"module": "Shortcuts",
"id": "CVE-2023-23522",
"credit": "Wenchao Li and Xiaolong Bai of Alibaba Group",
"page": "https://support.apple.com/en-us/HT213633",
"rsr": ""
},
{
"impact": "Photos belonging to the Hidden Photos Album could be viewed without authentication through Visual Lookup",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "A logic issue was addressed with improved restrictions.",
"update": "",
"module": "Photos",
"id": "CVE-2023-23523",
"credit": "developStorm",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "Processing a maliciously crafted certificate may lead to a denial-of-service",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, iPad mini 5th generation and later",
"description": "A denial-of-service issue was addressed with improved input validation.",
"update": "February 20, 2023",
"module": "Security",
"id": "CVE-2023-23524",
"credit": "David Benjamin of Google Chrome",
"page": "https://support.apple.com/en-us/HT213635",
"rsr": ""
},
{
"impact": "An app may be able to gain root privileges",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "This issue was addressed with improved checks.",
"update": "",
"module": "LaunchServices",
"id": "CVE-2023-23525",
"credit": "Mickey Jin (@patch1t)",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "A file from an iCloud shared-by-me folder may be able to bypass Gatekeeper",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "This was addressed with additional checks by Gatekeeper on files downloaded from an iCloud shared-by-me folder.",
"update": "",
"module": "iCloud",
"id": "CVE-2023-23526",
"credit": "Jubaer Alnazi of TRS Group of Companies",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "A user may gain access to protected parts of the file system",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "The issue was addressed with improved checks.",
"update": "",
"module": "AppleMobileFileIntegrity",
"id": "CVE-2023-23527",
"credit": "Mickey Jin (@patch1t)",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "Processing a maliciously crafted Bluetooth packet may result in disclosure of process memory",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "An out-of-bounds read was addressed with improved bounds checking.",
"update": "",
"module": "Core Bluetooth",
"id": "CVE-2023-23528",
"credit": "Jianjun Dai and Guang Gong of 360 Vulnerability Research Institute",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "Processing maliciously crafted web content may lead to arbitrary code execution. Apple is aware of a report that this issue may have been actively exploited.",
"available": "iPhone 6s (all models), iPhone 7 (all models), iPhone SE (1st generation), iPad Air 2, iPad mini (4th generation), and iPod touch (7th generation)",
"description": "A type confusion issue was addressed with improved checks.",
"update": "",
"module": "WebKit",
"id": "CVE-2023-23529",
"credit": "an anonymous researcher",
"bugzilla": "251944",
"page": "https://support.apple.com/en-us/HT213673",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code out of its sandbox or with certain elevated privileges",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "The issue was addressed with improved memory handling.",
"update": "February 20, 2023, updated May 1, 2023",
"module": "Foundation",
"id": "CVE-2023-23530",
"credit": "Austin Emmitt (@alkalinesec), Senior Security Researcher at Trellix Advanced Research Center",
"page": "https://support.apple.com/en-us/HT213606",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code out of its sandbox or with certain elevated privileges",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "The issue was addressed with improved memory handling.",
"update": "February 20, 2023, updated May 1, 2023",
"module": "Foundation",
"id": "CVE-2023-23531",
"credit": "Austin Emmitt (@alkalinesec), Senior Security Researcher at Trellix Advanced Research Center",
"page": "https://support.apple.com/en-us/HT213606",
"rsr": ""
},
{
"impact": "An app may be able to break out of its sandbox",
"available": "iPhone 8 and later, iPad Pro (3rd generation) and later, iPad Air (3rd generation) and later, and iPad mini (5th generation)",
"description": "This issue was addressed with improved checks.",
"update": "",
"module": "Apple Neural Engine",
"id": "CVE-2023-23532",
"credit": "Mohamed Ghannam (@_simo36)",
"page": "https://support.apple.com/en-us/HT213765",
"rsr": ""
},
{
"impact": "An app may be able to modify protected parts of the file system",
"available": "macOS Ventura",
"description": "A logic issue was addressed with improved checks.",
"update": "",
"module": "Sandbox",
"id": "CVE-2023-23533",
"credit": "Mickey Jin (@patch1t), Koh M. Nakagawa of FFRI Security, Inc., and Csaba Fitzl (@theevilbit) of Offensive Security",
"page": "https://support.apple.com/en-us/HT213670",
"rsr": ""
},
{
"impact": "Processing a maliciously crafted image may result in disclosure of process memory",
"available": "macOS Big Sur",
"description": "The issue was addressed with improved checks.",
"update": "",
"module": "Carbon Core",
"id": "CVE-2023-23534",
"credit": "Mickey Jin (@patch1t)",
"page": "https://support.apple.com/en-us/HT213675",
"rsr": ""
},
{
"impact": "Processing a maliciously crafted image may result in disclosure of process memory",
"available": "iPhone 6s (all models), iPhone 7 (all models), iPhone SE (1st generation), iPad Air 2, iPad mini (4th generation), and iPod touch (7th generation)",
"description": "The issue was addressed with improved memory handling.",
"update": "",
"module": "ImageIO",
"id": "CVE-2023-23535",
"credit": "ryuzaki",
"page": "https://support.apple.com/en-us/HT213673",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code with kernel privileges",
"available": "iPhone 6s (all models), iPhone 7 (all models), iPhone SE (1st generation), iPad Air 2, iPad mini (4th generation), and iPod touch (7th generation)",
"description": "The issue was addressed with improved bounds checks.",
"update": "May 1, 2023, updated December 21, 2023",
"module": "Kernel",
"id": "CVE-2023-23536",
"credit": "F\u00e9lix Poulin-B\u00e9langer and David Pan Ogea",
"page": "https://support.apple.com/en-us/HT213673",
"rsr": ""
},
{
"impact": "An app may be able to read sensitive location information",
"available": "iPhone 6s (all models), iPhone 7 (all models), iPhone SE (1st generation), iPad Air 2, iPad mini (4th generation), and iPod touch (7th generation)",
"description": "A privacy issue was addressed with improved private data redaction for log entries.",
"update": "December 21, 2023",
"module": "Find My",
"id": "CVE-2023-23537",
"credit": "Adam M.",
"page": "https://support.apple.com/en-us/HT213673",
"rsr": ""
},
{
"impact": "An app may be able to modify protected parts of the file system",
"available": "macOS Ventura",
"description": "A logic issue was addressed with improved checks.",
"update": "",
"module": "PackageKit",
"id": "CVE-2023-23538",
"credit": "Mickey Jin (@patch1t)",
"page": "https://support.apple.com/en-us/HT213670",
"rsr": ""
},
{
"impact": "Mounting a maliciously crafted Samba network share may lead to arbitrary code execution",
"available": "macOS Ventura",
"description": "A buffer overflow issue was addressed with improved memory handling.",
"update": "May 1, 2023",
"module": "dcerpc",
"id": "CVE-2023-23539",
"credit": "Aleksandar Nikolic and Dimitrios Tatsis of Cisco Talos",
"page": "https://support.apple.com/en-us/HT213605",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code with kernel privileges",
"available": "iPhone 8 and later, iPad Pro (3rd generation) and later, iPad Air (3rd generation) and later, and iPad mini (5th generation)",
"description": "The issue was addressed with improved memory handling.",
"update": "",
"module": "Apple Neural Engine",
"id": "CVE-2023-23540",
"credit": "Mohamed GHANNAM (@_simo36)",
"page": "https://support.apple.com/en-us/HT213842",
"rsr": ""
},
{
"impact": "An app may be able to access information about a user\u2019s contacts",
"available": "iPhone 6s (all models), iPhone 7 (all models), iPhone SE (1st generation), iPad Air 2, iPad mini (4th generation), and iPod touch (7th generation)",
"description": "A privacy issue was addressed with improved private data redaction for log entries.",
"update": "",
"module": "Accessibility",
"id": "CVE-2023-23541",
"credit": "Csaba Fitzl (@theevilbit) of Offensive Security",
"page": "https://support.apple.com/en-us/HT213673",
"rsr": ""
},
{
"impact": "An app may be able to access user-sensitive data",
"available": "macOS Big Sur",
"description": "A privacy issue was addressed with improved private data redaction for log entries.",
"update": "December 21, 2023",
"module": "System Settings",
"id": "CVE-2023-23542",
"credit": "Adam M.",
"page": "https://support.apple.com/en-us/HT213675",
"rsr": ""
},
{
"impact": "A sandboxed app may be able to determine which app is currently using the camera",
"available": "iPhone 6s (all models), iPhone 7 (all models), iPhone SE (1st generation), iPad Air 2, iPad mini (4th generation), and iPod touch (7th generation)",
"description": "The issue was addressed with additional restrictions on the observability of app states.",
"update": "",
"module": "Camera",
"id": "CVE-2023-23543",
"credit": "Yi\u011fit Can YILMAZ (@yilmazcanyigit)",
"page": "https://support.apple.com/en-us/HT213673",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating Vim.",
"update": "December 21, 2023",
"module": "Vim",
"id": "CVE-2023-2426",
"credit": "",
"page": "https://support.apple.com/en-us/HT213843",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating Vim.",
"update": "December 21, 2023",
"module": "Vim",
"id": "CVE-2023-2609",
"credit": "",
"page": "https://support.apple.com/en-us/HT213843",
"rsr": ""
},
{
"impact": "Multiple issues in Vim",
"available": "macOS Ventura",
"description": "Multiple issues were addressed by updating Vim.",
"update": "December 21, 2023",
"module": "Vim",
"id": "CVE-2023-2610",
"credit": "",
"page": "https://support.apple.com/en-us/HT213843",
"rsr": ""
},
{
"impact": "An app may be able to access information about a user\u2019s contacts",
"available": "iPhone 6s (all models), iPhone 7 (all models), iPhone SE (1st generation), iPad Air 2, iPad mini (4th generation), and iPod touch (7th generation)",
"description": "A privacy issue was addressed with improved private data redaction for log entries.",
"update": "",
"module": "Identity Services",
"id": "CVE-2023-27928",
"credit": "Csaba Fitzl (@theevilbit) of Offensive Security",
"page": "https://support.apple.com/en-us/HT213673",
"rsr": ""
},
{
"impact": "Processing a maliciously crafted image may result in disclosure of process memory",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "An out-of-bounds read was addressed with improved input validation.",
"update": "",
"module": "ImageIO",
"id": "CVE-2023-27929",
"credit": "Meysam Firouzi (@R00tkitSMM) of Mbition Mercedes-Benz Innovation Lab and jzhu working with Trend Micro Zero Day Initiative",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "An app may be able to execute arbitrary code with kernel privileges",
"available": "Apple Watch Series 4 and later",
"description": "A type confusion issue was addressed with improved checks.",
"update": "",
"module": "Kernel",
"id": "CVE-2023-27930",
"credit": "08Tc3wBB of Jamf",
"page": "https://support.apple.com/en-us/HT213764",
"rsr": ""
},
{
"impact": "An app may be able to access user-sensitive data",
"available": "iPhone 8 and later, iPad Pro (all models), iPad Air 3rd generation and later, iPad 5th generation and later, and iPad mini 5th generation and later",
"description": "This issue was addressed by removing the vulnerable code.",
"update": "",
"module": "AppleMobileFileIntegrity",
"id": "CVE-2023-27931",
"credit": "Mickey Jin (@patch1t)",
"page": "https://support.apple.com/en-us/HT213676",
"rsr": ""
},
{
"impact": "Processing maliciously crafted web content may bypass Same Origin Policy",
"available": "macOS Big Sur and macOS Monterey",
"description": "This issue was addressed with improved state management.",
"update": "",
"module": "WebKit",
"id": "CVE-2023-27932",
"credit": "an anonymous researcher",
"bugzilla": "248615",
"page": "https://support.apple.com/en-us/HT213671",
"rsr": ""