summaryrefslogtreecommitdiffstats
path: root/php.spec
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2023-02-15 10:38:19 +0100
committerRemi Collet <remi@php.net>2023-02-15 10:38:19 +0100
commita3a86755b6862c0d12ffde785217e0840ba14e4d (patch)
tree3ee49a8154e0c0e19d7e1764837953a1fdcee67f /php.spec
parent5595ebceecf9b0712790b5c1bf8ce3915846b2bc (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 1a961d1..a2d58f8 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: 23%{?dist}
+Release: 24%{?dist}
# All files licensed under PHP version 3.01, except
# Zend is licensed under Zend
# TSRM is licensed under BSD
@@ -224,6 +224,9 @@ Patch231: php-bug81720.patch
Patch232: php-bug81727.patch
Patch233: php-bug81726.patch
Patch234: php-bug81740.patch
+Patch235: php-bug81744.patch
+Patch236: php-bug81746.patch
+Patch237: php-cve-2023-0662.patch
# Fixes for tests (300+)
# Factory is droped from system tzdata
@@ -989,6 +992,9 @@ sed -e 's/php-devel/%{?scl_prefix}php-devel/' -i scripts/phpize.in
%patch232 -p1 -b .bug81727
%patch233 -p1 -b .bug81726
%patch234 -p1 -b .bug81740
+%patch235 -p1 -b .bug81744
+%patch236 -p1 -b .bug81746
+%patch237 -p1 -b .cve0662
# Fixes for tests
%patch300 -p1 -b .datetests
@@ -1952,6 +1958,14 @@ EOF
%changelog
+* Tue Feb 14 2023 Remi Collet <remi@remirepo.net> - 7.1.33-24
+- 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.1.33-23
- pdo: fix #81740: PDO::quote() may return unquoted string
CVE-2022-31631