Redis Software release notes 8.2.0-25 (July 2026)
Database-scoped management roles. Data path command auditing.
| Redis Software |
|---|
Redis Software version 8.2.0 is now available!
Highlights
This version offers:
-
Database-scoped management roles
-
Data path command auditing
-
FIPS 140-3 support
New in this release
Database-scoped management roles
You can now scope the db_member and db_viewer management roles to specific databases instead of granting access to every database in the cluster. This lets you give application or tenant teams management access to only their own databases in a shared cluster.
-
To scope a role, specify the databases it applies to using the new
resourcesfield when you create or update a role. For example,"resources": [{"type": "db", "uids": ["1", "2"]}]scopes the role to databases1and2. -
Roles without a
resourcesscope continue to apply to all databases, so existing roles are unaffected. -
Users assigned a database-scoped role see only their authorized databases in the Cluster Manager UI and REST API responses, including database lists, metrics, alerts, and event logs. Other databases are hidden.
Data path command auditing
Redis Software now supports auditing of data path commands (CRUD operations), in addition to the existing connection auditing. This lets you record which commands run against a database, along with the connection and authentication context, and stream the audit records to an external audit destination for security monitoring and compliance.
-
Enable auditing per database with the new
audit_settingsconfiguration, choosing to audit connection events only (connection) or both connection events and commands (connection_and_crud). -
Filter audited commands by username, source IP address, or both to control the volume of audit data.
-
Monitor the auditing pipeline with new
audit_sink_*metrics.
For more information, see Audit events.
FIPS 140-3 support
Redis supports deployments on RHEL 9 VMs using cryptographic libraries based on FIPS 140-3 validated modules, enabling the use of FIPS-approved cryptographic algorithms in supported environments.
-
Install Redis Software on a RHEL 9 host that has FIPS mode enabled. See Supported platforms for the platforms validated for FIPS mode.
-
In FIPS mode, Redis Software uses only FIPS-approved cryptographic algorithms and cipher suites; non-approved ciphers and algorithms are blocked.
-
Because FIPS mode fixes the allowed cipher suites, you cannot change the cluster's TLS cipher suites while FIPS mode is enabled. Requests to update them return a
tls_cipher_update_not_allowederror.
For FIPS-mode limitations, see Increased memory usage in FIPS mode and SFTP storage not supported in FIPS mode.
Enhancements
-
Disable Basic authentication for the REST API. You can now disable Basic and Digest authentication for the cluster management REST API using the new
control_plane_basic_authenticationcluster setting. Basic authentication remains enabled by default; when you disable it, the cluster rejects Basic and Digest authentication on inbound REST API requests. Configure it withrladmin tune clusteror an update cluster settings REST API request. See Disable basic authentication for the REST API. -
Expose database tags in metrics. You can now expose selected database tags as labels in v2 metrics through a new
db_tagsmetric, so you can group, filter, and alert on database metrics by your own tags. Enable it in the cluster's metrics configuration using theexpose_db_tagsandmetrics_tag_keys_exposedsettings. -
Faster replica synchronization. Redis Software now manages gradual (parallel) synchronization through a
gradual_sync_policythat applies tuned defaults for common scenarios, such as migration, adding a replica, and Active-Active. This speeds up replica bootstrap in multi-node and multi-shard deployments, such as during upgrades and scaling events, while leaving small deployments unaffected. You can select a policy or set custom parameters withrladmin tune dbor the REST API. -
Certificate–cipher suite validation. When you upload a cluster certificate, Redis Software now validates that the certificate is compatible with the configured cipher suites and rejects incompatible certificates at upload time, so mismatches are caught early instead of surfacing later. For example, uploading an ECDSA certificate while only RSA-authenticated cipher suites are configured now fails at upload. The check applies to the control-plane certificates (such as
api,cm, andmetrics_exporter) and to the proxy certificate against the data-path cipher suites. If an upload is rejected, update either the certificate or the configured cipher suites so they are compatible.
Redis database versions and feature sets
Redis Software version 8.2.0 includes the following Redis database versions: 8.6.2, 8.4.0, 8.2.1, 8.0.2, 7.4.3, 7.2.7, and 6.2.13.
The default Redis database version is 8.6.
Redis Software includes multiple feature sets, compatible with different Redis database versions.
Show feature set details
The following table shows which Redis modules are compatible with each Redis database version included in this release.
| Redis database version | Compatible Redis modules |
|---|---|
| 8.6 | RediSearch 8.6 RedisJSON 8.6 RedisTimeSeries 8.6 RedisBloom 8.6 See What's new in Redis 8.6 and Redis Open Source 8.6 release notes |
| 8.4 | RediSearch 8.4 RedisJSON 8.4 RedisTimeSeries 8.4 RedisBloom 8.4 See What's new in Redis 8.4 and Redis Open Source 8.4 release notes |
| 8.2 | RediSearch 8.2 RedisJSON 8.2 RedisTimeSeries 8.2 RedisBloom 8.2 See What's new in Redis 8.2 and Redis Open Source 8.2 release notes |
| 8.0 | RediSearch 8.0 RedisJSON 8.0 RedisTimeSeries 8.0 RedisBloom 8.0 See What's new in Redis 8.0 and Redis Open Source 8.0 release notes |
| 7.4 | RediSearch 2.10 RedisJSON 2.8 RedisTimeSeries 1.12 RedisBloom 2.8 |
| 7.2 | RediSearch 2.8 RedisJSON 2.6 RedisTimeSeries 1.10 RedisBloom 2.6 |
| 6.2 | RediSearch 2.6 RedisJSON 2.4 RedisTimeSeries 1.8 RedisBloom 2.4 |
Resolved issues
-
RS200909: Fixed an issue where alert emails were not sent when the SMTP server was configured with STARTTLS and username/password authentication.
-
RS199037: Fixed an issue where Active-Active (CRDB) shard creation could fail with an invalid CRDT key type error.
-
RS199021: Fixed an issue where LDAP authentication could fail when a user's mapped group appeared beyond roughly the 100th entry in the group query results.
-
RS199012: Fixed a memory leak in
dmcproxythat could occur when a multi-key command received a localMOVEDorCROSSSLOTresponse. -
RS198858: Added a readiness endpoint to the
envoy_control_planeservice to improve health reporting. -
RS197703: Fixed an issue where an exception during first-node bootstrap could leave a cluster partially created without its modules.
-
RS196975: Fixed an issue where deleting and updating a user at the same time could corrupt the user record stored on the cluster, which was the underlying cause of cluster-wide ACL authentication failures.
-
RS196954: Fixed an issue where a user configuration could become corrupted if it was deleted and updated concurrently, which broke ACL authentication for all databases on the cluster and prevented users from connecting.
-
RS196903: Fixed an issue where upgrading a module could leave the shard manager stuck unless replica shards were stopped first.
-
RS196225: Fixed an issue where LDAP filters that use an
ORclause to match multiple attributes could fail to find a unique DN for some users after upgrading to Redis Software version 8.0.x. -
RS195811: Fixed an issue where the
search-workers-priority-bias-thresholdconfiguration could not be set at runtime. -
RS195106: Fixed a cluster upgrade issue where adding multiple nodes with a new version simultaneously to a cluster could cause node configuration data to be incorrectly deleted and lead to node addition failures.
-
RS195089: Fixed an issue where a major reconfiguration of an Active-Active database could cause an unnecessary full synchronization across all participating clusters.
-
RS194243: Fixed a memory leak in the Active-Active database syncer that could occur when a participating cluster became unavailable but was not removed from the CRDB configuration.
-
RS193861: Fixed an issue where a cluster could become unresponsive after a node was redeployed.
-
RS192993: Fixed an issue where creating a new user with just-in-time (JIT) provisioning could cause authentication to fail for all databases that use ACL-only authentication.
-
RS192582: Fixed an issue where the creation of Redis 8.x Active-Active databases could fail when no modules were specified due to missing module semantic versions in requests.
-
RS192405: Improved
dmcproxySSL handshake error messages to provide actionable context when a TLS version mismatch occurs. -
RS192048: Fixed an issue where a feature set incompatibility could cause a database upgrade to fail.
-
RS191757: Fixed an issue where a replica shard could fail to replicate and block failover for an extended period.
-
RS191347: Fixed an issue where an orphaned shard on a node could block maintenance mode and leave a database in an active-change-pending state.
-
RS190875: Fixed an issue where ciphers that use SHA-1 could not be removed when FIPS mode was enabled. FIPS mode now excludes SHA and CHACHA20 from
control_cipher_suites. -
RS188659: Fixed an issue where a valid IPv6 address could be misidentified as the localhost loopback address.
-
RS181161: Fixed an issue where access control users in an error state could not be deleted.
-
RS177787: Reduced the volume of message logs included in support packages.
-
RS176225: Fixed an issue where a backup exported from a Memcached database could not be imported.
-
RS148518: Fixed an issue where an SMTP server could not be configured to send email alerts.
-
RS144017: Fixed an issue where synchronization could fail with a
-BUSYKEY Target key name already existserror.
Version changes
Breaking changes
Redis Software version 8.2.0 introduces the following breaking changes:
-
Local import from Redis Software system directories is no longer supported. To improve security, database imports that use the
mount_pointsource can no longer read files from Redis Software system directories, including/opt/redislabs,/var/opt/redislabs,/etc/opt/redislabs, and any of their subdirectories.-
Import operations that reference files in these directories now fail.
-
Store import files in a non-system location accessible to Redis Software before you start the import.
-
-
smtp_passwordis now a write-only field in the Cluster API. To improve security, the API no longer returns the SMTP password in responses toGET /v1/cluster, and the Cluster Manager UI no longer reads or displays the existing password.-
Applications or scripts that previously expected
smtp_passwordto be returned by the Cluster API no longer receive this field. -
When you update SMTP settings, the existing password cannot be retrieved. To change the SMTP password, provide a new password as part of the update request.
-
-
Custom module upload is disabled by default. To improve security, custom (user-defined) module uploads are now disabled by default. A new cluster setting,
allow_modules_upload, controls access to the custom module upload APIs. When this setting is disabled (the default), requests toPOST /v2/modules/user-definedandPOST /v2/local/modules/user-defined/artifactsreturn403 modules_upload_disabled, regardless of user role.-
To enable custom module uploads, set
allow_modules_uploadtotruewith aPUT /v1/clusterrequest. -
Applications or automation that call the custom module upload APIs directly receive a
403 modules_upload_disabledresponse until the setting is enabled. -
Existing functionality for listing, deleting, and loading modules is unchanged.
-
OpenSSL version
Redis Software version 8.0.16 and later requires OpenSSL 3.3 or later.
Reserved ports
Make sure the following ports are open before upgrading Redis Software.
The following port was added as a reserved port in Redis Software version 8.0.18; however, it is optional instead of reserved in Redis Software version 8.0.20-44:
| Port | Process name | Usage |
|---|---|---|
| 3357 | reconciliation_tree_grpc | Internal communication |
Ports reserved as of Redis Software version 7.22.0:
| Port | Process name | Usage |
|---|---|---|
| 3346 | cluster_api_internal | Cluster API internal port |
| 3351 | cluster_watchdog_grpc_api | Cluster watchdog now supports gRPC |
| 3352 | grpc_service_mesh | gRPC communication between nodes |
| 3353 | local_grpc_service_mesh | Local gRPC services |
| 3354 | grpc_gossip_envoy | gRPC gossip protocol communication between nodes |
| 3355 | authentication_service | Authentication service internal port |
Ports reserved as of Redis Software version 7.8.2:
| Port | Process name | Usage |
|---|---|---|
| 3347 | cert_exporter | Reports cluster certificate metrics |
| 3348 | process_exporter | Reports process metrics for DMC and Redis processes |
| 3349 | cluster_wd_exporter | Reports cluster watchdog metrics |
| 3350 | db_controller | Internode communication |
| 9091 | node_exporter | Reports host node metrics related to CPU, memory, disk, and more |
| 9125 | statsd_exporter | Reports push metrics related to the DMC and syncer, and some cluster and node metrics |
See Ports and port ranges used by Redis Software for a complete list.
Deprecations
-
The
db_conns_auditingcluster policy and database configuration field is deprecated. Use theaudit_settings.audit_modefield instead. Settingdb_conns_auditingtotrueis equivalent to settingaudit_modetoconnection. See Audit events for the current auditing configuration. -
The
gradual_src_mode,gradual_sync_mode, andgradual_sync_max_shards_per_sourceparameters are deprecated. Usegradual_sync_policyinstead. You can set it withrladmin tune dbor the REST API. -
The
old_passwordfield inPOST /v1/users/passwordandPUT /v1/users/passwordrequests is deprecated and ignored. It was optional and had no effect when adding or resetting a password, so you can remove it from these requests.old_passwordis still required forDELETE /v1/users/password, which uses it to identify the password to delete. -
The following REST API fields, deprecated since Redis Software version 6.4.2, are removed in this release:
-
use_ipv6(cluster object) — useuse_external_ipv6instead. -
redis_cleanup_job_settings(job scheduler object) — usepersistence_cleanup_scan_intervalinstead.
-
Supported platforms
The following table provides a snapshot of supported platforms as of this Redis Software release. See the supported platforms reference for more details about operating system compatibility.
Amazon Linux 2 is no longer supported. Starting with Redis Software version 8.0.22, Redis Software no longer builds or publishes Amazon Linux 2 (amzn2) packages. Use Amazon Linux 2023 instead.
Show supported platforms
✅ Supported – The platform is supported for this version of Redis Software and Redis Stack modules.
⚠️ Deprecation warning – The platform is still supported for this version of Redis Software, but support will be removed in a future release.
| Redis Software major versions |
8.2 | 8.0 | 7.22 | 7.8 | 7.4 | 7.2 | 6.4 | 6.2 |
|---|---|---|---|---|---|---|---|---|
| Release date | Jul 2026 | Oct 2025 | May 2025 | Nov 2024 | Feb 2024 | Aug 2023 | Feb 2023 | Aug 2021 |
| End-of-life date | Determined after next major release |
Jul 2028 | Oct 2027 | May 2027 | Nov 2026 | Feb 2026 | Aug 2025 | Feb 2025 |
| Platforms | ||||||||
| RHEL 9 & compatible distros1 |
✅ | ✅ | ✅ | ✅ | ✅ | – | – | – |
| RHEL 9 FIPS mode5 |
✅ | ✅ | ✅ | ✅ | – | – | – | – |
| RHEL 8 & compatible distros1 |
✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| RHEL 7 & compatible distros1 |
– | – | – | – | – | ⚠️ | ⚠️ | ⚠️ |
| Ubuntu 22.042 | ✅ | ✅ | ✅ | ✅ | – | – | – | – |
| Ubuntu 20.042 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | – |
| Ubuntu 18.042 | – | – | – | – | ⚠️ | ⚠️ | ⚠️ | ⚠️ |
| Ubuntu 16.042 | – | – | – | – | – | ⚠️ | ⚠️ | ⚠️ |
| Amazon Linux 20236 | ✅ | ✅ | – | – | – | – | – | – |
| Amazon Linux 2 | – | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | – |
| Amazon Linux 1 | – | – | – | – | – | ⚠️ | ⚠️ | ⚠️ |
| Kubernetes3 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Docker4 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
-
The RHEL-compatible distributions CentOS, CentOS Stream, Alma, and Rocky are supported if they have full RHEL compatibility. Oracle Linux running the Red Hat Compatible Kernel (RHCK) is supported, but the Unbreakable Enterprise Kernel (UEK) is not supported.
-
The server version of Ubuntu is recommended for production installations. The desktop version is only recommended for development deployments.
-
See the Redis Enterprise for Kubernetes documentation for details about support per version and Kubernetes distribution.
-
Docker images of Redis Software are certified for development and testing only.
-
Supported only if FIPS was enabled during RHEL installation to ensure FIPS compliance.
-
Amazon Linux 2023 support was added in Redis Software version 8.0.20.
Downloads
The following table shows the SHA256 checksums for the available packages:
| Package | SHA256 checksum (8.2.0-25 July release) |
|---|---|
| Ubuntu 20 | e68acba411779c2a1ea419305e42d31d007959ed7dfe31cc7624a0ed34cee9ed |
| Ubuntu 22 (amd64) | 9113dc664965aaff8844b212a6625eda350c935eb8b436cb233194f213bc0893 |
| Ubuntu 22 (arm64) | a0611bc21fb97742100e8529f2ff56c4986175dedfa674e6abfba4e30bc7fc9a |
| Red Hat Enterprise Linux (RHEL) 8 | b0729139cf8cde0eb93e85b8e8fae82cf5b1e35d78eba972877148ee7f879186 |
| Red Hat Enterprise Linux (RHEL) 9 (amd64) | b4c540c9ed785a26af90e54e196d12c3ccb9e10ca8498fe9c17f2dcbbb2c6420 |
| Red Hat Enterprise Linux (RHEL) 9 (arm64) | 62aff83e8ff44ebd0ae9b7b94bd6fa815d2274fe8143d980e290c5daca64c0c6 |
| Red Hat Enterprise Linux (RHEL) 9 FIPS (amd64) | 1cb61db526cd1231b6cbbc79f1087c3c9afce7f0f578c5c5f55c9972b5b05462 |
| Amazon Linux 2023 (amd64) | 17ba316aaa3a59ac217453b470e89b95ec639e53e09bd3be47326b6869080c44 |
| Amazon Linux 2023 (arm64) | f4a3e5ee809a17ed1bf3b4ef54b0799df65102ac1829eac48655767441ed6219 |
Known issues
- RS155734: Endpoint availability metrics do not work as expected due to a calculation error.
Known limitations
Increased memory usage in FIPS mode
FIPS-enabled builds use more memory than non-FIPS builds. Each Go-based control-plane service uses roughly 34 MB more when running in FIPS mode, which adds up to approximately 210 MB of additional memory per node. Account for this overhead when sizing FIPS-enabled deployments. This limitation affects FIPS-enabled builds only.
SFTP storage not supported in FIPS mode
FIPS-enabled builds do not support SFTP as a storage location for backups, imports, or exports, because the SFTP library is not FIPS-compliant. In FIPS mode, use a different storage location. This limitation affects FIPS-enabled builds only.
Redis Search query failures during rolling upgrades across the 8.4 version boundary
Redis Search queries can fail during a rolling upgrade when a cluster contains shards running Redis versions earlier than 8.4 and shards running Redis version 8.4 or later, due to an internal protocol change introduced in version 8.4. This issue affects only clusters where parallel_shards_upgrade has been changed from its default value of 0. If both conditions apply, expect Redis Search downtime until all nodes are upgraded.
Trim ACKED not supported for Active-Active 8.4 databases
For Active-Active databases running Redis database version 8.4, the ACKED option is not supported for trimming commands.
Rolling upgrade limitation for clusters with custom or deprecated modules
Due to module handling changes introduced in Redis Software version 8.0, upgrading a cluster that contains custom or deprecated modules, such as RedisGraph and RedisGears v2, can become stuck when adding a new node to the cluster during a rolling upgrade.
Module commands limitation during Active-Active database upgrades to Redis 8.0
When upgrading an Active-Active database to Redis version 8.0, you cannot use module commands until all Active-Active database instances have been upgraded. Currently, these commands are not blocked automatically.
Redis 8.0 database cannot be created with flash
You cannot create a Redis 8.0 database with flash storage enabled. Create a Redis 8.0 database with RAM-only storage instead, or use Redis 8.2 for flash-enabled (Redis Flex) databases.
Cluster Manager UI limitations
The following legacy UI features are not yet available in the new Cluster Manager UI:
-
Purge an Active-Active instance.
Use
crdb-cli crdb purge-instanceinstead.
Security
Redis Open Source security fixes compatibility
As part of Redis's commitment to security, Redis Software implements the latest security fixes available with Redis Open Source. Redis Software has already included the fixes for the relevant CVEs.
Some CVEs announced for Redis Open Source do not affect Redis Software due to different or additional functionality available in Redis Software that is not available in Redis Open Source.
Redis Software 8.2.0-25 supports Redis Open Source 8.6, 8.4, 8.2, 8.0, 7.4, 7.2, and 6.2. Below is the list of Redis Open Source CVEs and other security vulnerabilities fixed by version.
Redis 8.6.x
-
VSET: Large
VADD REDUCEvalues can lead to out-of-memory crashes or buffer overflow. -
(CVE-2026-23479) When a blocked client is evicted while re-executing a blocked command, an authenticated user may trigger a use-after-free and potentially lead to remote code execution.
-
(CVE‑2026‑25243) A vulnerability in the Redis
RESTOREcommand allows an authenticated user to trigger an invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-25588) A vulnerability in the
RESTOREcommand, when used with the RedisTimeSeries module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE‑2026‑25589) A vulnerability in the
RESTOREcommand, when used with the RedisBloom module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-23631) An authenticated user may exploit the synchronization mechanism of the master-replica and trigger a use-after-free vulnerability, potentially leading to remote code execution. The bug affects only replicas that are configured, or may be configured with
replica-read-onlydisabled, and exists in all versions of Redis with Lua scripting. -
Insufficient sanitization of Lua script error messages can allow an authenticated user with
EVALpermission to inject arbitrary RESP protocol responses, leading to denial of service, data manipulation, and connection pool poisoning. -
RedisBloom: Integer overflow in
TopKRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
td_histogram_tRDB loading may lead to heap buffer overflow. -
RedisBloom: Missing validation in
CuckooFilterRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
SBChainandCMSketchRDB loading may lead to heap out-of-bounds write. -
Added validation of limits during RDB load and data creation to avoid resource exhaustion and Denial-of-Service (DoS) vulnerabilities.
Redis 8.4.x
-
VSET: Large
VADD REDUCEvalues can lead to out-of-memory crashes or buffer overflow. -
(CVE-2026-23479) When a blocked client is evicted while re-executing a blocked command, an authenticated user may trigger a use-after-free and potentially lead to remote code execution.
-
(CVE‑2026‑25243) A vulnerability in the Redis
RESTOREcommand allows an authenticated user to trigger an invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-25588) A vulnerability in the
RESTOREcommand, when used with the RedisTimeSeries module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE‑2026‑25589) A vulnerability in the
RESTOREcommand, when used with the RedisBloom module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-23631) An authenticated user may exploit the synchronization mechanism of the master-replica and trigger a use-after-free vulnerability, potentially leading to remote code execution. The bug affects only replicas that are configured, or may be configured with
replica-read-onlydisabled, and exists in all versions of Redis with Lua scripting. -
Insufficient sanitization of Lua script error messages can allow an authenticated user with
EVALpermission to inject arbitrary RESP protocol responses, leading to denial of service, data manipulation, and connection pool poisoning. -
RedisBloom: Integer overflow in
TopKRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
td_histogram_tRDB loading may lead to heap buffer overflow. -
RedisBloom: Missing validation in
CuckooFilterRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
SBChainandCMSketchRDB loading may lead to heap out-of-bounds write. -
Added validation of limits during RDB load and data creation to avoid resource exhaustion and Denial-of-Service (DoS) vulnerabilities.
Redis 8.2.x
-
VSET: Large
VADD REDUCEvalues can lead to out-of-memory crashes or buffer overflow. -
(CVE-2026-23479) When a blocked client is evicted while re-executing a blocked command, an authenticated user may trigger a use-after-free and potentially lead to remote code execution.
-
(CVE‑2026‑25243) A vulnerability in the Redis
RESTOREcommand allows an authenticated user to trigger an invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-25588) A vulnerability in the
RESTOREcommand, when used with the RedisTimeSeries module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE‑2026‑25589) A vulnerability in the
RESTOREcommand, when used with the RedisBloom module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-23631) An authenticated user may exploit the synchronization mechanism of the master-replica and trigger a use-after-free vulnerability, potentially leading to remote code execution. The bug affects only replicas that are configured, or may be configured with
replica-read-onlydisabled, and exists in all versions of Redis with Lua scripting. -
Insufficient sanitization of Lua script error messages can allow an authenticated user with
EVALpermission to inject arbitrary RESP protocol responses, leading to denial of service, data manipulation, and connection pool poisoning. -
RedisBloom: Integer overflow in
TopKRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
td_histogram_tRDB loading may lead to heap buffer overflow. -
RedisBloom: Missing validation in
CuckooFilterRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
SBChainandCMSketchRDB loading may lead to heap out-of-bounds write. -
Added validation of limits during RDB load and data creation to avoid resource exhaustion and Denial-of-Service (DoS) vulnerabilities.
-
RedisBloom: Restore invalid filter.
-
(CVE-2025-62507) A user can run the
XACKDELcommand with multiple IDs and trigger a stack buffer overflow, which can potentially lead to remote code execution. -
The
HGETEXcommand can lead to a buffer overflow. -
Integer overflow in
hllPatLen. -
RedisBloom: Cuckoo filter counter overflow.
-
RedisBloom: Invalid Bloom filters can cause arbitrary memory reads and writes.
-
RedisBloom: Reachable assert in
TopK_Create -
RedisBloom: Out-of-bounds access with empty Bloom chains.
-
RedisBloom: Division by zero in Cuckoo filter insertion.
-
(CVE-2025-46818) An authenticated user may use a specially crafted Lua script to manipulate different LUA objects and potentially run their own code in the context of another user.
-
(CVE-2025-46819) An authenticated user may use a specially crafted LUA script to read out-of-bound data or crash the server and lead to subsequent denial of service.
-
(CVE-2025-46817) An authenticated user may use a specially crafted Lua script to cause an integer overflow and potentially lead to remote code execution.
-
(CVE-2025-49844) An authenticated user may use a specially crafted Lua script to manipulate the garbage collector, trigger a use-after-free, and potentially lead to remote code execution.
Redis 8.0.x
-
VSET: Large
VADD REDUCEvalues can lead to out-of-memory crashes or buffer overflow. -
(CVE-2026-23479) When a blocked client is evicted while re-executing a blocked command, an authenticated user may trigger a use-after-free and potentially lead to remote code execution.
-
(CVE‑2026‑25243) A vulnerability in the Redis
RESTOREcommand allows an authenticated user to trigger an invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-25588) A vulnerability in the
RESTOREcommand, when used with the RedisTimeSeries module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE‑2026‑25589) A vulnerability in the
RESTOREcommand, when used with the RedisBloom module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-23631) An authenticated user may exploit the synchronization mechanism of the master-replica and trigger a use-after-free vulnerability, potentially leading to remote code execution. The bug affects only replicas that are configured, or may be configured with
replica-read-onlydisabled, and exists in all versions of Redis with Lua scripting. -
Insufficient sanitization of Lua script error messages can allow an authenticated user with
EVALpermission to inject arbitrary RESP protocol responses, leading to denial of service, data manipulation, and connection pool poisoning. -
RedisBloom: Integer overflow in
TopKRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
td_histogram_tRDB loading may lead to heap buffer overflow. -
RedisBloom: Missing validation in
CuckooFilterRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
SBChainandCMSketchRDB loading may lead to heap out-of-bounds write. -
Added validation of limits during RDB load and data creation to avoid resource exhaustion and Denial-of-Service (DoS) vulnerabilities.
-
RedisBloom: Restore invalid filter.
-
The
HGETEXcommand can lead to a buffer overflow. -
Integer overflow in
hllPatLen. -
RedisBloom: Cuckoo filter counter overflow.
-
RedisBloom: Invalid Bloom filters can cause arbitrary memory reads and writes.
-
RedisBloom: Reachable assert in
TopK_Create -
RedisBloom: Out-of-bounds access with empty Bloom chains.
-
RedisBloom: Division by zero in Cuckoo filter insertion.
-
(CVE-2025-46818) An authenticated user may use a specially crafted Lua script to manipulate different LUA objects and potentially run their own code in the context of another user.
-
(CVE-2025-46819) An authenticated user may use a specially crafted LUA script to read out-of-bound data or crash the server and lead to subsequent denial of service.
-
(CVE-2025-46817) An authenticated user may use a specially crafted Lua script to cause an integer overflow and potentially lead to remote code execution.
-
(CVE-2025-49844) An authenticated user may use a specially crafted Lua script to manipulate the garbage collector, trigger a use-after-free, and potentially lead to remote code execution.
Redis 7.4.x
-
(CVE-2026-23479) When a blocked client is evicted while re-executing a blocked command, an authenticated user may trigger a use-after-free and potentially lead to remote code execution.
-
(CVE‑2026‑25243) A vulnerability in the Redis
RESTOREcommand allows an authenticated user to trigger an invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-25588) A vulnerability in the
RESTOREcommand, when used with the RedisTimeSeries module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE‑2026‑25589) A vulnerability in the
RESTOREcommand, when used with the RedisBloom module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-23631) An authenticated user may exploit the synchronization mechanism of the master-replica and trigger a use-after-free vulnerability, potentially leading to remote code execution. The bug affects only replicas that are configured, or may be configured with
replica-read-onlydisabled, and exists in all versions of Redis with Lua scripting. -
Insufficient sanitization of Lua script error messages can allow an authenticated user with
EVALpermission to inject arbitrary RESP protocol responses, leading to denial of service, data manipulation, and connection pool poisoning. -
RedisBloom: Integer overflow in
TopKRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
td_histogram_tRDB loading may lead to heap buffer overflow. -
RedisBloom: Missing validation in
CuckooFilterRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
SBChainandCMSketchRDB loading may lead to heap out-of-bounds write. -
Added validation of limits during RDB load and data creation to avoid resource exhaustion and Denial-of-Service (DoS) vulnerabilities.
-
RedisBloom: Restore invalid filter.
-
Integer overflow in
hllPatLen. -
RedisBloom: Cuckoo filter counter overflow.
-
RedisBloom: Invalid Bloom filters can cause arbitrary memory reads and writes.
-
RedisBloom: Reachable assert in
TopK_Create -
RedisBloom: Out-of-bounds access with empty Bloom chains.
-
RedisBloom: Division by zero in Cuckoo filter insertion.
-
(CVE-2025-46818) An authenticated user may use a specially crafted Lua script to manipulate different LUA objects and potentially run their own code in the context of another user.
-
(CVE-2025-46819) An authenticated user may use a specially crafted LUA script to read out-of-bound data or crash the server and lead to subsequent denial of service.
-
(CVE-2025-46817) An authenticated user may use a specially crafted Lua script to cause an integer overflow and potentially lead to remote code execution.
-
(CVE-2025-49844) An authenticated user may use a specially crafted Lua script to manipulate the garbage collector, trigger a use-after-free, and potentially lead to remote code execution.
-
(CVE-2025-32023) An authenticated user can use a specially crafted string to trigger a stack/heap out-of-bounds write on HyperLogLog operations, which can lead to remote code execution.
-
(CVE-2025-21605) An unauthenticated client can cause unlimited growth of output buffers until the server runs out of memory or is terminated, which can lead to denial-of-service.
Redis 7.2.x
-
(CVE-2026-23479) When a blocked client is evicted while re-executing a blocked command, an authenticated user may trigger a use-after-free and potentially lead to remote code execution.
-
(CVE‑2026‑25243) A vulnerability in the Redis
RESTOREcommand allows an authenticated user to trigger an invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-25588) A vulnerability in the
RESTOREcommand, when used with the RedisTimeSeries module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE‑2026‑25589) A vulnerability in the
RESTOREcommand, when used with the RedisBloom module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-23631) An authenticated user may exploit the synchronization mechanism of the master-replica and trigger a use-after-free vulnerability, potentially leading to remote code execution. The bug affects only replicas that are configured, or may be configured with
replica-read-onlydisabled, and exists in all versions of Redis with Lua scripting. -
Insufficient sanitization of Lua script error messages can allow an authenticated user with
EVALpermission to inject arbitrary RESP protocol responses, leading to denial of service, data manipulation, and connection pool poisoning. -
RedisBloom: Integer overflow in
TopKRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
td_histogram_tRDB loading may lead to heap buffer overflow. -
RedisBloom: Missing validation in
CuckooFilterRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
SBChainandCMSketchRDB loading may lead to heap out-of-bounds write. -
Added validation of limits during RDB load and data creation to avoid resource exhaustion and Denial-of-Service (DoS) vulnerabilities.
-
RedisBloom: Restore invalid filter.
-
Integer overflow in
hllPatLen. -
RedisBloom: Cuckoo filter counter overflow.
-
RedisBloom: Invalid Bloom filters can cause arbitrary memory reads and writes.
-
RedisBloom: Reachable assert in
TopK_Create -
RedisBloom: Out-of-bounds access with empty Bloom chains.
-
RedisBloom: Division by zero in Cuckoo filter insertion.
-
(CVE-2025-46818) An authenticated user may use a specially crafted Lua script to manipulate different LUA objects and potentially run their own code in the context of another user.
-
(CVE-2025-46819) An authenticated user may use a specially crafted LUA script to read out-of-bound data or crash the server and lead to subsequent denial of service.
-
(CVE-2025-46817) An authenticated user may use a specially crafted Lua script to cause an integer overflow and potentially lead to remote code execution.
-
(CVE-2025-49844) An authenticated user may use a specially crafted Lua script to manipulate the garbage collector, trigger a use-after-free, and potentially lead to remote code execution.
-
(CVE-2025-32023) An authenticated user can use a specially crafted string to trigger a stack/heap out-of-bounds write on HyperLogLog operations, which can lead to remote code execution.
-
(CVE-2025-21605) An unauthenticated client can cause unlimited growth of output buffers until the server runs out of memory or is terminated, which can lead to denial-of-service.
-
(CVE-2024-31449) An authenticated user may use a specially crafted Lua script to trigger a stack buffer overflow in the bit library, which may potentially lead to remote code execution.
-
(CVE-2024-31228) An authenticated user can trigger a denial-of-service by using specially crafted, long string match patterns on supported commands such as
KEYS,SCAN,PSUBSCRIBE,FUNCTION LIST,COMMAND LIST, and ACL definitions. Matching of extremely long patterns may result in unbounded recursion, leading to stack overflow and process crashes. -
(CVE-2023-41056) In some cases, Redis may incorrectly handle resizing of memory buffers, which can result in incorrect accounting of buffer sizes and lead to heap overflow and potential remote code execution.
-
(CVE-2023-41053) Redis does not correctly identify keys accessed by
SORT_ROand, as a result, may grant users executing this command access to keys that are not explicitly authorized by the ACL configuration. (Redis 7.2.1)
Redis 7.0.x
-
(CVE-2024-31449) An authenticated user may use a specially crafted Lua script to trigger a stack buffer overflow in the bit library, which may potentially lead to remote code execution.
-
(CVE-2024-31228) An authenticated user can trigger a denial-of-service by using specially crafted, long string match patterns on supported commands such as
KEYS,SCAN,PSUBSCRIBE,FUNCTION LIST,COMMAND LIST, and ACL definitions. Matching of extremely long patterns may result in unbounded recursion, leading to stack overflow and process crashes. -
(CVE-2023-41056) In some cases, Redis may incorrectly handle resizing of memory buffers, which can result in incorrect accounting of buffer sizes and lead to heap overflow and potential remote code execution.
-
(CVE-2023-41053) Redis does not correctly identify keys accessed by
SORT_ROand, as a result, may grant users executing this command access to keys that are not explicitly authorized by the ACL configuration. (Redis 7.0.13) -
(CVE-2023-36824) Extracting key names from a command and a list of arguments may, in some cases, trigger a heap overflow and result in reading random heap memory, heap corruption, and potentially remote code execution. Specifically: using
COMMAND GETKEYS*and validation of key names in ACL rules. (Redis 7.0.12) -
(CVE-2023-28856) Authenticated users can use the
HINCRBYFLOATcommand to create an invalid hash field that will crash Redis on access. (Redis 7.0.11) -
(CVE-2023-28425) Specially crafted
MSETNXcommands can lead to assertion and denial-of-service. (Redis 7.0.10) -
(CVE-2023-25155) Specially crafted
SRANDMEMBER,ZRANDMEMBER, andHRANDFIELDcommands can trigger an integer overflow, resulting in a runtime assertion and termination of the Redis server process. (Redis 7.0.9) -
(CVE-2023-22458) Integer overflow in the Redis
HRANDFIELDandZRANDMEMBERcommands can lead to denial-of-service. (Redis 7.0.8) -
(CVE-2022-36021) String matching commands (like
SCANorKEYS) with a specially crafted pattern to trigger a denial-of-service attack on Redis can cause it to hang and consume 100% CPU time. (Redis 7.0.9) -
(CVE-2022-35977) Integer overflow in the Redis
SETRANGEandSORT/SORT_ROcommands can drive Redis to OOM panic. (Redis 7.0.8) -
(CVE-2022-35951) Executing an
XAUTOCLAIMcommand on a stream key in a specific state, with a specially craftedCOUNTargument, may cause an integer overflow, a subsequent heap overflow, and potentially lead to remote code execution. The problem affects Redis versions 7.0.0 or newer. (Redis 7.0.5) -
(CVE-2022-31144) A specially crafted
XAUTOCLAIMcommand on a stream key in a specific state may result in heap overflow and potentially remote code execution. The problem affects Redis versions 7.0.0 or newer. (Redis 7.0.4) -
(CVE-2022-24834) A specially crafted Lua script executing in Redis can trigger a heap overflow in the cjson and cmsgpack libraries, and result in heap corruption and potentially remote code execution. The problem exists in all versions of Redis with Lua scripting support, starting from 2.6, and affects only authenticated and authorized users. (Redis 7.0.12)
-
(CVE-2022-24736) An attacker attempting to load a specially crafted Lua script can cause NULL pointer dereference which will result in a crash of the
redis-serverprocess. This issue affects all versions of Redis. (Redis 7.0.0) -
(CVE-2022-24735) By exploiting weaknesses in the Lua script execution environment, an attacker with access to Redis can inject Lua code that will execute with the (potentially higher) privileges of another Redis user. (Redis 7.0.0)
Redis 6.2.x
-
(CVE-2026-23479) When a blocked client is evicted while re-executing a blocked command, an authenticated user may trigger a use-after-free and potentially lead to remote code execution.
-
(CVE‑2026‑25243) A vulnerability in the Redis
RESTOREcommand allows an authenticated user to trigger an invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-25588) A vulnerability in the
RESTOREcommand, when used with the RedisTimeSeries module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE‑2026‑25589) A vulnerability in the
RESTOREcommand, when used with the RedisBloom module, allows an authenticated attacker to trigger invalid memory access via a specially crafted serialized payload, potentially resulting in remote code execution. -
(CVE-2026-23631) An authenticated user may exploit the synchronization mechanism of the master-replica and trigger a use-after-free vulnerability, potentially leading to remote code execution. The bug affects only replicas that are configured, or may be configured with
replica-read-onlydisabled, and exists in all versions of Redis with Lua scripting. -
Insufficient sanitization of Lua script error messages can allow an authenticated user with
EVALpermission to inject arbitrary RESP protocol responses, leading to denial of service, data manipulation, and connection pool poisoning. -
RedisBloom: Integer overflow in
TopKRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
td_histogram_tRDB loading may lead to heap buffer overflow. -
RedisBloom: Missing validation in
CuckooFilterRDB loading may lead to heap out-of-bounds access. -
RedisBloom: Missing validation in
SBChainandCMSketchRDB loading may lead to heap out-of-bounds write. -
Added validation of limits during RDB load and data creation to avoid resource exhaustion and Denial-of-Service (DoS) vulnerabilities.
-
RedisBloom: Restore invalid filter.
-
Integer overflow in
hllPatLen. -
RedisBloom: Cuckoo filter counter overflow.
-
RedisBloom: Invalid Bloom filters can cause arbitrary memory reads and writes.
-
RedisBloom: Reachable assert in
TopK_Create -
RedisBloom: Out-of-bounds access with empty Bloom chains.
-
RedisBloom: Division by zero in Cuckoo filter insertion.
-
(CVE-2025-46818) An authenticated user may use a specially crafted Lua script to manipulate different LUA objects and potentially run their own code in the context of another user.
-
(CVE-2025-46819) An authenticated user may use a specially crafted LUA script to read out-of-bound data or crash the server and lead to subsequent denial of service.
-
(CVE-2025-46817) An authenticated user may use a specially crafted Lua script to cause an integer overflow and potentially lead to remote code execution.
-
(CVE-2025-49844) An authenticated user may use a specially crafted Lua script to manipulate the garbage collector, trigger a use-after-free, and potentially lead to remote code execution.
-
(CVE-2025-32023) An authenticated user can use a specially crafted string to trigger a stack/heap out-of-bounds write on HyperLogLog operations, which can lead to remote code execution.
-
(CVE-2025-21605) An unauthenticated client can cause unlimited growth of output buffers until the server runs out of memory or is terminated, which can lead to denial-of-service.
-
(CVE-2024-31449) An authenticated user may use a specially crafted Lua script to trigger a stack buffer overflow in the bit library, which may potentially lead to remote code execution.
-
(CVE-2024-31228) An authenticated user can trigger a denial-of-service by using specially crafted, long string match patterns on supported commands such as
KEYS,SCAN,PSUBSCRIBE,FUNCTION LIST,COMMAND LIST, and ACL definitions. Matching of extremely long patterns may result in unbounded recursion, leading to stack overflow and process crashes. -
(CVE-2023-28856) Authenticated users can use the
HINCRBYFLOATcommand to create an invalid hash field that will crash Redis on access. (Redis 6.2.12) -
(CVE-2023-25155) Specially crafted
SRANDMEMBER,ZRANDMEMBER, andHRANDFIELDcommands can trigger an integer overflow, resulting in a runtime assertion and termination of the Redis server process. (Redis 6.2.11) -
(CVE-2023-22458) Integer overflow in the Redis
HRANDFIELDandZRANDMEMBERcommands can lead to denial-of-service. (Redis 6.2.9) -
(CVE-2022-36021) String matching commands (like
SCANorKEYS) with a specially crafted pattern to trigger a denial-of-service attack on Redis can cause it to hang and consume 100% CPU time. (Redis 6.2.11) -
(CVE-2022-35977) Integer overflow in the Redis
SETRANGEandSORT/SORT_ROcommands can drive Redis to OOM panic. (Redis 6.2.9) -
(CVE-2022-24834) A specially crafted Lua script executing in Redis can trigger a heap overflow in the cjson and cmsgpack libraries, and result in heap corruption and potentially remote code execution. The problem exists in all versions of Redis with Lua scripting support, starting from 2.6, and affects only authenticated and authorized users. (Redis 6.2.13)
-
(CVE-2022-24736) An attacker attempting to load a specially crafted Lua script can cause NULL pointer dereference which will result in a crash of the
redis-serverprocess. This issue affects all versions of Redis. (Redis 6.2.7) -
(CVE-2022-24735) By exploiting weaknesses in the Lua script execution environment, an attacker with access to Redis can inject Lua code that will execute with the (potentially higher) privileges of another Redis user. (Redis 6.2.7)
-
(CVE-2021-41099) Integer to heap buffer overflow handling certain string commands and network payloads, when
proto-max-bulk-lenis manually configured to a non-default, very large value. (Redis 6.2.6) -
(CVE-2021-32762) Integer to heap buffer overflow issue in
redis-cliandredis-sentinelparsing large multi-bulk replies on some older and less common platforms. (Redis 6.2.6) -
(CVE-2021-32761) An integer overflow bug in Redis version 2.2 or newer can be exploited using the
BITFIELDcommand to corrupt the heap and potentially result with remote code execution. (Redis 6.2.5) -
(CVE-2021-32687) Integer to heap buffer overflow with intsets, when
set-max-intset-entriesis manually configured to a non-default, very large value. (Redis 6.2.6) -
(CVE-2021-32675) Denial Of Service when processing RESP request payloads with a large number of elements on many connections. (Redis 6.2.6)
-
(CVE-2021-32672) Random heap reading issue with Lua Debugger. (Redis 6.2.6)
-
(CVE-2021-32628) Integer to heap buffer overflow handling ziplist-encoded data types, when configuring a large, non-default value for
hash-max-ziplist-entries,hash-max-ziplist-value,zset-max-ziplist-entriesorzset-max-ziplist-value. (Redis 6.2.6) -
(CVE-2021-32627) Integer to heap buffer overflow issue with streams, when configuring a non-default, large value for
proto-max-bulk-lenandclient-query-buffer-limit. (Redis 6.2.6) -
(CVE-2021-32626) Specially crafted Lua scripts may result with Heap buffer overflow. (Redis 6.2.6)
-
(CVE-2021-32625) An integer overflow bug in Redis version 6.0 or newer can be exploited using the STRALGO LCS command to corrupt the heap and potentially result with remote code execution. This is a result of an incomplete fix by CVE-2021-29477. (Redis 6.2.4)
-
(CVE-2021-29478) An integer overflow bug in Redis 6.2 could be exploited to corrupt the heap and potentially result with remote code execution. The vulnerability involves changing the default set-max-intset-entries configuration value, creating a large set key that consists of integer values and using the COPY command to duplicate it. The integer overflow bug exists in all versions of Redis starting with 2.6, where it could result with a corrupted RDB or DUMP payload, but not exploited through COPY (which did not exist before 6.2). (Redis 6.2.3)
-
(CVE-2021-29477) An integer overflow bug in Redis version 6.0 or newer could be exploited using the STRALGO LCS command to corrupt the heap and potentially result in remote code execution. The integer overflow bug exists in all versions of Redis starting with 6.0. (Redis 6.2.3)