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
    • 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-2023-28425

CVE-2023-28425: Redis Database DOS Vulnerability

CVE-2023-28425 is a denial of service flaw in Redis database affecting versions 7.0.8 to 7.0.9. Authenticated users can exploit the MSETNX command to crash the server. This article covers technical details, affected versions, impact, and mitigation.

Published: January 28, 2026

CVE-2023-28425 Overview

CVE-2023-28425 is a Denial of Service vulnerability affecting Redis, the popular in-memory database that persists on disk. Starting in version 7.0.8 and prior to version 7.0.10, authenticated users can exploit the MSETNX command to trigger a runtime assertion failure, resulting in abrupt termination of the Redis server process. This vulnerability allows attackers with valid authentication credentials to crash the database server, causing service disruption for all dependent applications.

Critical Impact

Authenticated attackers can crash Redis servers by triggering a runtime assertion through the MSETNX command, leading to complete service unavailability and potential data loss for applications relying on the database.

Affected Products

  • Redis versions 7.0.8 through 7.0.9
  • Redis Redis (all distributions within the vulnerable version range)
  • Systems running vulnerable Redis versions as caching or database backends

Discovery Timeline

  • 2023-03-20 - CVE-2023-28425 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-28425

Vulnerability Analysis

This vulnerability is classified under CWE-617 (Reachable Assertion) and CWE-77 (Command Injection). The core issue lies in how Redis handles the MSETNX command under specific conditions. When an authenticated user sends a specially crafted MSETNX command, the server encounters a condition that triggers a runtime assertion check. When this assertion fails, the Redis server process terminates immediately rather than handling the error gracefully.

The MSETNX command is designed to set multiple keys to their respective values only if none of the keys already exist. However, the vulnerable code path contains an assertion that can be reached through normal command execution, violating the principle that assertions should only fail due to programming errors, not user input.

Root Cause

The root cause of this vulnerability is an improper assertion placement in the MSETNX command handler within Redis versions 7.0.8 and 7.0.9. The assertion was intended as a debugging aid during development but remained in the production code where it could be triggered by authenticated users through legitimate command usage patterns. When the assertion condition evaluates to false, the C runtime calls abort(), immediately terminating the Redis server process without graceful shutdown procedures.

Attack Vector

The attack vector requires local access and authenticated credentials to the Redis server. An attacker with valid Redis authentication can exploit this vulnerability by:

  1. Connecting to the Redis server with valid credentials
  2. Sending a specially crafted MSETNX command that triggers the assertion failure
  3. Causing the Redis server process to terminate abruptly

The vulnerability manifests in the MSETNX command processing logic. When certain input conditions are met, the server reaches an assertion that was not intended to be reachable through normal operation. The assertion failure causes an immediate process termination via abort(). For detailed technical information about the specific fix, see the GitHub security advisory and the commit that resolved this issue.

Detection Methods for CVE-2023-28425

Indicators of Compromise

  • Unexpected Redis server process terminations without corresponding error logs
  • Presence of core dump files indicating assertion failures in the Redis binary
  • Redis service restart events correlating with specific client connections
  • Log entries showing MSETNX commands preceding server crashes

Detection Strategies

  • Monitor Redis server process stability and track unexpected terminations
  • Implement alerting on Redis service restarts that occur outside maintenance windows
  • Audit Redis command logs for unusual MSETNX command patterns from specific clients
  • Deploy application-level monitoring to detect database connectivity failures

Monitoring Recommendations

  • Configure process monitoring to detect Redis server crashes and automatic restart frequency
  • Enable Redis command logging to capture all MSETNX operations for forensic analysis
  • Set up real-time alerts for Redis service availability drops
  • Monitor system logs for assertion failure messages associated with the Redis process

How to Mitigate CVE-2023-28425

Immediate Actions Required

  • Upgrade Redis to version 7.0.10 or later immediately
  • Audit current Redis deployment versions across all environments
  • Review authentication logs to identify potentially malicious authenticated sessions
  • Implement network segmentation to limit access to Redis instances

Patch Information

The vulnerability is fixed in Redis version 7.0.10. The fix is available through the official Redis release. The patch modifies the assertion handling to prevent user-triggered crashes while maintaining appropriate error handling for the MSETNX command.

Additional vendor advisories are available from NetApp Security Advisory NTAP-20230413-0005.

Workarounds

  • Restrict Redis authentication to trusted users and services only until patching is complete
  • Implement network-level access controls to limit connectivity to Redis servers
  • Monitor and rate-limit MSETNX command usage as a temporary measure
  • Consider deploying Redis in a high-availability configuration to minimize downtime impact from potential crashes
bash
# Verify Redis version and upgrade if vulnerable
redis-server --version

# If running version 7.0.8 or 7.0.9, upgrade to 7.0.10 or later
# Example for systems using package managers:
# apt-get update && apt-get install redis-server
# yum update redis

# Alternatively, compile from source:
# wget https://github.com/redis/redis/archive/refs/tags/7.0.10.tar.gz
# tar xzf 7.0.10.tar.gz
# cd redis-7.0.10
# make && make install

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechRedis

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability45.29%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-77

  • CWE-617
  • Technical References
  • GitHub Redis Release 7.0.10

  • NetApp Security Advisory NTAP-20230413-0005
  • Vendor Resources
  • GitHub Redis Commit Change

  • GitHub Security Advisory GHSA-mvmm-4vq6-vw8c
  • Related CVEs
  • CVE-2025-21605: Redis Database DoS Vulnerability

  • CVE-2024-31228: Redis Database DOS Vulnerability

  • CVE-2025-48367: Redis Database DOS Vulnerability

  • CVE-2024-51741: Redis Database DOS Vulnerability
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