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-25588

CVE-2026-25588: RedisTimeSeries RCE Vulnerability

CVE-2026-25588 is a remote code execution flaw in RedisTimeSeries affecting versions before 1.12.14. Attackers can exploit improper validation in the RESTORE command to execute arbitrary code. Learn about affected versions, impact, and patches.

Published: May 7, 2026

CVE-2026-25588 Overview

CVE-2026-25588 is a heap-based memory corruption vulnerability [CWE-122] affecting RedisTimeSeries, the time-series module for Redis. The flaw exists in all versions before 1.12.14 and stems from improper validation of serialized values processed through the Redis RESTORE command. An authenticated attacker with permission to execute RESTORE on a server with the RedisTimeSeries module loaded can supply a crafted serialized payload. The payload triggers invalid memory access and may lead to remote code execution within the Redis server process.

Critical Impact

Authenticated attackers can achieve remote code execution on Redis servers running RedisTimeSeries by submitting a malicious serialized payload through the RESTORE command, compromising data confidentiality, integrity, and availability.

Affected Products

  • RedisTimeSeries module versions prior to 1.12.14
  • Redis deployments with the RedisTimeSeries module loaded
  • Any service exposing the RESTORE command to authenticated users on affected installations

Discovery Timeline

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

Technical Details for CVE-2026-25588

Vulnerability Analysis

The vulnerability resides in how RedisTimeSeries handles serialized data restored through the Redis RESTORE command. Redis modules can register custom data types that implement serialization and deserialization callbacks. When a client invokes RESTORE, Redis dispatches the serialized blob to the appropriate module callback for reconstruction. RedisTimeSeries does not properly validate the structure or bounds of fields within the serialized payload before allocating and writing to heap memory.

An attacker authenticated to the Redis instance can craft a payload that causes the deserialization routine to perform invalid memory access. This produces a heap-based corruption condition consistent with [CWE-122]. Depending on heap layout and allocator behavior, the corruption can be steered toward arbitrary write primitives and ultimately remote code execution in the Redis server process.

Root Cause

The root cause is missing input validation in the RedisTimeSeries module's RESTORE deserialization path. Length fields, type tags, and structural offsets in the serialized blob are trusted without bounds checking. Crafted values cause the module to read or write past allocated buffers on the heap.

Attack Vector

Exploitation requires network access to the Redis instance and authentication credentials with permission to issue the RESTORE command. No user interaction is required. Attack complexity is elevated because the attacker must shape heap state and produce a payload tailored to module internals to reliably achieve code execution rather than a crash. Refer to the GitHub Security Advisory GHSA-7jwr-g5qv-w3gw for vendor technical details.

Detection Methods for CVE-2026-25588

Indicators of Compromise

  • Unexpected RESTORE commands targeting time-series keys (TSDB-TYPE) from non-administrative clients in Redis logs or MONITOR output.
  • Redis server crashes, segmentation faults, or abnormal restarts coinciding with module activity in RedisTimeSeries deployments.
  • Outbound network connections or child process creation originating from the redis-server process, which should not occur in normal operation.

Detection Strategies

  • Audit Redis command logs for clients invoking RESTORE who do not have a documented operational reason to perform key serialization.
  • Inspect loaded modules with MODULE LIST and confirm the RedisTimeSeries version against the patched release 1.12.14.
  • Correlate Redis process anomalies (crash dumps, OOM events, unexpected execve) with preceding RESTORE activity in centralized logging.

Monitoring Recommendations

  • Forward Redis ACL events, RESTORE invocations, and module load events to a central SIEM or data lake for behavioral analysis.
  • Alert on any redis-server process spawning shells, interpreters, or making outbound connections to unfamiliar destinations.
  • Track RedisTimeSeries module version inventory across hosts and flag instances running versions below 1.12.14.

How to Mitigate CVE-2026-25588

Immediate Actions Required

  • Upgrade RedisTimeSeries to version 1.12.14 or later on every Redis instance where the module is loaded.
  • Audit Redis ACL configurations and remove RESTORE permission from any user that does not require it for replication or backup operations.
  • Restrict network exposure of Redis instances to trusted application subnets and require strong authentication for all clients.

Patch Information

The vendor has released RedisTimeSeries v1.12.14, which fixes the validation gap in the RESTORE deserialization path. Production deployments should plan a coordinated module upgrade and Redis restart. Details are documented in GitHub Security Advisory GHSA-7jwr-g5qv-w3gw.

Workarounds

  • Use Redis ACLs to deny the RESTORE command for all non-administrative users until the module is patched.
  • Renaming or disabling the RESTORE command via Redis configuration directives provides defense in depth where ACLs cannot be applied.
  • Place Redis instances behind a network policy that limits client access to a known set of application hosts.
bash
# Configuration example: restrict RESTORE via Redis ACL
# Remove RESTORE from the default user and create a least-privilege app user
ACL SETUSER default -restore
ACL SETUSER appuser on >STRONG_PASSWORD ~* +@read +@write -@dangerous -restore
ACL SAVE

# Verify RedisTimeSeries module version after upgrade
MODULE LIST
# Expect: name "timeseries" ver >= 11214 (1.12.14)

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechRedistimeseries

  • 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
  • RedisTimeSeries Release v1.12.14

  • GitHub Security Advisory GHSA-7jwr-g5qv-w3gw
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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