diff options
author | Remi Collet <remi@remirepo.net> | 2024-06-05 08:21:46 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2024-06-05 08:21:46 +0200 |
commit | 7a10cb429bc937b8417a7abba498af05b430a0df (patch) | |
tree | 151b917903c399c0f3ee777411bae12d3254521f /php72.spec | |
parent | 84b7252a9b2f24360e7d207831985af6a731a11a (diff) |
Fix filter bypass in filter_var FILTER_VALIDATE_URL
CVE-2024-5458
Diffstat (limited to 'php72.spec')
-rw-r--r-- | php72.spec | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -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 @@ -121,7 +121,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: %{upver}%{?rcver:~%{rcver}} -Release: 21%{?dist} +Release: 22%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -210,6 +210,7 @@ Patch218: php-cve-2023-3823.patch Patch219: php-cve-2023-3824.patch Patch220: php-cve-2024-2756.patch Patch221: php-cve-2024-3096.patch +Patch222: php-cve-2024-5458.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -1165,6 +1166,7 @@ low-level PHP extension for the libsodium cryptographic library. %patch -P219 -p1 -b .cve3824 %patch -P220 -p1 -b .cve2756 %patch -P221 -p1 -b .cve3096 +%patch -P222 -p1 -b .cve5458 # Fixes for tests %if 0%{?fedora} >= 25 || 0%{?rhel} >= 6 @@ -2272,6 +2274,10 @@ EOF %changelog +* Tue Jun 4 2024 Remi Collet <remi@remirepo.net> - 7.2.34-22 +- Fix filter bypass in filter_var FILTER_VALIDATE_URL + CVE-2024-5458 + * Wed Apr 10 2024 Remi Collet <remi@remirepo.net> - 7.2.34-21 - 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 |