diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2021-02-23 13:59:42 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2021-02-23 13:59:42 +0000 |
commit | a77db6167dcd583afe60e770744483aa4c4ead41 (patch) | |
tree | c452831857ced4c6d527c4c548fe9fd8f5e27878 | |
parent | Document integer overflow on 32-bit systems (CVE-2021-21309): (diff) |
Security update to the recent version 5.0.11 if you use 32bit build of redis.
Integer overflow on 32-bit systems (CVE-2021-21309):
Redis 4.0 or newer uses a configurable limit for the maximum supported bulk
input size. By default, it is 512MB which is a safe value for all platforms.
If the limit is significantly increased, receiving a large request from a client
may trigger several integer overflow scenarios, which would result with buffer
overflow and heap corruption.
Various bugfixes.
Notes
Notes:
svn path=/head/; revision=566399
-rw-r--r-- | databases/redis5/Makefile | 2 | ||||
-rw-r--r-- | databases/redis5/distinfo | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/databases/redis5/Makefile b/databases/redis5/Makefile index 67eda5afe613..1195dabeb4d1 100644 --- a/databases/redis5/Makefile +++ b/databases/redis5/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= redis5 -PORTVERSION= 5.0.10 +PORTVERSION= 5.0.11 CATEGORIES= databases MASTER_SITES= https://download.redis.io/releases/ DISTNAME= redis-${PORTVERSION} diff --git a/databases/redis5/distinfo b/databases/redis5/distinfo index 049d59cccc16..db067fe4d982 100644 --- a/databases/redis5/distinfo +++ b/databases/redis5/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1610583961 -SHA256 (redis-5.0.10.tar.gz) = e30a5e7d1593a715cdda2a82deb90190816d06c9d1dc1ef5b36874878c683382 -SIZE (redis-5.0.10.tar.gz) = 1990507 +TIMESTAMP = 1614087571 +SHA256 (redis-5.0.11.tar.gz) = 418135c453a94aac24c24243b041fb978fcc3ea4e1e1f996c1d64b16ae6ac1aa +SIZE (redis-5.0.11.tar.gz) = 1995013 |