diff options
author | Remi Collet <remi@remirepo.net> | 2022-12-20 08:46:49 +0100 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2022-12-20 08:46:49 +0100 |
commit | 80d876b4f8d57b3b46c3d61cc6e8acb937820839 (patch) | |
tree | c9de72e8e89fd99db804df96d8772c19813d5ff0 /php70.spec | |
parent | 496438641eb67581cbd56ad2a9dfd934060e60e3 (diff) |
pdo: fix #81740: PDO::quote() may return unquoted string
CVE-2022-31631
use oracle client library version 21.8
Diffstat (limited to 'php70.spec')
-rw-r--r-- | php70.spec | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -26,7 +26,7 @@ %global mysql_sock %(mysql_config --socket 2>/dev/null || echo /var/lib/mysql/mysql.sock) -%global oraclever 21.7 +%global oraclever 21.8 %global oraclelib 21.1 # Build for LiteSpeed Web Server (LSAPI) @@ -109,7 +109,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: %{upver}%{?rcver:~%{rcver}} -Release: 35%{?dist} +Release: 36%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -227,6 +227,7 @@ Patch255: php-bug81719.patch Patch256: php-bug81720.patch Patch257: php-bug81727.patch Patch258: php-bug81726.patch +Patch259: php-bug81740.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -1140,6 +1141,7 @@ echo CIBLE = %{name}-%{version}-%{release} oci8=%{with_oci8} libzip=%{with_libzi %patch256 -p1 -b .bug81720 %patch257 -p1 -b .bug81727 %patch258 -p1 -b .bug81726 +%patch259 -p1 -b .bug81740 # Fixes for tests %if 0%{?fedora} >= 21 || 0%{?rhel} >= 5 @@ -1937,7 +1939,7 @@ cat << EOF WARNING : PHP 7.0 have reached its "End of Life" in December 2018. Even, if this package includes some of - the important security fix, backported from 7.4, the + the important security fixes, backported from 8.0, the UPGRADE to a maintained version is very strongly RECOMMENDED. ===================================================================== @@ -2177,6 +2179,11 @@ fi %changelog +* Tue Dec 20 2022 Remi Collet <remi@remirepo.net> - 7.0.33-36 +- pdo: fix #81740: PDO::quote() may return unquoted string + CVE-2022-31631 +- use oracle client library version 21.8 + * Tue Sep 27 2022 Remi Collet <remi@remirepo.net> - 7.0.33-35 - phar: fix #81726 DOS when using quine gzip file. CVE-2022-31628 - core: fix #81727 Don't mangle HTTP variable names that clash with ones |