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

CVE-2026-43300: Linux Kernel Null Pointer Vulnerability

CVE-2026-43300 is a null pointer dereference vulnerability in the Linux Kernel DRM panel driver that can cause system crashes. This article covers the technical details, affected versions, impact, and mitigation steps.

Published: May 18, 2026

CVE-2026-43300 Overview

CVE-2026-43300 is a NULL pointer dereference vulnerability in the Linux kernel's Direct Rendering Manager (DRM) panel driver. The flaw resides in the jdi_panel_dsi_remove() function within the JDI MIPI DSI panel driver. The function explicitly checks whether the jdi pointer is NULL but fails to return early, allowing execution to proceed into jdi_panel_disable(), which unconditionally dereferences the same pointer. The defect is tracked under CWE-476: NULL Pointer Dereference and affects the linux_kernel package maintained by the upstream Linux project.

Critical Impact

A local user with sufficient privileges to trigger panel removal can cause a kernel NULL pointer dereference, resulting in a kernel oops and denial of service on the affected system.

Affected Products

  • Linux Kernel (upstream, multiple versions prior to the patched commits)
  • Distributions shipping the drm/panel JDI MIPI DSI driver
  • Embedded and mobile Linux systems using JDI display panels over MIPI DSI

Discovery Timeline

  • 2026-05-08 - CVE-2026-43300 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43300

Vulnerability Analysis

The vulnerability exists in the jdi_panel_dsi_remove() function in the Linux kernel drm/panel subsystem. The function performs a check on the jdi pointer with if (!jdi) and conditionally calls mipi_dsi_detach(dsi). However, the function does not return after this check. Execution continues into a call to jdi_panel_disable(&jdi->base), which dereferences jdi to obtain the base member.

Inside jdi_panel_disable(), the kernel invokes to_panel_jdi(panel) to recover the jdi_panel structure and then accesses jdi->backlight through backlight_disable(). Both operations dereference a pointer that the caller already identified as potentially NULL. Triggering the removal path with jdi == NULL produces a kernel oops.

Root Cause

The root cause is a missing early return after a NULL check. The author recognized that jdi could be NULL but used the conditional only to guard a single call site instead of aborting the entire teardown sequence. This is a classic [CWE-476] defect: control flow following a NULL guard treats the guarded pointer as valid.

Attack Vector

The attack vector is local. An attacker needs the ability to trigger the driver's remove path, which typically requires loaded kernel modules tied to the JDI panel device and privileges to influence device removal or module unloading. Successful exploitation crashes the kernel and causes a denial of service. Confidentiality and integrity are not directly impacted.

No public proof-of-concept exists, the issue is not listed in CISA KEV, and no in-the-wild exploitation has been reported. The fix is a defensive early return when jdi is NULL, preventing any further dereference in the cleanup path.

Detection Methods for CVE-2026-43300

Indicators of Compromise

  • Kernel oops or panic logs referencing jdi_panel_disable, jdi_panel_dsi_remove, or backlight_disable in dmesg or /var/log/kern.log
  • Unexpected system reboots or hangs on devices using JDI MIPI DSI panels following module unload or device removal events
  • BUG: kernel NULL pointer dereference entries with call traces pointing to drm/panel subsystem symbols

Detection Strategies

  • Audit running kernel versions across Linux fleet inventories and compare against the patched commits 2f5427d8, 83ce0085, 95eed73b, and ec2f37bb
  • Monitor kernel crash dumps and kdump artifacts for stack traces involving jdi_panel_* symbols
  • Track module load and unload events for panel-jdi-lt070me05000 or similar JDI panel drivers via auditd rules

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform and alert on NULL pointer dereference strings combined with DRM panel symbols
  • Track unscheduled reboots on embedded Linux endpoints that ship JDI display hardware
  • Correlate device removal events with subsequent kernel crash signatures to identify exploitation attempts

How to Mitigate CVE-2026-43300

Immediate Actions Required

  • Apply the upstream Linux kernel patches referenced by commits 2f5427d8726b, 83ce0085fabf, 95eed73b8711, and ec2f37bbb733 from kernel.org stable tree
  • Update to the distribution-provided kernel package that incorporates the fix for the drm/panel JDI driver
  • Restrict the ability to load and unload kernel modules to privileged administrative accounts only

Patch Information

The Linux kernel maintainers resolved the issue by adding an early return in jdi_panel_dsi_remove() when jdi is NULL, preventing the subsequent jdi_panel_disable() call from dereferencing a NULL pointer. Backports are available across multiple stable branches via the Kernel Git Commit 2f5427d, Kernel Git Commit 83ce0085, Kernel Git Commit 95eed73b, and Kernel Git Commit ec2f37bb.

Workarounds

  • Disable or blacklist the JDI MIPI DSI panel driver on systems that do not require it via /etc/modprobe.d/ configuration
  • Limit local user access and enforce least privilege to reduce the population of accounts capable of triggering driver remove paths
  • Enable kernel lockdown mode where supported to restrict module manipulation by privileged but untrusted processes
bash
# Blacklist the JDI panel driver if unused on the system
echo "blacklist panel_jdi_lt070me05000" | sudo tee /etc/modprobe.d/blacklist-jdi-panel.conf
sudo update-initramfs -u

# Verify running kernel version against patched commits
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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Vendor Resources
  • Kernel Git Commit 2f5427d

  • Kernel Git Commit 83ce0085

  • Kernel Git Commit 95eed73b

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