diff options
author | Remi Collet <remi@remirepo.net> | 2025-07-03 10:13:58 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-07-03 10:13:58 +0200 |
commit | 0d81a871be1ee44feb37705fee67fd4ee6235d12 (patch) | |
tree | 2a4ae58b6d32a50823fa2ce42a061eca2bb5281b /php.spec | |
parent | 6e7731500aec13a717379932940501d43e49d1bb (diff) |
Fix pgsql extension does not check for errors during escaping
CVE-2025-1735
Fix NULL Pointer Dereference in PHP SOAP Extension via Large XML Namespace Prefix
CVE-2025-6491
Fix Null byte termination in hostnames
CVE-2025-1220
Diffstat (limited to 'php.spec')
-rw-r--r-- | php.spec | 18 |
1 files changed, 16 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.7 +%global oraclever 23.8 %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: 13%{?dist} +Release: 14%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -222,6 +222,9 @@ Patch214: php-cve-2025-1734.patch Patch215: php-cve-2025-1861.patch Patch216: php-cve-2025-1736.patch Patch217: php-cve-2025-1219.patch +Patch218: php-cve-2025-6491.patch +Patch219: php-cve-2025-1220.patch +Patch220: php-cve-2025-1735.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -1019,6 +1022,9 @@ rm ext/openssl/tests/p12_with_extra_certs.p12 %patch -P215 -p1 -b .cve1861 %patch -P216 -p1 -b .cve1736 %patch -P217 -p1 -b .cve1219 +%patch -P218 -p1 -b .cve6491 +%patch -P219 -p1 -b .cve1220 +%patch -P220 -p1 -b .cve1735 # Fixes for tests %patch -P300 -p1 -b .datetests @@ -1915,6 +1921,14 @@ EOF %changelog +* 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 +- Fix NULL Pointer Dereference in PHP SOAP Extension via Large XML Namespace Prefix + CVE-2025-6491 +- Fix Null byte termination in hostnames + CVE-2025-1220 + * Thu Mar 13 2025 Remi Collet <remi@remirepo.net> - 8.0.30-13 - Fix libxml streams use wrong `content-type` header when requesting a redirected resource CVE-2025-1219 |