A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-23474

CVE-2026-23474: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23474 is a buffer overflow vulnerability in the Linux kernel's RedBoot partition table parser that causes boot crashes. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-23474 Overview

A buffer overflow vulnerability has been identified in the Linux kernel's MTD (Memory Technology Device) subsystem, specifically within the RedBoot partition table parser. When CONFIG_FORTIFY_SOURCE=y is enabled alongside a recent compiler that leverages __builtin_dynamic_object_size(), the kernel's fortified string functions detect an out-of-bounds read operation during the partition table parsing process. This results in a kernel warning and subsequent oops, causing a boot crash on affected systems.

The vulnerability stems from improper buffer size calculation when using memcmp() to compare partition names. The allocation size is determined by strlen(), but the subsequent comparison operation reads beyond the allocated buffer boundaries.

Critical Impact

Systems with embedded flash storage using RedBoot partition tables may experience boot failures or kernel panics when the fortify source protection is enabled, potentially leading to denial of service conditions in production environments.

Affected Products

  • Linux kernel versions with MTD RedBoot partition table parser enabled
  • Systems compiled with CONFIG_FORTIFY_SOURCE=y
  • Embedded systems utilizing RedBoot bootloader partition tables

Discovery Timeline

  • 2026-04-03 - CVE-2026-23474 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-23474

Vulnerability Analysis

This vulnerability exists in the RedBoot partition table parser within the Linux kernel's MTD subsystem. The issue manifests when the kernel attempts to parse partition table entries during the boot process, specifically when comparing partition names stored in flash memory.

The root of the problem lies in how the names buffer is allocated and subsequently accessed. The allocation is performed using strlen() to determine the size, but the comparison operation using memcmp() attempts to read beyond the allocated buffer boundaries. When CONFIG_FORTIFY_SOURCE is enabled with a compiler supporting __builtin_dynamic_object_size(), this out-of-bounds read is detected, triggering a warning and kernel oops.

The kernel log output demonstrates the issue clearly:

Searching for RedBoot partition table in 50000000.flash at offset 0x7e0000
WARNING: lib/string_helpers.c:1035 at 0xc029e04c, CPU#0: swapper/0/1
memcmp: detected buffer overflow: 15 byte read of buffer size 14

Root Cause

The vulnerability originates from a mismatch between buffer allocation and buffer access in the RedBoot partition table parsing code. The names pointer references the final namelen bytes of the allocation, where namelen could be any arbitrary length. The subsequent memcmp() call attempts to compare more bytes than were actually allocated, resulting in a buffer over-read condition.

This is a classic example of using size-unbounded comparison functions with dynamically allocated buffers where the allocation size is determined by string length but the comparison size is not properly constrained.

Attack Vector

While the immediate impact is a denial of service through boot crashes, the vulnerability could potentially be exploited in scenarios where:

  • An attacker can modify partition table data in flash storage
  • Crafted partition names could be used to trigger information disclosure through out-of-bounds reads
  • Systems with writable flash storage could be targeted to cause persistent boot failures

The fix replaces memcmp() with strcmp(), which naturally operates within string boundaries since the allocation size was calculated using strlen(). This ensures the comparison remains within the allocated buffer bounds.

Detection Methods for CVE-2026-23474

Indicators of Compromise

  • Kernel warning messages containing memcmp: detected buffer overflow during boot
  • System crashes or panics referencing lib/string_helpers.c and the MTD subsystem
  • Boot failures on systems with RedBoot partition tables after enabling CONFIG_FORTIFY_SOURCE

Detection Strategies

  • Monitor kernel logs for fortify source warnings related to memcmp buffer overflows
  • Check for crashes during MTD partition table parsing at boot time
  • Review system boot logs for warnings referencing RedBoot partition table searches

Monitoring Recommendations

  • Enable kernel crash dump collection to capture detailed information on affected systems
  • Implement automated log analysis for fortify source violation messages
  • Monitor embedded device fleets for unexpected boot failures or restart loops

How to Mitigate CVE-2026-23474

Immediate Actions Required

  • Apply the kernel patches from the official Linux kernel stable branches
  • For systems experiencing boot crashes, temporarily disable CONFIG_FORTIFY_SOURCE until patches can be applied
  • Review and update embedded system firmware where RedBoot partition tables are utilized

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches to address this vulnerability. The fix modifies the partition name comparison to use strcmp() instead of memcmp(), ensuring the operation stays within allocated buffer boundaries.

Official patches are available from the following kernel commits:

  • Kernel Commit 0b08be5
  • Kernel Commit 2025b2d
  • Kernel Commit 75a4d8c
  • Kernel Commit 8e2f802
  • Kernel Commit c4054ad
  • Kernel Commit d857021

Workarounds

  • Temporarily disable CONFIG_FORTIFY_SOURCE in kernel configuration as a short-term mitigation
  • If using custom kernel builds, apply the upstream fix manually by replacing memcmp() with strcmp() in the RedBoot partition parser
  • For production systems, schedule maintenance windows to apply kernel updates as soon as patches are available for your distribution
bash
# Check if FORTIFY_SOURCE is enabled in current kernel
zcat /proc/config.gz | grep CONFIG_FORTIFY_SOURCE

# Verify MTD RedBoot parser module status
lsmod | grep mtd
cat /proc/mtd

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.04%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 0b08be5

  • Linux Kernel Commit 2025b

  • Linux Kernel Commit 75a4d8

  • Linux Kernel Commit 8e2f80

  • Linux Kernel Commit c4054a

  • Linux Kernel Commit d85702
  • Related CVEs
  • CVE-2026-46237: Linux Kernel Buffer Overflow Vulnerability

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

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

  • CVE-2026-46232: Linux Kernel Buffer Overflow Vulnerability
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