The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-25589

CVE-2026-25589: RedisBloom Module RCE Vulnerability

CVE-2026-25589 is a remote code execution vulnerability in RedisBloom module for Redis that allows authenticated attackers to execute arbitrary code. This article covers the technical details, affected versions, and mitigations.

Published: May 7, 2026

CVE-2026-25589 Overview

CVE-2026-25589 is a heap-based memory corruption vulnerability [CWE-122] in RedisBloom, a probabilistic data structures module for Redis. All RedisBloom versions before 2.8.20 fail to validate serialized values processed through the Redis RESTORE command. An authenticated attacker with permission to execute RESTORE against a Redis server loaded with the RedisBloom module can submit a crafted serialized payload. The malformed payload triggers invalid memory access and may lead to remote code execution. The issue is fixed in RedisBloom version 2.8.20.

Critical Impact

Authenticated attackers with RESTORE permission can corrupt heap memory and potentially execute arbitrary code in the Redis process context.

Affected Products

  • RedisBloom module versions prior to 2.8.20
  • Redis deployments loading the RedisBloom module with default ACL permissions
  • Managed and self-hosted Redis instances exposing probabilistic data structure types (Bloom filter, Cuckoo filter, Count-Min Sketch, Top-K, t-digest)

Discovery Timeline

  • 2026-05-05 - CVE-2026-25589 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-25589

Vulnerability Analysis

The Redis RESTORE command reconstructs a key from a serialized binary blob produced by DUMP. When the target key type is provided by the RedisBloom module, the module's deserialization callbacks parse the supplied buffer to reconstruct internal data structures such as filter arrays, hash counters, and sketch metadata. RedisBloom versions before 2.8.20 do not perform sufficient bounds checking or structural validation on the deserialized fields. An attacker with write access to a database can craft a serialized payload that declares oversized or inconsistent length fields. During reconstruction, the module performs heap operations using attacker-controlled sizes, producing out-of-bounds writes on the heap.

Root Cause

The root cause is missing validation of length and offset fields inside RedisBloom's RESTORE deserialization handlers. The module trusts type metadata in the input buffer and allocates or copies memory based on those values without cross-checking against the buffer length. This produces a classic [CWE-122] heap buffer overflow when the deserializer writes past allocated heap chunks.

Attack Vector

Exploitation requires network access to the Redis endpoint and an authenticated session whose ACL permits the RESTORE command. The attacker calls RESTORE with a key name, TTL, and a malicious serialized RedisBloom payload. The deserializer processes the payload synchronously inside the Redis main thread, corrupting heap structures. Adjacent heap metadata or function pointers may be overwritten, enabling remote code execution in the security context of the redis-server process. The attack does not require user interaction.

No public proof-of-concept exploit has been released. Refer to the GitHub Security Advisory GHSA-7862-34pw-44wv for technical details.

Detection Methods for CVE-2026-25589

Indicators of Compromise

  • Unexpected redis-server crashes with SIGSEGV or jemalloc corruption messages in logs after a RESTORE operation
  • RESTORE commands originating from low-privileged or service accounts that historically only issue GET/SET traffic
  • New Bloom filter, Cuckoo filter, or Count-Min Sketch keys appearing immediately before a Redis process restart
  • Outbound connections from the Redis host to unfamiliar IP addresses following module activity

Detection Strategies

  • Enable Redis command auditing via MONITOR or the slow log to capture every RESTORE invocation and its source client
  • Alert on any RESTORE call against keys whose type is MBbloom--, MBbloomCF, CMSk-type, topk-type, or TDIS-TYPE
  • Correlate Redis process restarts with preceding RESTORE traffic in the same connection

Monitoring Recommendations

  • Forward Redis logs and command telemetry into a centralized analytics platform such as Singularity Data Lake for cross-source correlation with endpoint and network events
  • Apply behavioral AI detection on the Redis host through Singularity Endpoint to identify anomalous child processes or shellcode execution spawned from redis-server
  • Monitor ACL configuration changes that grant +restore to non-administrative users

How to Mitigate CVE-2026-25589

Immediate Actions Required

  • Upgrade the RedisBloom module to version 2.8.20 or later on every Redis instance that loads it
  • Audit Redis ACLs and remove +restore permission from any user that does not require it for replication or backup workflows
  • Restrict network access to Redis endpoints using firewall rules or service mesh policies, allowing only trusted application clients
  • Review recent RESTORE activity in slow logs and audit trails for any payloads targeting RedisBloom key types

Patch Information

The vendor fix is published in RedisBloom Release v2.8.20. The release adds validation of serialized field lengths and structural consistency before allocating or writing to heap buffers in the RESTORE deserialization paths. Operators using container images should rebuild against the patched module, and managed Redis service customers should confirm the patched module version with their provider.

Workarounds

  • Block the RESTORE command globally via ACL using ACL SETUSER default -restore for users that do not need it
  • Create a dedicated replication account with +restore and disable that account at the network layer for all non-replication clients
  • Disable the RedisBloom module in environments where probabilistic data structures are not in use, until patching is complete
bash
# Restrict RESTORE via Redis ACL until the patch is deployed
redis-cli ACL SETUSER default -restore
redis-cli ACL SETUSER appuser on >STRONG_PASSWORD ~* +@read +@write -restore -@dangerous
redis-cli ACL SAVE

# Verify the RedisBloom module version is 2.8.20 or later
redis-cli MODULE LIST | grep -A1 bf

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechRedisbloom

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.34%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-122
  • Vendor Resources
  • RedisBloom Release v2.8.20

  • GitHub Security Advisory GHSA-7862-34pw-44wv
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English