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-2025-29923

CVE-2025-29923: go-redis Client DoS Vulnerability

CVE-2025-29923 is a denial of service vulnerability in go-redis client library that causes out-of-order responses during connection setup. This post covers technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-29923 Overview

CVE-2025-29923 is an Input Validation Error vulnerability affecting go-redis, the official Redis client library for the Go programming language. The vulnerability causes the client to potentially respond out of order when CLIENT SETINFO times out during connection establishment. This can occur when the client is configured to transmit its identity, during network connectivity issues, or when aggressive timeouts are configured.

Critical Impact

Out-of-order responses can lead to data integrity issues, incorrect command responses in pipelines, and potential security implications when commands receive wrong data.

Affected Products

  • go-redis versions prior to 9.5.5
  • go-redis versions prior to 9.6.3
  • go-redis versions prior to 9.7.3

Discovery Timeline

  • 2025-03-20 - CVE CVE-2025-29923 published to NVD
  • 2025-03-20 - Last updated in NVD database

Technical Details for CVE-2025-29923

Vulnerability Analysis

This vulnerability stems from improper handling of CLIENT SETINFO command timeouts during the connection establishment phase. When the Redis client attempts to transmit its identity information and a timeout occurs, the connection can enter an inconsistent state where responses no longer align with their corresponding requests.

The impact varies based on the connection usage pattern. For sticky connections, out-of-order responses persist for the entire connection lifetime, meaning all subsequent commands may receive incorrect responses. In pipeline scenarios, all commands in the pipeline receive incorrect responses. When using the default ConnPool, the read buffer is checked upon connection return via ConnPool#Put, and the connection is marked as bad due to unread data—limiting exposure to at most one out-of-order response before the connection is discarded.

Root Cause

The root cause is classified as CWE-20 (Improper Input Validation). The go-redis client fails to properly handle network timeout errors that occur during the CLIENT SETINFO command execution. When this command times out, pending response data remains in the connection's read buffer, causing subsequent read operations to retrieve stale data intended for the timed-out command rather than the current request.

Attack Vector

The attack vector is network-based and requires specific conditions to exploit. An attacker with the ability to introduce network latency or connectivity issues between the Redis client and server could potentially trigger the timeout condition. The vulnerability can also manifest through:

  • Network infrastructure issues causing intermittent connectivity
  • Aggressive timeout configurations in high-latency environments
  • Resource exhaustion scenarios affecting network performance

The following patch introduces a new DisableIdentity option to properly handle the SETINFO command behavior:

go
 	// Enables read only queries on slave/follower nodes.
 	readOnly bool
 
-	// Disable set-lib on connect. Default is false.
+	// DisableIndentity - Disable set-lib on connect.
+	//
+	// default: false
+	//
+	// Deprecated: Use DisableIdentity instead.
 	DisableIndentity bool
 
+	// DisableIdentity is used to disable CLIENT SETINFO command on connect.
+	//
+	// default: false
+	DisableIdentity bool
+
 	// Add suffix to client name. Default is empty.
 	IdentitySuffix string

Source: GitHub Commit Update

Detection Methods for CVE-2025-29923

Indicators of Compromise

  • Unexpected or mismatched responses from Redis commands in application logs
  • Connections being frequently marked as "bad" and discarded by the connection pool
  • Intermittent data integrity errors when reading from Redis
  • Timeout errors specifically related to CLIENT SETINFO during connection establishment

Detection Strategies

  • Monitor application logs for Redis response errors or unexpected data formats
  • Implement response validation to detect when returned data doesn't match expected command responses
  • Track connection pool health metrics for anomalous connection discard rates
  • Review go-redis client version across all deployed applications to identify vulnerable instances

Monitoring Recommendations

  • Enable verbose logging for Redis client connections to capture SETINFO timeout events
  • Monitor network latency between applications and Redis servers for abnormal patterns
  • Set up alerts for elevated connection error rates in Redis client metrics
  • Audit pipeline operations for response integrity verification

How to Mitigate CVE-2025-29923

Immediate Actions Required

  • Upgrade go-redis to version 9.5.5, 9.6.3, or 9.7.3 depending on your current version branch
  • Set the DisableIdentity flag to true when constructing client instances as an immediate workaround
  • Review and adjust timeout configurations to reduce the likelihood of SETINFO timeouts
  • Avoid using sticky connections in environments with unreliable network connectivity

Patch Information

The vulnerability has been fixed in go-redis versions 9.5.5, 9.6.3, and 9.7.3. The fix introduces a new DisableIdentity configuration option that properly handles the CLIENT SETINFO command behavior and deprecates the misspelled DisableIndentity field. Technical details of the fix are available in the GitHub Pull Request Discussion and the GitHub Security Advisory GHSA-92cp-5422-2mw7.

Workarounds

  • Set DisableIndentity: true (legacy) or DisableIdentity: true (new) in client options to prevent the vulnerability
  • Increase connection timeouts to reduce the likelihood of SETINFO command timeouts
  • Avoid using sticky connections in favor of the default connection pool which limits exposure
  • Implement application-level response validation for critical Redis operations
go
// Workaround configuration example
import "github.com/redis/go-redis/v9"

client := redis.NewClient(&redis.Options{
    Addr:            "localhost:6379",
    DisableIdentity: true, // Prevents CLIENT SETINFO from being sent
})

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechRedis

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-20
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request Discussion

  • GitHub Security Advisory GHSA-92cp-5422-2mw7
  • Related CVEs
  • CVE-2025-46819: Redis Database DoS Vulnerability

  • CVE-2025-21605: Redis Database DoS Vulnerability

  • CVE-2024-31228: Redis Database DOS Vulnerability

  • CVE-2025-48367: Redis Database DOS 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