diff options
author | Petr Štetiar <ynezz@true.cz> | 2022-09-29 18:45:40 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2022-10-03 17:52:06 +0200 |
commit | f1b7e1434f66a3cb09cb9e70b40add354a22e458 (patch) | |
tree | 982b4329af93348be164fc7fb4d6f05f2f78f651 /package/utils | |
parent | 149fc3a269b435483b31df03d6fd9679286cf9e7 (diff) | |
download | openwrt-f1b7e1434f66a3cb09cb9e70b40add354a22e458.tar.gz openwrt-f1b7e1434f66a3cb09cb9e70b40add354a22e458.tar.bz2 openwrt-f1b7e1434f66a3cb09cb9e70b40add354a22e458.zip |
treewide: fix security issues by bumping all packages using libwolfssl
As wolfSSL is having hard time maintaining ABI compatibility between
releases, we need to manually force rebuild of packages depending on
libwolfssl and thus force their upgrade. Otherwise due to the ABI
handling we would endup with possibly two libwolfssl libraries in the
system, including the patched libwolfssl-5.5.1, but still have
vulnerable services running using the vulnerable libwolfssl-5.4.0.
So in order to propagate update of libwolfssl to latest stable release
done in commit ec8fb542ec3e4 ("wolfssl: fix TLSv1.3 RCE in uhttpd by
using 5.5.1-stable (CVE-2022-39173)") which fixes several remotely
exploitable vulnerabilities, we need to bump PKG_RELEASE of all
packages using wolfSSL library.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'package/utils')
-rw-r--r-- | package/utils/px5g-wolfssl/Makefile | 2 | ||||
-rw-r--r-- | package/utils/uencrypt/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/utils/px5g-wolfssl/Makefile b/package/utils/px5g-wolfssl/Makefile index 95517c5c00..ea805acd8b 100644 --- a/package/utils/px5g-wolfssl/Makefile +++ b/package/utils/px5g-wolfssl/Makefile @@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=px5g-wolfssl -PKG_RELEASE:=$(COMMITCOUNT) +PKG_RELEASE:=$(COMMITCOUNT).1 PKG_LICENSE:=GPL-2.0-or-later PKG_USE_MIPS16:=0 diff --git a/package/utils/uencrypt/Makefile b/package/utils/uencrypt/Makefile index 9307f97b6e..023c84b600 100644 --- a/package/utils/uencrypt/Makefile +++ b/package/utils/uencrypt/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=uencrypt -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_FLAGS:=nonshared PKG_LICENSE:=GPL-2.0-or-later |