diff options
author | Remi Collet <remi@remirepo.net> | 2021-02-03 09:32:19 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-02-03 09:32:19 +0100 |
commit | dd857d5102875f14dcbd964c3c1cbe596fd6f0f9 (patch) | |
tree | 168024036911b97b72156d2180815a0efc70685b /php72.spec | |
parent | 254b4fed7120d5a01015ca1b1a597f9d68ffbb73 (diff) |
Fix #80672 Null Dereference in SoapClient
CVE-2021-21702
better fix for #77423
Diffstat (limited to 'php72.spec')
-rw-r--r-- | php72.spec | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -124,7 +124,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: %{upver}%{?rcver:~%{rcver}} -Release: 2%{?dist} +Release: 3%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -191,6 +191,7 @@ Patch91: php-7.2.0-oci8conf.patch # Security fixes (200+) Patch200: php-bug77423.patch +Patch201: php-bug80672.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -1127,6 +1128,7 @@ low-level PHP extension for the libsodium cryptographic library. # security patches %patch200 -p1 -b .bug77423 +%patch201 -p1 -b .bug80672 # Fixes for tests %if 0%{?fedora} >= 25 || 0%{?rhel} >= 6 @@ -2049,6 +2051,19 @@ fi %endif +%posttrans common +cat << EOF +===================================================================== + + WARNING : PHP 7.2 have reached its "End of Life" in + November 2020. Even, if this package includes some of + the important security fix, backported from 7.3, the + UPGRADE to a maintained version is very strongly RECOMMENDED. + +===================================================================== +EOF + + %{!?_licensedir:%global license %%doc} %files @@ -2227,6 +2242,11 @@ fi %changelog +* Wed Feb 3 2021 Remi Collet <remi@remirepo.net> - 7.2.34-3 +- Fix #80672 Null Dereference in SoapClient + CVE-2021-21702 +- better fix for #77423 + * Mon Jan 4 2021 Remi Collet <remi@remirepo.net> - 7.2.34-2 - Fix #77423 FILTER_VALIDATE_URL accepts URLs with invalid userinfo CVE-2020-7071 |