Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-23455

CVE-2026-23455: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23455 is a buffer overflow flaw in the Linux kernel's netfilter nf_conntrack_h323 module that causes out-of-bounds reads. This article covers the technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-23455 Overview

A vulnerability has been identified in the Linux kernel's netfilter connection tracking module for H.323 protocol handling. Specifically, the DecodeQ931() function in nf_conntrack_h323 contains an integer underflow flaw that can lead to an out-of-bounds read condition. When processing UserUserIE (User-to-User Information Element) data, the function reads a 16-bit length value from the packet and decrements it by 1 to skip the protocol discriminator byte. If the encoded length is 0, the decrement operation wraps to -1 (interpreted as a very large unsigned value), which is then passed to DecodeH323_UserInformation(), resulting in an out-of-bounds memory read.

Critical Impact

This vulnerability allows attackers to trigger out-of-bounds memory reads in kernel space by sending specially crafted H.323 packets, potentially leading to information disclosure or system instability.

Affected Products

  • Linux Kernel (multiple stable branches affected)
  • Systems with nf_conntrack_h323 module loaded
  • Network devices processing H.323 protocol traffic

Discovery Timeline

  • April 3, 2026 - CVE-2026-23455 published to NVD
  • April 7, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23455

Vulnerability Analysis

This vulnerability resides in the netfilter connection tracking subsystem responsible for handling H.323 Voice over IP signaling protocol. The flaw occurs within the DecodeQ931() function when processing Q.931 messages, which are part of the H.323 call signaling protocol suite.

The vulnerability stems from insufficient validation of length fields in incoming network packets. When the UserUserIE code path processes a packet, it extracts a 16-bit length value and performs an arithmetic operation (decrement by 1) without first verifying that the value is greater than zero. This creates a classic integer underflow condition where decrementing zero results in a wrap-around to the maximum unsigned integer value.

When this corrupted length value is passed to DecodeH323_UserInformation(), the decoder attempts to read memory far beyond the actual packet buffer boundaries, causing an out-of-bounds read. This can expose sensitive kernel memory contents or trigger a kernel panic depending on what memory is accessed.

Root Cause

The root cause is a missing boundary check in the DecodeQ931() function. The code assumes the length field will always be at least 1 (to account for the protocol discriminator byte), but malformed or malicious packets can contain a zero length. The fix adds a validation check to ensure the length value is positive after the decrement operation before proceeding with decoding.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted H.323 Q.931 signaling packets to a target system that has the nf_conntrack_h323 kernel module loaded. The attack requires network access to send packets that will be processed by the netfilter connection tracking system.

The exploitation does not require authentication or user interaction. The attacker constructs a packet with a UserUserIE information element containing a zero-length field. When the kernel processes this packet through the connection tracking module, the integer underflow triggers the out-of-bounds read condition.

Detection Methods for CVE-2026-23455

Indicators of Compromise

  • Kernel panic or system crash events related to netfilter or H.323 processing
  • Unusual H.323 signaling traffic patterns with malformed packet structures
  • Kernel log entries indicating memory access violations in nf_conntrack_h323 module
  • Increased network traffic on H.323 signaling ports (TCP 1720, UDP 1719)

Detection Strategies

  • Monitor kernel logs (dmesg) for memory access violations or OOPS messages referencing nf_conntrack_h323 or DecodeQ931
  • Implement network intrusion detection rules to identify malformed H.323 packets with zero-length UserUserIE fields
  • Deploy packet inspection to detect anomalous Q.931 signaling messages
  • Use kernel debugging tools to trace nf_conntrack_h323 module behavior

Monitoring Recommendations

  • Enable kernel auditing for netfilter module activities
  • Configure network monitoring to alert on unusual H.323 protocol traffic patterns
  • Implement system stability monitoring to detect kernel panics or crashes
  • Review firewall logs for connection attempts to H.323 related ports from untrusted sources

How to Mitigate CVE-2026-23455

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • If H.323 connection tracking is not required, unload the nf_conntrack_h323 module
  • Block H.323 signaling traffic (TCP 1720, UDP 1719) at network perimeter if not needed
  • Monitor affected systems for signs of exploitation attempts

Patch Information

The Linux kernel development team has released patches across multiple stable branches to address this vulnerability. The fix adds a validation check to ensure the length field is positive after the decrement operation in DecodeQ931().

Available kernel patches:

  • Linux Kernel Commit 495e97a
  • Linux Kernel Commit 633e8f8
  • Linux Kernel Commit 9d00fe7
  • Linux Kernel Commit b652b05
  • Linux Kernel Commit f173d0f
  • Linux Kernel Commit f5e4f4e

Workarounds

  • Disable the H.323 connection tracking helper by unloading the nf_conntrack_h323 module if not required for operations
  • Use firewall rules to restrict H.323 traffic to trusted sources only
  • Implement network segmentation to isolate systems that must process H.323 protocol traffic
  • Deploy network-based intrusion prevention to filter malicious H.323 packets before they reach vulnerable systems
bash
# Configuration example
# Unload the vulnerable module if H.323 tracking is not needed
sudo modprobe -r nf_conntrack_h323

# Blacklist the module to prevent automatic loading
echo "blacklist nf_conntrack_h323" | sudo tee /etc/modprobe.d/blacklist-h323.conf

# Block H.323 signaling ports at the firewall if not required
sudo iptables -A INPUT -p tcp --dport 1720 -j DROP
sudo iptables -A INPUT -p udp --dport 1719 -j DROP

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 495e97a

  • Linux Kernel Commit 633e8f8

  • Linux Kernel Commit 9d00fe7

  • Linux Kernel Commit b652b05

  • Linux Kernel Commit f173d0f

  • Linux Kernel Commit f5e4f4e
  • Related CVEs
  • CVE-2026-31484: Linux Kernel Buffer Overflow Vulnerability

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

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

  • CVE-2026-3038: 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