From 82ce61df14ef753eb2874fac38a93b2775e0f4c8 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 5 Jun 2024 07:52:29 +0200 Subject: Fix filter bypass in filter_var FILTER_VALIDATE_URL CVE-2024-5458 --- php73.spec | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'php73.spec') diff --git a/php73.spec b/php73.spec index 795e811..8430735 100644 --- a/php73.spec +++ b/php73.spec @@ -26,9 +26,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 @@ -122,7 +122,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: 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 @@ -209,6 +209,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 @@ -1209,6 +1210,7 @@ low-level PHP extension for the libsodium cryptographic library. %patch -P211 -p1 -b .cve3824 %patch -P212 -p1 -b .cve2756 %patch -P213 -p1 -b .cve3096 +%patch -P214 -p1 -b .cve5458 # Fixes for tests %if 0%{?fedora} >= 25 || 0%{?rhel} >= 6 @@ -2115,7 +2117,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. ===================================================================== @@ -2303,8 +2305,12 @@ 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.11 on x86_64, 19.19 on aarch64 +- 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 CVE-2024-2756 - Fix password_verify can erroneously return true opening ATO risk -- cgit