diff options
| author | Remi Collet <remi@remirepo.net> | 2025-12-18 08:14:15 +0100 |
|---|---|---|
| committer | Remi Collet <remi@php.net> | 2025-12-18 08:14:15 +0100 |
| commit | d92668863f81fe9ecad724a6bfd4911b1a878df2 (patch) | |
| tree | 65abf387b92f15b88d6d19695d7f597b1b24331b /php.spec | |
| parent | 191c11ffa4fdca689d62774e75ba85b131f8cea5 (diff) | |
GHSA-www2-q4fc-65wf
Fix Heap buffer overflow in array_merge()
CVE-2025-14178
Fix Information Leak of Memory in getimagesize
CVE-2025-14177
Diffstat (limited to 'php.spec')
| -rw-r--r-- | php.spec | 25 |
1 files changed, 23 insertions, 2 deletions
@@ -49,7 +49,7 @@ %global mysql_sock %(mysql_config --socket 2>/dev/null || echo /var/lib/mysql/mysql.sock) -%global oraclever 23.8 +%global oraclever 23.9 %global oraclemax 24 %global oraclelib 23.1 %global oracledir 23 @@ -125,7 +125,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: %{?scl_prefix}php Version: %{upver}%{?rcver:~%{rcver}}%{?gh_date:.%{gh_date}} -Release: 14%{?dist} +Release: 15%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -171,6 +171,8 @@ Patch9: php-8.0.6-deprecated.patch Patch11: php-8.0.30-icu.patch # Fix strict prototypes from 8.1 Patch12: php-8.0.30-proto.patch +# Fix for bash 5.3 (Fedora 43) +Patch13: php-7.4.33-bash53.patch # Functional changes # Use system nikic/php-parser @@ -225,6 +227,9 @@ Patch217: php-cve-2025-1219.patch Patch218: php-cve-2025-6491.patch Patch219: php-cve-2025-1220.patch Patch220: php-cve-2025-1735.patch +Patch221: php-cve-2025-14177.patch +Patch222: php-cve-2025-14178.patch +Patch223: php-ghsa-www2-q4fc-65wf.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -749,7 +754,11 @@ License: PHP and BSD %endif Requires: %{?scl_prefix}php-common%{?_isa} = %{version}-%{release} %if %{with libgd} +%if 0%{?rhel} +BuildRequires: gd3php-devel >= 2.3.3 +%else BuildRequires: pkgconfig(gdlib) >= 2.3.3 +%endif %else # Required to build the bundled GD library BuildRequires: pkgconfig(zlib) @@ -982,6 +991,7 @@ in pure PHP. %patch -P9 -p1 -b .deprecated %patch -P11 -p1 -b .icu74 %patch -P12 -p1 -b .proto +%patch -P13 -p1 -b .bash53 %patch -P41 -p1 -b .syslib %patch -P42 -p1 -b .systzdata @@ -1025,6 +1035,9 @@ rm ext/openssl/tests/p12_with_extra_certs.p12 %patch -P218 -p1 -b .cve6491 %patch -P219 -p1 -b .cve1220 %patch -P220 -p1 -b .cve1735 +%patch -P221 -p1 -b .cve14177 +%patch -P222 -p1 -b .cve14178 +%patch -P223 -p1 -b .ghsawwww2 # Fixes for tests %patch -P300 -p1 -b .datetests @@ -1921,6 +1934,14 @@ EOF %changelog +* Thu Dec 18 2025 Remi Collet <remi@remirepo.net> - 8.0.30-15 +- Fix Null byte termination in dns_get_record() + GHSA-www2-q4fc-65wf +- Fix Heap buffer overflow in array_merge() + CVE-2025-14178 +- Fix Information Leak of Memory in getimagesize + CVE-2025-14177 + * Thu Jul 3 2025 Remi Collet <remi@remirepo.net> - 8.0.30-14 - Fix pgsql extension does not check for errors during escaping CVE-2025-1735 |
