diff options
author | Remi Collet <remi@remirepo.net> | 2021-02-03 11:16:59 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-02-03 11:16:59 +0100 |
commit | 4498f7f86cbfbcd38f852e7ad32061490d3c422b (patch) | |
tree | 4d3e0d6b89b6fc4166db88cbbdabca215478a289 /php70.spec | |
parent | 886c3c68ff81f54577ecc66753c1d946dfc44c8e (diff) |
Fix #80672 Null Dereference in SoapClient
CVE-2021-21702
better fix for #77423
Diffstat (limited to 'php70.spec')
-rw-r--r-- | php70.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: 24%{?dist} +Release: 25%{?dist} # All files licensed under PHP version 3.01, except # Zend is licensed under Zend # TSRM is licensed under BSD @@ -230,6 +230,7 @@ Patch244: php-bug79797.patch Patch245: php-bug79877.patch Patch246: php-bug79699.patch Patch247: php-bug77423.patch +Patch248: php-bug80672.patch # Fixes for tests (300+) # Factory is droped from system tzdata @@ -1136,6 +1137,7 @@ echo CIBLE = %{name}-%{version}-%{release} oci8=%{with_oci8} libzip=%{with_libzi %patch245 -p1 -b .bug79877 %patch246 -p1 -b .bug79699 %patch247 -p1 -b .bug77423 +%patch248 -p1 -b .bug80672 # Fixes for tests %if 0%{?fedora} >= 21 || 0%{?rhel} >= 5 @@ -2173,6 +2175,11 @@ fi %changelog +* Wed Feb 3 2021 Remi Collet <remi@remirepo.net> - 7.0.33-25 +- Fix #80672 Null Dereference in SoapClient + CVE-2021-21702 +- better fix for #77423 + * Mon Jan 4 2021 Remi Collet <remi@remirepo.net> - 7.0.33-24 - Fix #77423 FILTER_VALIDATE_URL accepts URLs with invalid userinfo CVE-2020-7071 |