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
    • 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-2025-68755

CVE-2025-68755: Linux Kernel Buffer Overflow Vulnerability

CVE-2025-68755 is a buffer overflow vulnerability in the Linux kernel's MOST I2C driver that causes NULL pointer dereferences. This article covers technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2025-68755 Overview

A NULL pointer dereference vulnerability exists in the Linux kernel's MOST (Media Oriented Systems Transport) I2C driver within the staging subsystem. The vulnerability stems from a broken driver implementation that has been non-functional for approximately five years. Specifically, the driver fails to set the interface device pointer before registration, which was required after commit 723de0f9171e ("staging: most: remove device from interface structure"). If the I2C driver is probed, this results in a NULL pointer dereference.

Critical Impact

Attempting to probe the MOST I2C driver triggers a NULL pointer dereference, potentially causing kernel panic and system denial of service.

Affected Products

  • Linux Kernel (staging/most subsystem)
  • Systems with MOST I2C driver enabled in kernel configuration

Discovery Timeline

  • 2026-01-05 - CVE CVE-2025-68755 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2025-68755

Vulnerability Analysis

This vulnerability is a NULL Pointer Dereference within the Linux kernel's staging driver subsystem. The MOST I2C driver became broken following an architectural change introduced in commit 723de0f9171e, which modified the interface structure requirements. After this change, drivers were required to set the interface device pointer before calling the registration function. However, the MOST I2C driver was never updated to comply with this new requirement.

The vulnerability remained latent for approximately five years, indicating the driver had minimal practical usage. When the driver is probed (during device initialization or hot-plug events), the kernel attempts to access the uninitialized device pointer, resulting in a NULL pointer dereference that crashes the kernel.

Root Cause

The root cause is a missing initialization step in the MOST I2C driver. After the changes introduced by commit 723de0f9171e, all drivers using the MOST interface structure were required to populate the device pointer field before registration. The I2C driver implementation did not include this initialization, leaving the pointer as NULL. When kernel code subsequently attempts to dereference this pointer during driver operations, the NULL access triggers a kernel fault.

Attack Vector

The attack vector for this vulnerability is local and requires specific conditions to be met:

  1. The target system must have the MOST I2C driver compiled into the kernel or loaded as a module
  2. An I2C device matching the driver must be present or be simulated
  3. The driver probe function must be invoked through device enumeration

While exploitation requires local access and specific hardware/configuration conditions, successful triggering of the vulnerability results in a kernel panic, causing complete system unavailability. The vulnerability is primarily a reliability and availability issue rather than a confidentiality or integrity concern.

The NULL pointer dereference occurs when the registration code path attempts to access the interface device pointer that was never set during driver initialization. This missing initialization was an oversight when API requirements changed, breaking the driver silently until probe is attempted.

Detection Methods for CVE-2025-68755

Indicators of Compromise

  • Kernel panic or oops messages referencing the most_i2c driver or staging/most subsystem
  • System crashes during I2C device enumeration or hot-plug events
  • Kernel log entries showing NULL pointer dereference stack traces with MOST-related functions
  • Unexpected system reboots on systems with MOST hardware or configuration enabled

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for NULL pointer dereference errors in staging/most code paths
  • Check loaded kernel modules for most_i2c or related MOST staging drivers using lsmod
  • Review kernel configuration to determine if CONFIG_MOST_I2C is enabled
  • Use kernel tracing tools to monitor for faults in the staging/most driver subsystem

Monitoring Recommendations

  • Configure kernel crash dump collection (kdump) to capture diagnostic information if NULL pointer dereference occurs
  • Implement automated kernel log monitoring for staging driver errors
  • Monitor system availability metrics to detect unexpected crashes that may indicate exploitation attempts
  • Review kernel module load events for MOST-related drivers

How to Mitigate CVE-2025-68755

Immediate Actions Required

  • Apply the kernel patches that remove the broken MOST I2C driver from the staging tree
  • If patching is not immediately possible, blacklist the most_i2c module to prevent loading
  • Review system configurations to identify if MOST I2C functionality is required
  • Update to a patched kernel version that includes the driver removal

Patch Information

The Linux kernel maintainers have resolved this vulnerability by completely removing the broken MOST I2C driver from the staging subsystem. The patches are available from the kernel git repository:

  • Kernel Git Commit 495df2da6944
  • Kernel Git Commit 6059a66dba7f
  • Kernel Git Commit e463548fd80e

Organizations should update to kernel versions that include these commits to permanently resolve the vulnerability.

Workarounds

  • Blacklist the MOST I2C kernel module by adding blacklist most_i2c to /etc/modprobe.d/blacklist.conf
  • Recompile the kernel with CONFIG_MOST_I2C=n to exclude the vulnerable driver
  • Remove the most_i2c.ko module file from the system if present
  • Prevent module auto-loading by adding install most_i2c /bin/false to modprobe configuration
bash
# Blacklist the vulnerable MOST I2C driver
echo "blacklist most_i2c" >> /etc/modprobe.d/blacklist-most.conf
echo "install most_i2c /bin/false" >> /etc/modprobe.d/blacklist-most.conf

# Verify the module is not currently loaded
lsmod | grep most

# If loaded, attempt to remove (may fail if in use)
rmmod most_i2c 2>/dev/null

# Update initramfs to apply blacklist at boot
update-initramfs -u

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 Update 1

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3
  • 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