diff options
author | Remi Collet <remi@remirepo.net> | 2021-02-03 10:07:28 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-02-03 10:07:28 +0100 |
commit | d5f7f609c28f33b6233808480021735336830055 (patch) | |
tree | 207f9b4f6043d2de62958bb75ee8d2035f08c7b9 /php71.spec | |
parent | 57d207bca8d001f0ef4c0aab76a520459049203a (diff) |
Fix #80672 Null Dereference in SoapClient
CVE-2021-21702
better fix for #77423
Diffstat (limited to 'php71.spec')
-rw-r--r-- | php71.spec | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -123,7 +123,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: %{upver}%{?rcver:~%{rcver}} -Release: 11%{?dist} +Release: 12%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -205,6 +205,7 @@ Patch219: php-bug79877.patch Patch220: php-bug79601.patch Patch221: php-bug79699.patch Patch222: php-bug77423.patch +Patch223: php-bug80672.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -1083,6 +1084,7 @@ support for JavaScript Object Notation (JSON) to PHP. %patch220 -p1 -b .bug79601 %patch221 -p1 -b .bug79699 %patch222 -p1 -b .bug77423 +%patch223 -p1 -b .bug80672 # Fixes for tests %if 0%{?fedora} >= 25 || 0%{?rhel} >= 6 @@ -2157,6 +2159,11 @@ EOF %changelog +* Wed Feb 3 2021 Remi Collet <remi@remirepo.net> - 7.1.33-12 +- Fix #80672 Null Dereference in SoapClient + CVE-2021-21702 +- better fix for #77423 + * Mon Jan 4 2021 Remi Collet <remi@remirepo.net> - 7.1.33-11 - Fix #77423 FILTER_VALIDATE_URL accepts URLs with invalid userinfo CVE-2020-7071 |