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-23456

CVE-2026-23456: Linux Kernel Use-After-Free Vulnerability

CVE-2026-23456 is a use-after-free vulnerability in the Linux kernel's netfilter component that allows out-of-bounds memory reads. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 10, 2026

CVE-2026-23456 Overview

A critical out-of-bounds read vulnerability has been identified in the Linux kernel's netfilter connection tracking module for H.323 protocol. The flaw exists in the decode_int() function within nf_conntrack_h323, where insufficient boundary validation allows attackers to trigger a slab-out-of-bounds read of 1-4 bytes when processing malformed H.323/RAS packets.

Critical Impact

This vulnerability allows attackers to read up to 4 bytes of kernel memory beyond allocated buffer boundaries by sending specially crafted H.323/RAS network packets, potentially leading to information disclosure or system instability.

Affected Products

  • Linux kernel with netfilter H.323 connection tracking enabled
  • Systems processing H.323/RAS protocol traffic
  • Network appliances and firewalls using Linux kernel netfilter subsystem

Discovery Timeline

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

Technical Details for CVE-2026-23456

Vulnerability Analysis

The vulnerability resides in the decode_int() function within the netfilter H.323 connection tracking module (nf_conntrack_h323). When processing the CONS (constructed) case, the function performs a two-stage read operation that lacks proper boundary validation between stages.

The function first calls get_bits(bs, 2) to read a 2-bit length value from the bitstream. This initial operation is properly validated against the buffer boundaries. However, the subsequent call to get_uint(bs, len) reads 1-4 bytes based on the decoded length value without verifying that sufficient bytes remain in the buffer.

This discrepancy creates a window where an attacker can craft a malicious H.323/RAS packet with a truncated buffer that passes the initial 2-bit boundary check but causes the get_uint() function to read beyond the allocated slab memory. The result is a 1-4 byte slab-out-of-bounds read that can expose sensitive kernel memory contents.

Root Cause

The root cause is a missing boundary check between the get_bits() and get_uint() function calls in the CONS case of decode_int(). The existing validation only accounts for the 2 bits required by get_bits(), not the additional 1-4 bytes that get_uint() subsequently reads based on the decoded length value. This incomplete validation allows controlled out-of-bounds memory access when processing malformed packet data.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted H.323/RAS packets to a target system with netfilter H.323 connection tracking enabled. The attack requires network access to deliver malformed packets that will be processed by the vulnerable nf_conntrack_h323 module.

The exploitation flow involves:

  1. Crafting an H.323/RAS packet with a truncated data section
  2. Setting the length field to indicate more bytes than actually present in the buffer
  3. Sending the packet to a system processing H.323 traffic through netfilter
  4. The kernel's connection tracking module processes the packet, triggering the OOB read

The fix adds a boundary check for len bytes after get_bits() returns and before get_uint() is called, ensuring the buffer contains sufficient data for the complete read operation.

Detection Methods for CVE-2026-23456

Indicators of Compromise

  • Kernel log messages indicating slab-out-of-bounds access in netfilter modules
  • Unexpected system crashes or kernel panics when processing H.323 traffic
  • KASAN (Kernel Address Sanitizer) reports showing OOB reads in nf_conntrack_h323

Detection Strategies

  • Monitor kernel logs for memory access violations related to netfilter or connection tracking subsystems
  • Deploy network intrusion detection rules to identify malformed H.323/RAS packets with inconsistent length fields
  • Use kernel memory debugging tools (KASAN, KMSAN) to detect runtime boundary violations

Monitoring Recommendations

  • Enable kernel auditing for netfilter-related operations on systems processing H.323 traffic
  • Implement network traffic analysis to detect anomalous H.323 protocol patterns
  • Configure alerting for kernel oops or memory corruption events in production environments

How to Mitigate CVE-2026-23456

Immediate Actions Required

  • Apply the kernel security patches from the official kernel.org repositories
  • Disable H.323 connection tracking if not required by unloading the nf_conntrack_h323 module
  • Implement network-level filtering to block or inspect H.323 traffic at perimeter devices

Patch Information

The Linux kernel developers have released patches to address this vulnerability by adding proper boundary validation. The fix ensures that len bytes are available in the buffer before calling get_uint(bs, len). Multiple patch commits are available for different kernel branches:

  • Kernel Patch Overview
  • Kernel Security Fix
  • Kernel Code Update
  • Kernel Improvement Report
  • Kernel Change Notification
  • Kernel Release Note

Workarounds

  • Disable H.323 connection tracking by blacklisting or unloading the nf_conntrack_h323 kernel module
  • Implement firewall rules to drop H.323 traffic at network boundaries if the protocol is not required
  • Use application-layer gateways to sanitize H.323 traffic before it reaches vulnerable systems
bash
# Disable nf_conntrack_h323 module
sudo modprobe -r nf_conntrack_h323
echo "blacklist nf_conntrack_h323" | sudo tee /etc/modprobe.d/disable-h323-conntrack.conf
sudo update-initramfs -u

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Overview

  • Kernel Security Fix

  • Kernel Code Update

  • Kernel Improvement Report

  • Kernel Change Notification

  • Kernel Release Note
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23458: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23435: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23445: Linux Kernel Use-After-Free 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