summaryrefslogtreecommitdiffstats
path: root/php.spec
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2023-02-14 16:48:17 +0100
committerRemi Collet <remi@php.net>2023-02-14 16:48:17 +0100
commit0afe7affd1c4b8948654e006e64ec07f77098e03 (patch)
tree35217c709b96bed65de2247d0ebb9b4a4ac63b38 /php.spec
parentcd26a77467429c662fa2f8b94379ea28787924bf (diff)
fix #81744: Password_verify() always return true with some hash
CVE-2023-0567 fix #81746: 1-byte array overrun in common path resolve code CVE-2023-0568 fix DOS vulnerability when parsing multipart request body CVE-2023-0662
Diffstat (limited to 'php.spec')
-rw-r--r--php.spec16
1 files changed, 15 insertions, 1 deletions
diff --git a/php.spec b/php.spec
index ba0f09d..900e02f 100644
--- a/php.spec
+++ b/php.spec
@@ -126,7 +126,7 @@
Summary: PHP scripting language for creating dynamic web sites
Name: %{?scl_prefix}php
Version: %{upver}%{?rcver:~%{rcver}}
-Release: 15%{?dist}
+Release: 16%{?dist}
# All files licensed under PHP version 3.01, except
# Zend is licensed under Zend
# TSRM is licensed under BSD
@@ -206,6 +206,9 @@ Patch210: php-bug81727.patch
Patch211: php-bug81726.patch
Patch212: php-bug81738.patch
Patch213: php-bug81740.patch
+Patch214: php-bug81744.patch
+Patch215: php-bug81746.patch
+Patch216: php-cve-2023-0662.patch
# Fixes for tests (300+)
# Factory is droped from system tzdata
@@ -979,6 +982,9 @@ sed -e 's/php-devel/%{?scl_prefix}php-devel/' -i scripts/phpize.in
%patch211 -p1 -b .bug81726
%patch212 -p1 -b .bug81738
%patch213 -p1 -b .bug81740
+%patch214 -p1 -b .bug81744
+%patch215 -p1 -b .bug81746
+%patch216 -p1 -b .cve0662
# Fixes for tests
%patch300 -p1 -b .datetests
@@ -1949,6 +1955,14 @@ EOF
%changelog
+* Tue Feb 14 2023 Remi Collet <remi@remirepo.net> - 7.2.34-16
+- fix #81744: Password_verify() always return true with some hash
+ CVE-2023-0567
+- fix #81746: 1-byte array overrun in common path resolve code
+ CVE-2023-0568
+- fix DOS vulnerability when parsing multipart request body
+ CVE-2023-0662
+
* Mon Dec 19 2022 Remi Collet <remi@remirepo.net> - 7.2.34-15
- pdo: fix #81740: PDO::quote() may return unquoted string
CVE-2022-31631