From 13a3244124b870632454ec8452fdcca0ebfe37af Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 5 Jun 2024 07:52:16 +0200 Subject: Fix filter bypass in filter_var FILTER_VALIDATE_URL CVE-2024-5458 --- php.spec | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'php.spec') diff --git a/php.spec b/php.spec index 7a1db7e..6b412b7 100644 --- a/php.spec +++ b/php.spec @@ -56,9 +56,9 @@ %global mysql_sock %(mysql_config --socket 2>/dev/null || echo /var/lib/mysql/mysql.sock) %ifarch aarch64 -%global oraclever 19.19 +%global oraclever 19.22 %global oraclelib 19.1 -%global oracledir 19.19 +%global oracledir 19.22 %else %global oraclever 21.13 %global oraclelib 21.1 @@ -133,7 +133,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: %{?scl_prefix}php Version: %{upver}%{?rcver:~%{rcver}} -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 @@ -219,6 +219,7 @@ Patch210: php-cve-2023-3823.patch Patch211: php-cve-2023-3824.patch Patch212: php-cve-2024-2756.patch Patch213: php-cve-2024-3096.patch +Patch214: php-cve-2024-5458.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -1009,6 +1010,7 @@ sed -e 's/php-devel/%{?scl_prefix}php-devel/' -i scripts/phpize.in %patch -P211 -p1 -b .cve3824 %patch -P212 -p1 -b .cve2756 %patch -P213 -p1 -b .cve3096 +%patch -P214 -p1 -b .cve5458 # Fixes for tests %patch -P300 -p1 -b .datetests @@ -1787,7 +1789,7 @@ cat << EOF WARNING : PHP 7.3 have reached its "End of Life" in December 2021. Even, if this package includes some of - the important security fixes, backported from 8.0, the + the important security fixes, backported from 8.1, the UPGRADE to a maintained version is very strongly RECOMMENDED. ===================================================================== @@ -1968,6 +1970,10 @@ EOF %changelog +* Tue Jun 4 2024 Remi Collet - 7.3.33-14 +- Fix filter bypass in filter_var FILTER_VALIDATE_URL + CVE-2024-5458 + * Wed Apr 10 2024 Remi Collet - 7.3.33-13 - use oracle client library version 21.13 on x86_64, 19.19 on aarch64 - Fix __Host-/__Secure- cookie bypass due to partial CVE-2022-31629 fix -- cgit