banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-36824

CVE-2023-36824: Redis Heap Overflow RCE Vulnerability

CVE-2023-36824 is a heap overflow vulnerability in Redis 7.0 that can lead to remote code execution. Authenticated users can exploit this flaw through specially crafted commands. This article covers technical details, impact, and patches.

Published: February 11, 2026

CVE-2023-36824 Overview

CVE-2023-36824 is a heap overflow vulnerability affecting Redis, the popular in-memory database that persists on disk. In Redis 7.0 prior to version 7.0.12, 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.

The vulnerability can be exploited by authenticated users through several attack scenarios. These include executing specially crafted COMMAND GETKEYS or COMMAND GETKEYSANDFLAGS commands, as well as authenticated users with ACL rules that match key names executing specially crafted commands that refer to a variadic list of key names.

Critical Impact

Authenticated attackers can exploit this heap overflow vulnerability to read arbitrary heap memory, corrupt heap data, and potentially achieve remote code execution on affected Redis instances.

Affected Products

  • Redis versions 7.0 prior to 7.0.12
  • Fedora 37 (with vulnerable Redis packages)
  • Fedora 38 (with vulnerable Redis packages)

Discovery Timeline

  • 2023-07-11 - CVE-2023-36824 published to NVD
  • 2025-04-10 - Last updated in NVD database

Technical Details for CVE-2023-36824

Vulnerability Analysis

This vulnerability stems from improper memory handling when Redis parses key names from commands and their associated argument lists. The flaw is classified under CWE-122 (Heap-based Buffer Overflow) and CWE-787 (Out-of-bounds Write), indicating that the vulnerability allows writing data beyond the allocated heap buffer boundaries.

When processing certain Redis commands that handle variable-length key name lists, the parsing logic fails to properly validate the bounds of key name extraction operations. This leads to heap memory being read or written beyond its intended boundaries, causing memory corruption.

Root Cause

The root cause lies in the command argument parsing routines within Redis 7.0.x versions. Specifically, when handling commands like COMMAND GETKEYS and COMMAND GETKEYSANDFLAGS, the key extraction algorithm does not properly account for boundary conditions when processing variadic key name lists. Additionally, ACL rule matching for key names can trigger similar out-of-bounds operations when users execute specially crafted commands referencing multiple key names.

Attack Vector

The attack requires authenticated access to a Redis instance, making it a network-accessible vulnerability requiring low-privilege authentication. An attacker with valid Redis credentials can exploit this vulnerability by:

  1. Crafting malicious COMMAND GETKEYS commands with specially constructed arguments designed to trigger the heap overflow
  2. Using COMMAND GETKEYSANDFLAGS with payload arguments that exploit the parsing flaw
  3. If ACL rules are configured to match key name patterns, executing commands that reference crafted variadic key name lists

The vulnerability can be exploited to read sensitive data from heap memory, corrupt application state through heap manipulation, or achieve remote code execution by overwriting critical data structures or function pointers in memory.

Detection Methods for CVE-2023-36824

Indicators of Compromise

  • Unusual or malformed COMMAND GETKEYS or COMMAND GETKEYSANDFLAGS commands in Redis logs
  • Redis server crashes or unexpected restarts indicating potential exploitation attempts
  • Abnormal memory usage patterns in Redis processes
  • Authentication attempts followed by immediate command execution with unusually long argument lists

Detection Strategies

  • Monitor Redis command logs for suspicious COMMAND GETKEYS and COMMAND GETKEYSANDFLAGS requests with malformed or excessively long arguments
  • Implement network intrusion detection rules to identify exploitation patterns targeting Redis protocol
  • Deploy memory-based detection to identify heap corruption signatures in Redis processes
  • Use SentinelOne Singularity Platform to detect and prevent exploitation attempts through behavioral analysis

Monitoring Recommendations

  • Enable Redis slow log and monitor for unusual command patterns
  • Configure alerts for Redis process crashes or abnormal terminations
  • Monitor network traffic to Redis ports (default 6379) for anomalous command sequences
  • Implement log aggregation to correlate Redis authentication events with subsequent command execution

How to Mitigate CVE-2023-36824

Immediate Actions Required

  • Upgrade Redis to version 7.0.12 or later immediately
  • Review Redis access controls and restrict authentication to trusted networks and users
  • Audit ACL configurations to minimize unnecessary key pattern matching rules
  • Consider temporarily disabling external network access to Redis instances until patching is complete

Patch Information

The vulnerability is patched in Redis version 7.0.12. Organizations should upgrade to this version or later to remediate the vulnerability. The fix is available through the official Redis 7.0.12 Release.

For additional details about the vulnerability and patch, refer to the GitHub Security Advisory GHSA-4cfx-h9gq-xpx3.

Fedora users should apply the updated packages announced through the Fedora package security announcements for Fedora 37 and Fedora 38.

Workarounds

  • Restrict Redis network access to trusted IP addresses using firewall rules or Redis bind configuration
  • Implement strong authentication requirements using Redis ACL system with minimal required privileges
  • Deploy Redis behind a VPN or secure network segment to limit attack surface
  • Monitor and audit all Redis commands using the MONITOR command or external logging solutions
bash
# Configuration example: Restrict Redis network binding and require authentication
# Add to redis.conf

# Bind to localhost only if external access not required
bind 127.0.0.1

# Enable protected mode
protected-mode yes

# Require strong password authentication
requirepass your_strong_password_here

# Set up ACL user with minimal privileges
user default off
user admin on >strong_admin_password ~* +@all
user readonly on >readonly_password ~* +@read -@dangerous

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechRedis

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability90.84%

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

  • CWE-787
  • Technical References
  • GitHub Redis Release 7.0.12

  • Fedora Package Announcement

  • Fedora Package Announcement

  • NetApp Security Advisory ntap-20230814-0009
  • Vendor Resources
  • GitHub Security Advisory GHSA-4cfx-h9gq-xpx3
  • Related CVEs
  • CVE-2022-0543: Redis Lua Sandbox Escape RCE Vulnerability

  • CVE-2025-32023: Redis HyperLogLog RCE Vulnerability

  • CVE-2024-46981: Redis Database Lua Script RCE Vulnerability

  • CVE-2024-31449: Redis Lua Scripting RCE 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
  • English
  • 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