forked from php/web-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog-5.php
14360 lines (13688 loc) · 736 KB
/
ChangeLog-5.php
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
<?php
// $Id$
$_SERVER['BASE_PAGE'] = 'ChangeLog-5.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/changelogs.inc';
site_header("PHP 5 ChangeLog", array("current" => "docs", "css" => array("changelog.css"), "layout_span" => 12));
?>
<h1>PHP 5 ChangeLog</h1>
<section class="version" id="5.6.12"><!-- {{{ 5.6.12 -->
<h3>Version 5.6.12</h3>
<?php release_date('06-Aug-2015'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(70012); ?> (Exception lost with nested finally block).</li>
<li><?php bugfix(70002); ?> (TS issues with temporary dir handling).</li>
<li><?php bugfix(69793); ?> (Remotely triggerable stack exhaustion via recursive method calls).</li>
<li><?php bugfix(69892); ?> (Different arrays compare indentical due to integer key truncation).</li>
<li><?php bugfix(70121); ?> (unserialize() could lead to unexpected methods execution / NULL pointer deref).</li>
</ul></li>
<li>CLI server:
<ul>
<li><?php bugfix(69655); ?> (php -S changes MKCALENDAR request method to MKCOL).</li>
<li><?php bugfix(64878); ?> (304 responses return Content-Type header).</li>
</ul></li>
<li>GD:
<ul>
<li><?php bugfix(53156); ?> (imagerectangle problem with point ordering).</li>
<li><?php bugfix(66387); ?> (Stack overflow with imagefilltoborder).</li>
<li><?php bugfix(70102); ?> (imagecreatefromwebm() shifts colors).</li>
<li><?php bugfix(66590); ?> (imagewebp() doesn't pad to even length).</li>
<li><?php bugfix(66882); ?> (imagerotate by -90 degrees truncates image by 1px).</li>
<li><?php bugfix(70064); ?> (imagescale(..., IMG_BICUBIC) leaks memory).</li>
<li><?php bugfix(69024); ?> (imagescale segfault with palette based image).</li>
<li><?php bugfix(53154); ?> (Zero-height rectangle has whiskers).</li>
<li><?php bugfix(67447); ?> (imagecrop() add a black line when cropping).</li>
<li><?php bugfix(68714); ?> (copy 'n paste error).</li>
<li><?php bugfix(66339); ?> (PHP segfaults in imagexbm).</li>
<li><?php bugfix(70047); ?> (gd_info() doesn't report WebP support).</li>
</ul></li>
<li>ODBC:
<ul>
<li><?php bugfix(69975); ?> (PHP segfaults when accessing nvarchar(max) defined columns).</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(69882); ?> (OpenSSL error "key values mismatch" after openssl_pkcs12_read with extra cert).</li>
<li><?php bugfix(70014); ?> (openssl_random_pseudo_bytes() is not cryptographically secure).</li>
</ul></li>
<li>Phar:
<ul>
<li>Improved fix for bug <?php bugl(69441) ?>.</li>
<li><?php bugfix(70019); ?> (Files extracted from archive may be placed outside of destination directory).</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(70081); ?> (SoapClient info leak / null pointer dereference via multiple type confusions).</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(70068); ?> (Dangling pointer in the unserialization of ArrayObject items).</li>
<li><?php bugfix(70166); ?> (Use After Free Vulnerability in unserialize() with SPLArrayObject).</li>
<li><?php bugfix(70168); ?> (Use After Free Vulnerability in unserialize() with SplObjectStorage).</li>
<li><?php bugfix(70169); ?> (Use After Free Vulnerability in unserialize() with SplDoublyLinkedList).</li>
</ul></li>
<li>Standard:
<ul>
<li><?php bugfix(70096); ?> (Repeated iptcembed() adds superfluous FF bytes).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.5.28"><!-- {{{ 5.5.28 -->
<h3>Version 5.5.28</h3>
<b>06-Aug-2015</b>
<ul><li>Core:
<ul>
<li><?php bugfix(69793); ?> (Remotely triggerable stack exhaustion via recursive method calls).</li>
<li><?php bugfix(69892); ?> (Different arrays compare indentical due to integer key truncation).</li>
<li><?php bugfix(70002); ?> (TS issues with temporary dir handling).</li>
<li><?php bugfix(70121); ?> (unserialize() could lead to unexpected methods execution / NULL pointer deref).</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(70014); ?> (openssl_random_pseudo_bytes() is not cryptographically secure).</li>
</ul></li>
<li>Phar:
<ul>
<li>Improved fix for bug <?php bugl(69441) ?>.</li>
<li><?php bugfix(70019); ?> (Files extracted from archive may be placed outside of destination directory).</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(70081); ?> (SoapClient info leak / null pointer dereference via multiple type confusions).</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(70068); ?> (Dangling pointer in the unserialization of ArrayObject items).</li>
<li><?php bugfix(70166); ?> (Use After Free Vulnerability in unserialize() with SPLArrayObject).</li>
<li><?php bugfix(70168); ?> (Use After Free Vulnerability in unserialize() with SplObjectStorage).</li>
<li><?php bugfix(70169); ?> (Use After Free Vulnerability in unserialize() with SplDoublyLinkedList).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.4.44"><!-- {{{ 5.4.44 -->
<h3>Version 5.4.44</h3>
<b>06-Aug-2015</b>
<ul><li>Core:
<ul>
<li><?php bugfix(69793); ?> (Remotely triggerable stack exhaustion via recursive method calls).</li>
<li><?php bugfix(69892); ?> (Different arrays compare indentical due to integer key truncation).</li>
<li><?php bugfix(70121); ?> (unserialize() could lead to unexpected methods execution / NULL pointer deref).</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(70014); ?> (openssl_random_pseudo_bytes() is not cryptographically secure).</li>
</ul></li>
<li>Phar:
<ul>
<li>Improved fix for bug <?php bugl(69441) ?>.</li>
<li><?php bugfix(70019); ?> (Files extracted from archive may be placed outside of destination directory).</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(70081); ?> (SoapClient info leak / null pointer dereference via multiple type confusions).</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(70068); ?> (Dangling pointer in the unserialization of ArrayObject items).</li>
<li><?php bugfix(70166); ?> (Use After Free Vulnerability in unserialize() with SPLArrayObject).</li>
<li><?php bugfix(70168); ?> (Use After Free Vulnerability in unserialize() with SplObjectStorage).</li>
<li><?php bugfix(70169); ?> (Use After Free Vulnerability in unserialize() with SplDoublyLinkedList).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.6.11"><!-- {{{ 5.6.11 -->
<h3>Version 5.6.11</h3>
<?php release_date('10-Jul-2015'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(69768); ?> (escapeshell*() doesn't cater to !).</li>
<li><?php bugfix(69703); ?> (Use __builtin_clzl on PowerPC).</li>
<li><?php bugfix(69732); ?> (can induce segmentation fault with basic php code).</li>
<li><?php bugfix(69642); ?> (Windows 10 reported as Windows 8).</li>
<li><?php bugfix(69551); ?> (parse_ini_file() and parse_ini_string() segmentation fault).</li>
<li><?php bugfix(69781); ?> (phpinfo() reports Professional Editions of Windows 7/8/8.1/10 as "Business").</li>
<li><?php bugfix(69740); ?> (finally in generator (yield) swallows exception in iteration).</li>
<li><?php bugfix(69835); ?> (phpinfo() does not report many Windows SKUs).</li>
<li><?php bugfix(69892); ?> (Different arrays compare indentical due to integer key truncation).</li>
<li><?php bugfix(69874); ?> (Can't set empty additional_headers for mail()), regression from fix to bug <?php bugl(68776); ?>.</li>
</ul></li>
<li>GD:
<ul>
<li><?php bugfix(61221); ?> (imagegammacorrect function loses alpha channel).</li>
</ul></li>
<li>GMP:
<ul>
<li><?php bugfix(69803); ?> (gmp_random_range() modifies second parameter if GMP number).</li>
</ul></li>
<li>Mysqlnd:
<ul>
<li><?php bugfix(69669); ?> (mysqlnd is vulnerable to BACKRONYM). (CVE-2015-3152)</li>
</ul></li>
<li>PCRE:
<ul>
<li><?php bugfix(53823); ?> (preg_replace: * qualifier on unicode replace garbles the string).</li>
<li><?php bugfix(69864); ?> (Segfault in preg_replace_callback).</li>
</ul></li>
<li>PDO_pgsql:
<ul>
<li><?php bugfix(69752); ?> (PDOStatement::execute() leaks memory with DML Statements when closeCuror() is u).</li>
<li><?php bugfix(69362); ?> (PDO-pgsql fails to connect if password contains a leading single quote).</li>
<li><?php bugfix(69344); ?> (PDO PgSQL Incorrect binding numeric array with gaps).</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(69958); ?> (Segfault in Phar::convertToData on invalid file). (CVE-2015-5589)</li>
<li><?php bugfix(69923); ?> (Buffer overflow and stack smashing error in phar_fix_filepath). (CVE-2015-5590)</li>
</ul></li>
<li>SimpleXML:
<ul>
<li>Refactored the fix for bug <?php bugl(66084); ?> (simplexml_load_string() mangles empty node name).</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(69737); ?> (Segfault when SplMinHeap::compare produces fatal error).</li>
<li><?php bugfix(67805); ?> (SplFileObject setMaxLineLength).</li>
<li><?php bugfix(69970); ?> (Use-after-free vulnerability in spl_recursive_it_move_forward_ex()).</li>
</ul></li>
<li>Sqlite3:
<ul>
<li><?php bugfix(69972); ?> (Use-after-free vulnerability in sqlite3SafetyCheckSickOrOk()).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.5.27"><!-- {{{ 5.5.27 -->
<h3>Version 5.5.27</h3>
<b>09-Jul-2015</b>
<ul><li>Core:
<ul>
<li><?php bugfix(69768); ?> (escapeshell*() doesn't cater to !).</li>
<li><?php bugfix(69703); ?> (Use __builtin_clzl on PowerPC).</li>
<li><?php bugfix(69732); ?> (can induce segmentation fault with basic php code).</li>
<li><?php bugfix(69642); ?> (Windows 10 reported as Windows 8).</li>
<li><?php bugfix(69551); ?> (parse_ini_file() and parse_ini_string() segmentation fault).</li>
<li><?php bugfix(69781); ?> (phpinfo() reports Professional Editions of Windows 7/8/8.1/10 as "Business").</li>
<li><?php bugfix(69835); ?> (phpinfo() does not report many Windows SKUs).</li>
<li><?php bugfix(69892); ?> (Different arrays compare indentical due to integer key truncation).</li>
<li><?php bugfix(69874); ?> (Can't set empty additional_headers for mail()), regression from fix to bug <?php bugl(68776); ?>.</li>
</ul></li>
<li>GD:
<ul>
<li><?php bugfix(61221); ?> (imagegammacorrect function loses alpha channel).</li>
</ul></li>
<li>Mysqlnd:
<ul>
<li><?php bugfix(69669); ?> (mysqlnd is vulnerable to BACKRONYM). (CVE-2015-3152)</li>
</ul></li>
<li>PCRE:
<ul>
<li>Fixed Bug #53823 (preg_replace: * qualifier on unicode replace garbles the string).</li>
<li><?php bugfix(69864); ?> (Segfault in preg_replace_callback).</li>
</ul></li>
<li>PDO_pgsql:
<ul>
<li><?php bugfix(69752); ?> (PDOStatement::execute() leaks memory with DML Statements when closeCuror() is u).</li>
<li><?php bugfix(69362); ?> (PDO-pgsql fails to connect if password contains a leading single quote).</li>
<li><?php bugfix(69344); ?> (PDO PgSQL Incorrect binding numeric array with gaps).</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(69958); ?> (Segfault in Phar::convertToData on invalid file). (CVE-2015-5589)</li>
<li><?php bugfix(69923); ?> (Buffer overflow and stack smashing error in phar_fix_filepath). (CVE-2015-5590)</li>
</ul></li>
<li>SimpleXML:
<ul>
<li>Refactored the fix for bug #66084 (simplexml_load_string() mangles empty node name).</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(69737); ?> (Segfault when SplMinHeap::compare produces fatal error).</li>
<li><?php bugfix(67805); ?> (SplFileObject setMaxLineLength).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.4.43"><!-- {{{ 5.4.43 -->
<h3>Version 5.4.43</h3>
<b>09-Jul-2015</b>
<ul><li>Core:
<ul>
<li><?php bugfix(69768); ?> (escapeshell*() doesn't cater to !).</li>
<li><?php bugfix(69874); ?> (Can't set empty additional_headers for mail()), regression from fix to bug <?php bugl(68776); ?>.</li>
</ul></li>
<li>Mysqlnd:
<ul>
<li><?php bugfix(69669); ?> (mysqlnd is vulnerable to BACKRONYM). (CVE-2015-3152)</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(69958); ?> (Segfault in Phar::convertToData on invalid file). (CVE-2015-5589)</li>
<li><?php bugfix(69923); ?> (Buffer overflow and stack smashing error in phar_fix_filepath). (CVE-2015-5590)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.6.10"><!-- {{{ 5.6.10 -->
<h3>Version 5.6.10</h3>
<?php release_date('11-Jun-2015'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(66048); ?> (temp. directory is cached during multiple requests).</li>
<li><?php bugfix(69566); ?> (Conditional jump or move depends on uninitialised value in extension trait).</li>
<li><?php bugfix(69599); ?> (Strange generator+exception+variadic crash).</li>
<li><?php bugfix(69628); ?> (complex GLOB_BRACE fails on Windows).</li>
<li>Fixed POST data processing slowdown due to small input buffer size on Windows.</li>
<li><?php bugfix(69646); ?> (OS command injection vulnerability in escapeshellarg). (CVE-2015-4642)</li>
<li><?php bugfix(69719); ?> (Incorrect handling of paths with NULs).</li>
</ul></li>
<li>FTP:
<ul>
<li>Improved fix for bug <?php bugl(69545); ?> (Integer overflow in ftp_genlist() resulting in heap overflow). (CVE-2015-4643)</li>
</ul></li>
<li>GD:
<ul>
<li><?php bugfix(69479); ?> (GD fails to build with newer libvpx).</li>
</ul></li>
<li>Iconv:
<ul>
<li><?php bugfix(48147); ?> (iconv with //IGNORE cuts the string).</li>
</ul></li>
<li>Litespeed SAPI:
<ul>
<li><?php bugfix(68812); ?> (Unchecked return value).</li>
</ul></li>
<li>Mail:
<ul>
<li><?php bugfix(68776); ?> (mail() does not have mail header injection prevention for additional headers).</li>
</ul></li>
<li>MCrypt:
<ul>
<li>Added file descriptor caching to mcrypt_create_iv().</li>
</ul></li>
<li>Opcache:
<ul>
<li><?php bugfix(69549); ?> (Memory leak with opcache.optimization_level=0xFFFFFFFF).</li>
</ul></li>
<li>PCRE:
<ul>
<li>Upgraded pcrelib to 8.37. (CVE-2015-2325, CVE-2015-2326)</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(69680); ?> (phar symlink in binary directory broken).</li>
</ul></li>
<li>Postgres:
<ul>
<li><?php bugfix(69667); ?> (segfault in php_pgsql_meta_data). (CVE-2015-4644)</li>
</ul></li>
<li>Sqlite3:
<ul>
<li>Upgrade bundled sqlite to 3.8.10.2. (CVE-2015-3414, CVE-2015-3415,
CVE-2015-3416)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.5.26"><!-- {{{ 5.5.26 -->
<h3>Version 5.5.26</h3>
<b>11-Jun-2015</b>
<ul><li>Core:
<ul>
<li><?php bugfix(69566); ?> (Conditional jump or move depends on uninitialised value in extension trait).</li>
<li><?php bugfix(66048); ?> (temp. directory is cached during multiple requests).</li>
<li><?php bugfix(69628); ?> (complex GLOB_BRACE fails on Windows).</li>
<li><?php bugfix(69646); ?> (OS command injection vulnerability in escapeshellarg). (CVE-2015-4642)</li>
<li><?php bugfix(69719); ?> (Incorrect handling of paths with NULs).</li>
</ul></li>
<li>FTP:
<ul>
<li>Improved fix for bug <?php bugl(69545); ?> (Integer overflow in ftp_genlist() resulting in heap overflow). (CVE-2015-4643)</li>
</ul></li>
<li>GD:
<ul>
<li><?php bugfix(69479); ?> (GD fails to build with newer libvpx).</li>
</ul></li>
<li>Iconv:
<ul>
<li><?php bugfix(48147); ?> (iconv with //IGNORE cuts the string).</li>
</ul></li>
<li>Litespeed SAPI:
<ul>
<li><?php bugfix(68812); ?> (Unchecked return value).</li>
</ul></li>
<li>Mail:
<ul>
<li><?php bugfix(68776); ?> (mail() does not have mail header injection prevention for additional headers).</li>
</ul></li>
<li>MCrypt:
<ul>
<li>Added file descriptor caching to mcrypt_create_iv().</li>
</ul></li>
<li>Opcache:
<ul>
<li><?php bugfix(69549); ?> (Memory leak with opcache.optimization_level=0xFFFFFFFF).</li>
</ul></li>
<li>PCRE:
<ul>
<li>Upgraded pcrelib to 8.37. (CVE-2015-2325, CVE-2015-2326)</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(69680); ?> (phar symlink in binary directory broken).</li>
</ul></li>
<li>Postgres:
<ul>
<li><?php bugfix(69667); ?> (segfault in php_pgsql_meta_data). (CVE-2015-4644)</li>
</ul></li>
<li>Sqlite3:
<ul>
<li>Upgrade bundled sqlite to 3.8.10.2. (CVE-2015-3414, CVE-2015-3415,
CVE-2015-3416)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.4.42"><!-- {{{ 5.4.42 -->
<h3>Version 5.4.42</h3>
<b>11-Jun-2015</b>
<ul><li>Core:
<ul>
<li>Improved fix for bug <?php bugl(69545); ?> (Integer overflow in ftp_genlist() resulting in heap overflow). (CVE-2015-4643)</li>
<li><?php bugfix(69646); ?> (OS command injection vulnerability in escapeshellarg). (CVE-2015-4642)</li>
<li><?php bugfix(69719); ?> (Incorrect handling of paths with NULs).</li>
</ul></li>
<li>Litespeed SAPI:
<ul>
<li><?php bugfix(68812); ?> (Unchecked return value).</li>
</ul></li>
<li>Mail:
<ul>
<li><?php bugfix(68776); ?> (mail() does not have mail header injection prevention for additional headers).</li>
</ul></li>
<li>Postgres:
<ul>
<li><?php bugfix(69667); ?> (segfault in php_pgsql_meta_data). (CVE-2015-4644)</li>
</ul></li>
<li>Sqlite3:
<ul>
<li>Upgrade bundled sqlite to 3.8.10.2. (CVE-2015-3414, CVE-2015-3415, CVE-2015-3416)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.6.9"><!-- {{{ 5.6.9 -->
<h3>Version 5.6.9</h3>
<?php release_date('14-May-2015'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(69467); ?> (Wrong checked for the interface by using Trait).</li>
<li><?php bugfix(69420); ?> (Invalid read in zend_std_get_method).</li>
<li><?php bugfix(60022); ?> ("use statement [...] has no effect" depends on leading backslash).</li>
<li><?php bugfix(67314); ?> (Segmentation fault in gc_remove_zval_from_buffer).</li>
<li><?php bugfix(68652); ?> (segmentation fault in destructor).</li>
<li><?php bugfix(69419); ?> (Returning compatible sub generator produces a warning).</li>
<li><?php bugfix(69472); ?> (php_sys_readlink ignores misc errors from GetFinalPathNameByHandleA).</li>
<li><?php bugfix(69364); ?> (PHP Multipart/form-data remote dos Vulnerability). (CVE-2015-4024)</li>
<li><?php bugfix(69403); ?> (str_repeat() sign mismatch based memory corruption).</li>
<li><?php bugfix(69418); ?> (CVE-2006-7243 fix regressions in 5.4+). (CVE-2015-4025)</li>
<li><?php bugfix(69522); ?> (heap buffer overflow in unpack()).</li>
</ul></li>
<li>FTP:
<ul>
<li><?php bugfix(69545); ?> (Integer overflow in ftp_genlist() resulting in heap overflow). (CVE-2015-4022)</li>
</ul></li>
<li>ODBC:
<ul>
<li><?php bugfix(69354); ?> (Incorrect use of SQLColAttributes with ODBC 3.0).</li>
<li><?php bugfix(69474); ?> (ODBC: Query with same field name from two tables returns incorrect result).</li>
<li><?php bugfix(69381); ?> (out of memory with sage odbc driver).</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(69402); ?> (Reading empty SSL stream hangs until timeout).</li>
</ul></li>
<li>PCNTL:
<ul>
<li><?php bugfix(68598); ?> (pcntl_exec() should not allow null char). (CVE-2015-4026)</li>
</ul></li>
<li>PCRE:
<ul>
<li>Upgraded pcrelib to 8.37. (CVE-2015-2325, CVE-2015-2326)</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(69453); ?> (Memory Corruption in phar_parse_tarfile when entry filename starts with null). (CVE-2015-4021)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.5.25"><!-- {{{ 5.5.25 -->
<h3>Version 5.5.25</h3>
<b>14-May-2015</b>
<ul><li>Core:
<ul>
<li><?php bugfix(69364); ?> (PHP Multipart/form-data remote dos Vulnerability). (CVE-2015-4024)</li>
<li><?php bugfix(69403); ?> (str_repeat() sign mismatch based memory corruption).</li>
<li><?php bugfix(69418); ?> (CVE-2006-7243 fix regressions in 5.4+). (CVE-2015-4025)</li>
<li><?php bugfix(69522); ?> (heap buffer overflow in unpack()).</li>
<li><?php bugfix(69467); ?> (Wrong checked for the interface by using Trait).</li>
<li><?php bugfix(69420); ?> (Invalid read in zend_std_get_method).</li>
<li><?php bugfix(60022); ?> ("use statement [...] has no effect" depends on leading backslash).</li>
<li><?php bugfix(67314); ?> (Segmentation fault in gc_remove_zval_from_buffer).</li>
<li><?php bugfix(68652); ?> (segmentation fault in destructor).</li>
<li><?php bugfix(69419); ?> (Returning compatible sub generator produces a warning).</li>
<li><?php bugfix(69472); ?> (php_sys_readlink ignores misc errors from GetFinalPathNameByHandleA).</li>
</ul></li>
<li>FTP:
<ul>
<li><?php bugfix(69545); ?> (Integer overflow in ftp_genlist() resulting in heap overflow). (CVE-2015-4022)</li>
</ul></li>
<li>ODBC:
<ul>
<li><?php bugfix(69354); ?> (Incorrect use of SQLColAttributes with ODBC 3.0).</li>
<li><?php bugfix(69474); ?> (ODBC: Query with same field name from two tables returns incorrect result).</li>
<li><?php bugfix(69381); ?> (out of memory with sage odbc driver).</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(69402); ?> (Reading empty SSL stream hangs until timeout).</li>
</ul></li>
<li>PCNTL:
<ul>
<li><?php bugfix(68598); ?> (pcntl_exec() should not allow null char). (CVE-2015-4026)</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(69453); ?> (Memory Corruption in phar_parse_tarfile when entry filename starts with null). (CVE-2015-4021)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.4.41"><!-- {{{ 5.4.41 -->
<h3>Version 5.4.41</h3>
<b>14-May-2015</b>
<ul><li>Core:
<ul>
<li><?php bugfix(69364); ?> (PHP Multipart/form-data remote dos Vulnerability). (CVE-2015-4024)</li>
<li><?php bugfix(69403); ?> (str_repeat() sign mismatch based memory corruption).</li>
<li><?php bugfix(69418); ?> (CVE-2006-7243 fix regressions in 5.4+). (CVE-2015-4025)</li>
<li><?php bugfix(69522); ?> (heap buffer overflow in unpack()).</li>
</ul></li>
<li>FTP:
<ul>
<li><?php bugfix(69545); ?> (Integer overflow in ftp_genlist() resulting in heap overflow). (CVE-2015-4022)</li>
</ul></li>
<li>PCNTL:
<ul>
<li><?php bugfix(68598); ?> (pcntl_exec() should not allow null char). (CVE-2015-4026)</li>
</ul></li>
<li>PCRE:
<ul>
<li>Upgraded pcrelib to 8.37. (CVE-2015-2325, CVE-2015-2326)</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(69453); ?> (Memory Corruption in phar_parse_tarfile when entry filename starts with null). (CVE-2015-4021)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.6.8"><!-- {{{ 5.6.8 -->
<h3>Version 5.6.8</h3>
<?php release_date('16-Apr-2015'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(66609); ?> (php crashes with __get() and ++ operator in some cases).</li>
<li><?php bugfix(68021); ?> (get_browser() browser_name_regex returns non-utf-8 characters).</li>
<li><?php bugfix(68917); ?> (parse_url fails on some partial urls).</li>
<li><?php bugfix(69134); ?> (Per Directory Values overrides PHP_INI_SYSTEM configuration options).</li>
<li>Additional fix for bug <?php bugl(69152); ?> (Type confusion vulnerability in exception::getTraceAsString).</li>
<li><?php bugfix(69210); ?> (serialize function return corrupted data when sleep has non-string values).</li>
<li><?php bugfix(69212); ?> (Leaking VIA_HANDLER func when exception thrown in __call/... arg passing).</li>
<li><?php bugfix(69221); ?> (Segmentation fault when using a generator in combination with an Iterator).</li>
<li><?php bugfix(69337); ?> (php_stream_url_wrap_http_ex() type-confusion vulnerability).</li>
<li><?php bugfix(69353); ?> (Missing null byte checks for paths in various PHP extensions).</li>
</ul></li>
<li>Apache2handler:
<ul>
<li><?php bugfix(69218); ?> (potential remote code execution with apache 2.4 apache2handler). (CVE-2015-3330)</li>
</ul></li>
<li>cURL:
<ul>
<li><?php implemented(69278); ?> (HTTP2 support).</li>
<li><?php bugfix(68739); ?> (Missing break / control flow).</li>
<li><?php bugfix(69316); ?> (Use-after-free in php_curl related to CURLOPT_FILE/_INFILE/_WRITEHEADER).</li>
</ul></li>
<li>Date:
<ul>
<li><?php bugfix(69336); ?> (Issues with "last day of <monthname>").</li>
</ul></li>
<li>Enchant:
<ul>
<li><?php bugfix(65406); ?> (Enchant broker plugins are in the wrong place in windows builds).</li>
</ul></li>
<li>Ereg:
<ul>
<li><?php bugfix(68740); ?> (NULL Pointer Dereference).</li>
</ul></li>
<li>Fileinfo:
<ul>
<li><?php bugfix(68819); ?> (Fileinfo on specific file causes spurious OOM and/or segfault).</li>
</ul></li>
<li>Filter:
<ul>
<li><?php bugfix(69202); ?> (FILTER_FLAG_STRIP_BACKTICK ignored unless other flags are used).</li>
<li><?php bugfix(69203); ?> (FILTER_FLAG_STRIP_HIGH doesn't strip ASCII 127).</li>
</ul></li>
<li>Mbstring:
<ul>
<li><?php bugfix(68846); ?> (False detection of CJK Unified Ideographs Extension E).</li>
</ul></li>
<li>OPCache:
<ul>
<li><?php bugfix(69297); ?> (function_exists strange behavior with OPCache on disabled function).</li>
<li><?php bugfix(69281); ?> (opcache_is_script_cached no longer works).</li>
<li><?php bugfix(68677); ?> (Use After Free). (CVE-2015-1351)</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(68853); ?>, <?php bugl(65137); ?> (Buffered crypto stream data breaks IO polling in stream_select() contexts).</li>
<li><?php bugfix(69197); ?> (openssl_pkcs7_sign handles default value incorrectly).</li>
<li><?php bugfix(69215); ?> (Crypto servers should send client CA list).</li>
<li>Add a check for RAND_egd to allow compiling against LibreSSL.</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(64343); ?> (PharData::extractTo fails for tarball created by BSD tar).</li>
<li><?php bugfix(64931); ?> (phar_add_file is too restrictive on filename).</li>
<li><?php bugfix(65467); ?> (Call to undefined method cli_arg_typ_string).</li>
<li><?php bugfix(67761); ?> (Phar::mapPhar fails for Phars inside a path containing ".tar").</li>
<li><?php bugfix(69324); ?> (Buffer Over-read in unserialize when parsing Phar). (CVE-2015-2783)</li>
<li><?php bugfix(69441); ?> (Buffer Overflow when parsing tar/zip/phar in phar_set_inode). (CVE-2015-3329)</li>
</ul></li>
<li>Postgres:
<ul>
<li><?php bugfix(68741); ?> (Null pointer dereference). (CVE-2015-1352)</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(69152); ?> (Type Confusion Infoleak Vulnerability in unserialize() with SoapFault).</li>
<li><?php bugfix(69293); ?> (NEW segfault when using SoapClient::__setSoapHeader (bisected, regression)).</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(69227); ?> (Use after free in zval_scan caused by spl_object_storage_get_gc).</li>
</ul></li>
<li>Sqlite3:
<ul>
<li><?php bugfix(68760); ?> (SQLITE segfaults if custom collator throws an exception).</li>
<li><?php bugfix(69287); ?> (Upgrade bundled libsqlite to 3.8.8.3).</li>
<li><?php bugfix(66550); ?> (SQLite prepared statement use-after-free).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.5.24"><!-- {{{ 5.5.24 -->
<h3>Version 5.5.24</h3>
<?php release_date('16-Apr-2015'); ?>
<ul><li>Apache2handler:
<ul>
<li><?php bugfix(69218); ?> (potential remote code execution with apache 2.4 apache2handler). (CVE-2015-3330)</li>
</ul></li>
<li>Core:
<ul>
<li><?php bugfix(66609); ?> (php crashes with __get() and ++ operator in some cases).</li>
<li><?php bugfix(67626); ?> (User exceptions not properly handled in streams).</li>
<li><?php bugfix(68021); ?> (get_browser() browser_name_regex returns non-utf-8 characters).</li>
<li><?php bugfix(68917); ?> (parse_url fails on some partial urls).</li>
<li><?php bugfix(69134); ?> (Per Directory Values overrides PHP_INI_SYSTEM configuration options).</li>
<li>Additional fix for bug <?php bugl(69152); ?> (Type confusion vulnerability in exception::getTraceAsString).</li>
<li><?php bugfix(69212); ?> (Leaking VIA_HANDLER func when exception thrown in __call/... arg passing).</li>
<li><?php bugfix(69221); ?> (Segmentation fault when using a generator in combination with an Iterator).</li>
<li><?php bugfix(69337); ?> (php_stream_url_wrap_http_ex() type-confusion vulnerability).</li>
<li><?php bugfix(69353); ?> (Missing null byte checks for paths in various PHP extensions).</li>
</ul></li>
<li>cURL:
<ul>
<li><?php implemented(69278); ?> (HTTP2 support).</li>
<li><?php bugfix(68739); ?> (Missing break / control flow).</li>
<li><?php bugfix(69316); ?> (Use-after-free in php_curl related to CURLOPT_FILE/_INFILE/_WRITEHEADER).</li>
</ul></li>
<li>Date:
<ul>
<li>Export date_get_immutable_ce so that it can be used by extensions.</li>
<li><?php bugfix(69336); ?> (Issues with "last day of <monthname>").</li>
</ul></li>
<li>Enchant:
<ul>
<li><?php bugfix(65406); ?> (Enchant broker plugins are in the wrong place in windows builds).</li>
</ul></li>
<li>Ereg:
<ul>
<li><?php bugfix(68740); ?> (NULL Pointer Dereference).</li>
</ul></li>
<li>Fileinfo:
<ul>
<li><?php bugfix(68819); ?> (Fileinfo on specific file causes spurious OOM and/or segfault).</li>
</ul></li>
<li>Filter:
<ul>
<li><?php bugfix(69202); ?> (FILTER_FLAG_STRIP_BACKTICK ignored unless other flags are used).</li>
<li><?php bugfix(69203); ?> (FILTER_FLAG_STRIP_HIGH doesn't strip ASCII 127).</li>
</ul></li>
<li>Mbstring:
<ul>
<li><?php bugfix(68846); ?> (False detection of CJK Unified Ideographs Extension E).</li>
</ul></li>
<li>ODBC:
<ul>
<li><?php bugfix(69354); ?> (Incorrect use of SQLColAttributes with ODBC 3.0).</li>
</ul></li>
<li>OPCache:
<ul>
<li><?php bugfix(69281); ?> (opcache_is_script_cached no longer works).</li>
<li><?php bugfix(68677); ?> (Use After Free). (CVE-2015-1351)</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(67403); ?> (Add signatureType to openssl_x509_parse).</li>
<li>Add a check for RAND_egd to allow compiling against LibreSSL.</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(64343); ?> (PharData::extractTo fails for tarball created by BSD tar).</li>
<li><?php bugfix(64931); ?> (phar_add_file is too restrictive on filename).</li>
<li><?php bugfix(65467); ?> (Call to undefined method cli_arg_typ_string).</li>
<li><?php bugfix(67761); ?> (Phar::mapPhar fails for Phars inside a path containing ".tar").</li>
<li><?php bugfix(69324); ?> (Buffer Over-read in unserialize when parsing Phar). (CVE-2015-2783)</li>
<li><?php bugfix(69441); ?> (Buffer Overflow when parsing tar/zip/phar in phar_set_inode). (CVE-2015-3329)</li>
</ul></li>
<li>Postgres:
<ul>
<li><?php bugfix(68741); ?> (Null pointer dereference). (CVE-2015-1352)</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(69152); ?> (Type Confusion Infoleak Vulnerability in unserialize() with SoapFault).</li>
<li><?php bugfix(69293); ?> (NEW segfault when using SoapClient::__setSoapHeader (bisected, regression)).</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(69227); ?> (Use after free in zval_scan caused by spl_object_storage_get_gc).</li>
</ul></li>
<li>SQLITE:
<ul>
<li><?php bugfix(68760); ?> (SQLITE segfaults if custom collator throws an exception).</li>
<li><?php bugfix(69287); ?> (Upgrade bundled sqlite to 3.8.8.3).</li>
<li><?php bugfix(66550); ?> (SQLite prepared statement use-after-free).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.4.40"><!-- {{{ 5.4.40 -->
<h3>Version 5.4.40</h3>
<?php release_date('16-Apr-2015'); ?>
<ul><li>Apache2handler:
<ul>
<li><?php bugfix(69218); ?> (potential remote code execution with apache 2.4 apache2handler). (CVE-2015-3330)</li>
</ul></li>
<li>Core:
<ul>
<li>Additional fix for bug <?php bugl(69152); ?> (Type confusion vulnerability in exception::getTraceAsString).</li>
<li><?php bugfix(69337); ?> (php_stream_url_wrap_http_ex() type-confusion vulnerability).</li>
<li><?php bugfix(69353); ?> (Missing null byte checks for paths in various PHP extensions).</li>
</ul></li>
<li>cURL:
<ul>
<li><?php bugfix(69316); ?> (Use-after-free in php_curl related to CURLOPT_FILE/_INFILE/_WRITEHEADER).</li>
</ul></li>
<li>Ereg:
<ul>
<li><?php bugfix(68740); ?> (NULL Pointer Dereference).</li>
</ul></li>
<li>Fileinfo:
<ul>
<li><?php bugfix(68819); ?> (Fileinfo on specific file causes spurious OOM and/or segfault).</li>
</ul></li>
<li>GD:
<ul>
<li><?php bugfix(68601); ?> (buffer read overflow in gd_gif_in.c). (CVE-2014-9709)</li>
</ul></li>
<li>Phar:
<ul>
<li><?php bugfix(68901); ?> (use after free). (CVE-2015-2301)</li>
<li><?php bugfix(69324); ?> (Buffer Over-read in unserialize when parsing Phar). (CVE-2015-2783)</li>
<li><?php bugfix(69441); ?> (Buffer Overflow when parsing tar/zip/phar in phar_set_inode). (CVE-2015-3329)</li>
</ul></li>
<li>Postgres:
<ul>
<li><?php bugfix(68741); ?> (Null pointer deference). (CVE-2015-1352)</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(69152); ?> (Type Confusion Infoleak Vulnerability in unserialize() with SoapFault).</li>
<li><?php bugfix(69293); ?> (NEW segfault when using SoapClient::__setSoapHeader (bisected, regression)).</li>
</ul></li>
<li>Sqlite3:
<ul>
<li><?php bugfix(66550); ?> (SQLite prepared statement use-after-free).</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.6.7"><!-- {{{ 5.6.7 -->
<h3>Version 5.6.7</h3>
<?php release_date('19-Mar-2015'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(69174); ?> (leaks when unused inner class use traits precedence).</li>
<li><?php bugfix(69139); ?> (Crash in gc_zval_possible_root on unserialize).</li>
<li><?php bugfix(69121); ?> (Segfault in get_current_user when script owner is not in passwd with ZTS build).</li>
<li><?php bugfix(65593); ?> (Segfault when calling ob_start from output buffering callback).</li>
<li><?php bugfix(68986); ?> (pointer returned by php_stream_fopen_temporary_file not validated in memory.c).</li>
<li><?php bugfix(68166); ?> (Exception with invalid character causes segv).</li>
<li><?php bugfix(69141); ?> (Missing arguments in reflection info for some builtin functions).</li>
<li><?php bugfix(68976); ?> (Use After Free Vulnerability in unserialize()). (CVE-2015-2787)</li>
<li><?php bugfix(69134); ?> (Per Directory Values overrides PHP_INI_SYSTEM configuration options).</li>
<li><?php bugfix(69207); ?> (move_uploaded_file allows nulls in path). (CVE-2015-2348)</li>
</ul></li>
<li>CGI:
<ul>
<li><?php bugfix(69015); ?> (php-cgi's getopt does not see $argv).</li>
</ul></li>
<li>CLI:
<ul>
<li><?php bugfix(67741); ?> (auto_prepend_file messes up __LINE__).</li>
</ul></li>
<li>cURL:
<ul>
<li><?php bugfix(69088); ?> (PHP_MINIT_FUNCTION does not fully initialize cURL on Win32).</li>
<li>Add CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME constants if supported by libcurl.</li>
</ul></li>
<li>Ereg:
<ul>
<li><?php bugfix(69248); ?> (heap overflow vulnerability in regcomp.c). (CVE-2015-2305)</li>
</ul></li>
<li>FPM:
<ul>
<li><?php bugfix(68822); ?> (request time is reset too early).</li>
</ul></li>
<li>ODBC:
<ul>
<li><?php bugfix(68964); ?> (Allowed memory size exhausted with odbc_exec).</li>
</ul></li>
<li>Opcache:
<ul>
<li><?php bugfix(69159); ?> (Opcache causes problem when passing a variable variable to a function).</li>
<li><?php bugfix(69125); ?> (Array numeric string as key).</li>
<li><?php bugfix(69038); ?> (switch(SOMECONSTANT) misbehaves).</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(68912); ?> (Segmentation fault at openssl_spki_new).</li>
<li><?php bugfix(61285); ?>, <?php bugl(68329); ?>, <?php bugl(68046); ?>, <?php bugl(41631); ?> (encrypted streams don't observe socket timeouts).</li>
<li><?php bugfix(68920); ?> (use strict peer_fingerprint input checks) (Daniel Lowrey)</li>
<li><?php bugfix(68879); ?> (IP Address fields in subjectAltNames not used) (Daniel Lowrey)</li>
<li><?php bugfix(68265); ?> (SAN match fails with trailing DNS dot) (Daniel Lowrey)</li>
<li><?php bugfix(67403); ?> (Add signatureType to openssl_x509_parse) (Daniel Lowrey)</li>
<li><?php bugfix(69195); ?> (Inconsistent stream crypto values across versions) (Daniel Lowrey)</li>
</ul></li>
<li>pgsql:
<ul>
<li><?php bugfix(68638); ?> (pg_update() fails to store infinite values).</li>
</ul></li>
<li>Readline:
<ul>
<li><?php bugfix(69054); ?> (Null dereference in readline_(read|write)_history() without parameters).</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(69085); ?> (SoapClient's __call() type confusion through unserialize()). (CVE-2015-4147, CVE-2015-4148)</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(69108); ?> ("Segmentation fault" when (de)serializing SplObjectStorage).</li>
<li><?php bugfix(68557); ?> (RecursiveDirectoryIterator::seek(0) broken after calling getChildren()).</li>
</ul></li>
<li>ZIP:
<ul>
<li><?php bugfix(69253); ?> (ZIP Integer Overflow leads to writing past heap boundary). (CVE-2015-2331)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.5.23"><!-- {{{ 5.5.23 -->
<h3>Version 5.5.23</h3>
<?php release_date('19-Mar-2015'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(69174); ?> (leaks when unused inner class use traits precedence).</li>
<li><?php bugfix(69139); ?> (Crash in gc_zval_possible_root on unserialize).</li>
<li><?php bugfix(69121); ?> (Segfault in get_current_user when script owner is not in passwd with ZTS build).</li>
<li><?php bugfix(65593); ?> (Segfault when calling ob_start from output buffering callback).</li>
<li><?php bugfix(69017); ?> (Fail to push to the empty array with the constant value defined in class scope).</li>
<li><?php bugfix(68986); ?> (pointer returned by php_stream_fopen_temporary_file not validated in memory.c).</li>
<li><?php bugfix(68166); ?> (Exception with invalid character causes segv).</li>
<li><?php bugfix(69141); ?> (Missing arguments in reflection info for some builtin functions).</li>
<li><?php bugfix(68976); ?> (Use After Free Vulnerability in unserialize()). (CVE-2015-2787)</li>
<li><?php bugfix(69134); ?> (Per Directory Values overrides PHP_INI_SYSTEM configuration options).</li>
<li><?php bugfix(69207); ?> (move_uploaded_file allows nulls in path). (CVE-2015-2348)</li>
</ul></li>
<li>CGI:
<ul>
<li><?php bugfix(69015); ?> (php-cgi's getopt does not see $argv).</li>
</ul></li>
<li>CLI:
<ul>
<li><?php bugfix(67741); ?> (auto_prepend_file messes up __LINE__).</li>
</ul></li>
<li>cURL:
<ul>
<li><?php bugfix(69088); ?> (PHP_MINIT_FUNCTION does not fully initialize cURL on Win32).</li>
<li>Add CURLPROXY_SOCKS4A and CURLPROXY_SOCKS5_HOSTNAME constants if supported by libcurl.</li>
</ul></li>
<li>Ereg:
<ul>
<li><?php bugfix(69248); ?> (heap overflow vulnerability in regcomp.c). (CVE-2015-2305)</li>
</ul></li>
<li>FPM:
<ul>
<li><?php bugfix(68822); ?> (request time is reset too early).</li>
</ul></li>
<li>ODBC:
<ul>
<li><?php bugfix(68964); ?> (Allowed memory size exhausted with odbc_exec).</li>
</ul></li>
<li>Opcache:
<ul>
<li><?php bugfix(69125); ?> (Array numeric string as key).</li>
<li><?php bugfix(69038); ?> (switch(SOMECONSTANT) misbehaves).</li>
</ul></li>
<li>OpenSSL:
<ul>
<li><?php bugfix(61285); ?>, <?php bugl(68329); ?>, <?php bugl(68046); ?>, <?php bugl(41631); ?> (encrypted streams don't observe socket timeouts).</li>
</ul></li>
<li>pgsql:
<ul>
<li><?php bugfix(68638); ?> (pg_update() fails to store infinite values).</li>
</ul></li>
<li>Readline:
<ul>
<li><?php bugfix(69054); ?> (Null dereference in readline_(read|write)_history() without parameters).</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(69085); ?> (SoapClient's __call() type confusion through unserialize()). (CVE-2015-4147, CVE-2015-4148)</li>
</ul></li>
<li>SPL:
<ul>
<li><?php bugfix(69108); ?> ("Segmentation fault" when (de)serializing SplObjectStorage).</li>
<li><?php bugfix(68557); ?> (RecursiveDirectoryIterator::seek(0) broken after calling getChildren()).</li>
</ul></li>
<li>ZIP:
<ul>
<li><?php bugfix(69253); ?> (ZIP Integer Overflow leads to writing past heap boundary). (CVE-2015-2331)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.4.39"><!-- {{{ 5.4.39 -->
<h3>Version 5.4.39</h3>
<?php release_date('19-Mar-2015'); ?>
<ul><li>Core:
<ul>
<li><?php bugfix(68976); ?> (Use After Free Vulnerability in unserialize()). (CVE-2015-2787)</li>
<li><?php bugfix(69134); ?> (Per Directory Values overrides PHP_INI_SYSTEM configuration options).</li>
<li><?php bugfix(69207); ?> (move_uploaded_file allows nulls in path). (CVE-2015-2348)</li>
</ul></li>
<li>Ereg:
<ul>
<li><?php bugfix(69248); ?> (heap overflow vulnerability in regcomp.c). (CVE-2015-2305)</li>
</ul></li>
<li>SOAP:
<ul>
<li><?php bugfix(69085); ?> (SoapClient's __call() type confusion through unserialize()). (CVE-2015-4147, CVE-2015-4148)</li>
</ul></li>
<li>ZIP:
<ul>
<li><?php bugfix(69253); ?> (ZIP Integer Overflow leads to writing past heap boundary). (CVE-2015-2331)</li>
</ul></li>
</ul>
<!-- }}} --></section>
<section class="version" id="5.6.6"><!-- {{{ 5.6.6 -->
<h3>Version 5.6.6</h3>
<?php release_date('19-Feb-2015'); ?>
<ul><li>Core:
<ul>
<li>Removed support for multi-line headers, as they are deprecated by RFC 7230.</li>
<li><?php bugfix(67068); ?> (getClosure returns somethings that's not a closure).</li>
<li><?php bugfix(68942); ?> (Use after free vulnerability in unserialize() with DateTimeZone). (CVE-2015-0273)</li>
<li><?php bugfix(68925); ?> (Mitigation for CVE-2015-0235 – GHOST: glibc gethostbyname buffer overflow).</li>
<li><?php bugfix(67988); ?> (htmlspecialchars() does not respect default_charset specified by ini_set).</li>
<li>Added NULL byte protection to exec, system and passthru.</li>
</ul></li>
<li>Dba:
<ul>
<li><?php bugfix(68711); ?> (useless comparisons).</li>
</ul></li>
<li>Enchant:
<ul>
<li><?php bugfix(68552); ?> (heap buffer overflow in enchant_broker_request_dict()). (CVE-2014-9705)</li>
</ul></li>
<li>Fileinfo:
<ul>
<li><?php bugfix(68827); ?> (Double free with disabled ZMM).</li>
<li><?php bugfix(67647); ?> (Bundled libmagic 5.17 does not detect quicktime files correctly).</li>
<li><?php bugfix(68731); ?> (finfo_buffer doesn't extract the correct mime with some gifs).</li>
</ul></li>
<li>FPM:
<ul>
<li><?php bugfix(66479); ?> (Wrong response to FCGI_GET_VALUES).</li>
<li><?php bugfix(68571); ?> (core dump when webserver close the socket).</li>
</ul></li>
<li>JSON:
<ul>
<li><?php bugfix(50224); ?> (json_encode() does not always encode a float as a float) by adding JSON_PRESERVE_ZERO_FRACTION.</li>
</ul></li>
<li>LIBXML:
<ul>
<li><?php bugfix(64938); ?> (libxml_disable_entity_loader setting is shared between threads).</li>
</ul></li>
<li>Mysqli:
<ul>