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
    • 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-43457

CVE-2026-43457: Linux Kernel MCTP I2C Memory Leak Flaw

CVE-2026-43457 is a memory leak vulnerability in the Linux kernel's MCTP I2C receive path that causes skb buffers to leak when receive is disabled. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43457 Overview

CVE-2026-43457 is a memory leak vulnerability in the Linux kernel's Management Component Transport Protocol (MCTP) over I2C implementation. The flaw exists in the receive path of the mctp-i2c driver. When the midev->allow_rx flag is false, a newly allocated socket buffer (skb) is not consumed by netif_rx(), and the code path fails to free the buffer directly. Each dropped frame leaks kernel memory, gradually exhausting available resources on systems handling MCTP over I2C traffic. The issue was resolved through patches applied across multiple stable Linux kernel branches.

Critical Impact

Sustained MCTP-over-I2C traffic on a system where allow_rx is disabled causes progressive kernel memory exhaustion, potentially leading to denial of service on affected hosts.

Affected Products

  • Linux kernel branches containing the mctp-i2c driver prior to the fix
  • Systems using MCTP transport over I2C buses (commonly BMCs, server management controllers, and platform telemetry)
  • Distributions shipping kernels without the backported commits referenced below

Discovery Timeline

  • 2026-05-08 - CVE-2026-43457 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43457

Vulnerability Analysis

The Management Component Transport Protocol over I2C provides a transport for platform management traffic between devices such as baseboard management controllers and host CPUs. The mctp-i2c driver allocates an sk_buff for each inbound frame and hands it to netif_rx() for delivery to the network stack.

The receive handler checks the per-device midev->allow_rx flag before forwarding the frame. When the flag is false, the driver drops the packet without passing ownership to netif_rx(). The original code path neglected to call kfree_skb() on the allocated buffer in this branch, producing a memory leak that scales with the volume of received traffic.

Root Cause

The root cause is an unbalanced ownership transfer of an sk_buff. The netif_rx() function takes ownership of the buffer and is responsible for freeing it, but only when invoked. The early-exit branch covering allow_rx == false returns without freeing the buffer it allocated, satisfying the definition of a memory leak [CWE-401].

Attack Vector

A local or adjacent attacker capable of generating MCTP frames on an I2C bus attached to a vulnerable host can force the driver into the leaking branch. On systems where allow_rx is disabled by configuration, every received frame consumes kernel memory that is never reclaimed. Continuous traffic eventually exhausts memory and degrades or crashes the host. The vulnerability does not enable code execution or data disclosure.

No public proof-of-concept code is required to trigger the condition. The fix consists of adding an explicit kfree_skb() call on the drop path. The patches are tracked under the Linux kernel commits 0fb2adb, 1b1be32, 1ec5418, 9f81be2, d7900a4, and e3f5e0f.

Detection Methods for CVE-2026-43457

Indicators of Compromise

  • Steady growth of kernel slab allocations attributed to skbuff_head_cache on hosts using MCTP over I2C
  • Rising MemAvailable pressure correlated with active mctp-i2c interfaces while allow_rx is disabled
  • Out-of-memory killer events on management controllers or hosts running BMC-side MCTP stacks

Detection Strategies

  • Inventory hosts that load the mctp-i2c kernel module and record their kernel build identifiers
  • Compare installed kernel versions against the stable branches that include the referenced fix commits
  • Track /proc/slabinfo and /proc/meminfo over time on systems with MCTP traffic to detect anomalous memory growth

Monitoring Recommendations

  • Alert on sustained increases in skbuff_head_cache active object counts on production servers
  • Forward kernel logs containing MCTP, I2C, or OOM events to a centralized log platform for correlation
  • Audit allow_rx settings on MCTP interfaces and confirm they match the intended operational policy

How to Mitigate CVE-2026-43457

Immediate Actions Required

  • Identify systems running the mctp-i2c driver and prioritize them for kernel updates
  • Apply the upstream stable kernel that incorporates the linked fix commits, or rebuild with the patches backported
  • Reboot updated hosts to load the corrected kernel image and clear leaked memory

Patch Information

The fix is committed across multiple stable Linux kernel branches. Reference the Linux kernel stable tree commits 0fb2adb, 1b1be32, 1ec5418, 9f81be2, d7900a4, and e3f5e0f. Consume vendor-packaged kernels from your distribution once they include these commits.

Workarounds

  • Unload the mctp-i2c module on hosts that do not require MCTP-over-I2C connectivity
  • Restrict physical and logical access to I2C buses to limit the volume of inbound MCTP frames
  • Schedule periodic reboots of unpatched hosts to reclaim leaked kernel memory until updates can be applied
bash
# Verify whether the mctp-i2c module is in use and inspect related interfaces
lsmod | grep mctp_i2c
ip link show type mctp

# Temporarily remove the module on hosts that do not need MCTP-over-I2C
sudo modprobe -r mctp_i2c

# Confirm the running kernel version after applying the vendor update
uname -r

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Linux Kernel Commit 1b1be32

  • Linux Kernel Commit 1ec5418

  • Linux Kernel Commit 9f81be2

  • Linux Kernel Commit d7900a4

  • Linux Kernel Commit e3f5e0f
  • Related CVEs
  • CVE-2026-43493: Linux Kernel Crypto Pcrypt Vulnerability

  • CVE-2026-43343: Linux Kernel USB Gadget Vulnerability

  • CVE-2026-43307: Linux Kernel FIFO Read Overflow Vulnerability

  • CVE-2026-43352: Linux Kernel DMA Ring Abort 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