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-2026-23327

CVE-2026-23327: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23327 is a buffer overflow vulnerability in the Linux kernel CXL mailbox subsystem that allows out-of-bounds memory reads. This article covers the technical details, affected versions, security impact, and mitigation.

Published: March 27, 2026

CVE-2026-23327 Overview

CVE-2026-23327 is an Out-of-Bounds Read vulnerability in the Linux kernel's CXL (Compute Express Link) mailbox subsystem. The vulnerability exists in the cxl_payload_from_user_allowed() function, which casts and dereferences the input payload without first verifying its size. When a raw mailbox command is sent with an undersized payload, the kernel reads past the allocated buffer, potentially leading to information disclosure or system instability.

Critical Impact

Local attackers can trigger out-of-bounds memory reads in the Linux kernel's CXL mailbox handler by sending undersized payloads, potentially causing kernel memory disclosure or denial of service conditions.

Affected Products

  • Linux kernel versions with CXL mailbox support
  • Systems utilizing Compute Express Link (CXL) memory devices
  • Linux kernel 6.19.0 and potentially earlier versions with CXL subsystem

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23327 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23327

Vulnerability Analysis

The vulnerability resides in the CXL mailbox command handling code within drivers/cxl/core/mbox.c. When processing user-supplied mailbox commands, the cxl_payload_from_user_allowed() function directly casts and dereferences the input payload without performing adequate size validation. This oversight allows attackers to trigger out-of-bounds memory reads when sending commands with payloads smaller than expected.

For example, the CXL_MBOX_OP_CLEAR_LOG command expects a 16-byte UUID payload. If an attacker supplies only 1 byte, the subsequent uuid_equal() comparison reads beyond the allocated buffer boundaries, accessing 8 bytes of unallocated memory. This triggers KASAN (Kernel Address Sanitizer) splats and could potentially expose sensitive kernel memory contents.

Root Cause

The root cause is improper input validation in cxl_payload_from_user_allowed(). The function assumes the caller provides a correctly-sized payload buffer matching the expected structure for each mailbox command type. Without explicit size validation before accessing payload contents, undersized user inputs cause the kernel to read memory outside the intended buffer boundaries.

The fix adds an in_size parameter to cxl_payload_from_user_allowed() and validates that the payload is large enough before casting and dereferencing its contents.

Attack Vector

The attack requires local access to the system with the ability to issue ioctl commands to CXL memory devices. An attacker would:

  1. Open a file descriptor to a CXL memory device (e.g., /dev/cxl/memX)
  2. Craft a raw mailbox command with an intentionally undersized payload
  3. Send the malformed command via the CXL_MEM_SEND_COMMAND ioctl
  4. The kernel processes the command without validating payload size
  5. Memory access beyond the allocated buffer occurs during uuid_equal() or similar comparisons

The vulnerability is triggered through the cxl_memdev_ioctl() → cxl_send_cmd() → cxl_validate_cmd_from_user() → cxl_mbox_cmd_ctor() → cxl_payload_from_user_allowed() code path. The call trace in the KASAN report shows memcmp+0x176/0x1d0 performing the out-of-bounds read when comparing the undersized UUID against expected values.

Detection Methods for CVE-2026-23327

Indicators of Compromise

  • KASAN reports showing slab-out-of-bounds errors in memcmp called from cxl_payload_from_user_allowed
  • Kernel log entries containing CXL mailbox-related crashes or memory access violations
  • Unusual ioctl activity targeting /dev/cxl/mem* devices
  • Stack traces involving cxl_send_cmd, cxl_memdev_ioctl, or uuid_equal

Detection Strategies

  • Enable KASAN in kernel build configuration to detect out-of-bounds memory accesses
  • Monitor kernel logs for CXL subsystem errors and memory corruption warnings
  • Implement auditd rules to track ioctl syscalls targeting CXL device files
  • Deploy SentinelOne Singularity platform with kernel-level monitoring for anomalous memory access patterns

Monitoring Recommendations

  • Configure syslog forwarding to capture kernel panic and KASAN reports in real-time
  • Monitor for processes with elevated CXL device access permissions
  • Set up alerting for repeated CXL mailbox command failures from non-privileged users
  • Use eBPF-based tracing to monitor CXL ioctl invocations and payload sizes

How to Mitigate CVE-2026-23327

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the input validation fix
  • Restrict access to CXL memory device files (/dev/cxl/mem*) to trusted administrators only
  • Enable KASAN in development/testing environments to detect exploitation attempts
  • Review system access controls for any processes interacting with CXL hardware

Patch Information

The Linux kernel developers have released patches addressing this vulnerability. The fix adds an in_size parameter to cxl_payload_from_user_allowed() to validate that the payload buffer is large enough before accessing its contents.

Patch commits are available in the kernel git repository:

  • Kernel Git Commit 60b5d1f6
  • Kernel Git Commit 7c8a7b7f

Workarounds

  • Restrict CXL device file permissions using chmod 600 /dev/cxl/mem* to limit access to root only
  • Use SELinux or AppArmor policies to confine applications that require CXL device access
  • Disable CXL mailbox raw command support if not required for production workloads
  • Implement network segmentation to isolate systems with CXL hardware from untrusted users
bash
# Restrict CXL device permissions
chmod 600 /dev/cxl/mem*
chown root:root /dev/cxl/mem*

# Create udev rule to persist restrictions
echo 'KERNEL=="cxl/mem*", MODE="0600", OWNER="root", GROUP="root"' > /etc/udev/rules.d/99-cxl-secure.rules
udevadm control --reload-rules

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.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-23448: Linux Kernel Buffer Overflow Vulnerability

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

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

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