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

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

CVE-2026-23019 is a use-after-free flaw in the Linux kernel's Marvell Prestera driver that causes NULL pointer dereference. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 6, 2026

CVE-2026-23019 Overview

CVE-2026-23019 is a Null Pointer Dereference vulnerability affecting the Linux kernel's Marvell Prestera network driver. The vulnerability exists in the prestera_devlink_alloc() function, which unconditionally calls devlink_priv() on the pointer returned by devlink_alloc() without first checking if the allocation succeeded. When devlink_alloc() fails and returns NULL due to memory allocation failure, the subsequent call to devlink_priv() dereferences this NULL pointer, leading to a kernel crash.

Critical Impact

A NULL pointer dereference in the Linux kernel Marvell Prestera driver can cause system crashes and denial of service conditions when memory allocation fails during network device initialization.

Affected Products

  • Linux Kernel with Marvell Prestera network driver enabled
  • Systems using Marvell Prestera network switching hardware
  • Network infrastructure devices running affected kernel versions

Discovery Timeline

  • 2026-01-31 - CVE CVE-2026-23019 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2026-23019

Vulnerability Analysis

This vulnerability is a classic example of missing NULL pointer validation in kernel code. The devlink_alloc() function is responsible for allocating memory for a devlink structure, which is a framework used for exposing device hardware information and configuration to userspace. When system memory is constrained or allocation fails for any reason, this function returns NULL to indicate the failure.

The vulnerable code path in the Marvell Prestera driver fails to account for this failure case. The prestera_devlink_alloc() function immediately passes the potentially NULL pointer to devlink_priv(), which attempts to calculate and return an offset within the devlink structure. When operating on a NULL pointer, this results in accessing invalid memory addresses, triggering a kernel panic.

The impact of this vulnerability is primarily denial of service through kernel crashes. While remote exploitation is unlikely without other enabling conditions, local attackers or system conditions that trigger memory pressure during driver initialization could exploit this flaw to crash the system.

Root Cause

The root cause is improper error handling in the prestera_devlink_alloc() function. The code assumes that devlink_alloc() always succeeds and does not implement defensive programming practices to validate the returned pointer before use. This missing NULL check allows the code path to continue with an invalid pointer, resulting in undefined behavior when the pointer is dereferenced.

Attack Vector

The vulnerability can be triggered when the kernel fails to allocate memory during Marvell Prestera network device initialization. While the attack vector details are not fully specified in the CVE data, the vulnerability manifests during the device driver initialization phase.

An attacker with local access could potentially trigger memory pressure conditions that cause devlink_alloc() to fail, or the condition could occur naturally on systems with limited memory resources. The resulting kernel crash causes a denial of service, requiring a system reboot to recover.

The fix adds a simple NULL pointer check after devlink_alloc() returns, ensuring that the function returns NULL early if allocation fails rather than proceeding with an invalid pointer.

Detection Methods for CVE-2026-23019

Indicators of Compromise

  • Unexpected kernel panics or system crashes during network device initialization
  • Kernel oops messages referencing the prestera_devlink_alloc or devlink_priv functions
  • System log entries showing NULL pointer dereference errors in the Marvell Prestera driver
  • Repeated system reboots when Marvell Prestera network hardware is present

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for NULL pointer dereference errors related to the prestera or devlink subsystems
  • Implement kernel crash dump analysis to identify crashes originating from the Marvell Prestera driver code path
  • Use kernel debugging tools such as KASAN (Kernel Address Sanitizer) to detect NULL pointer access during testing
  • Deploy system monitoring to alert on unexpected kernel panics during network device initialization

Monitoring Recommendations

  • Configure centralized logging to capture kernel panic events and crash dumps from systems with Marvell Prestera hardware
  • Set up alerts for system reboots that occur during boot or driver loading phases
  • Monitor system memory utilization to identify conditions that may lead to allocation failures
  • Implement health checks for network devices using Marvell Prestera switching hardware

How to Mitigate CVE-2026-23019

Immediate Actions Required

  • Review systems with Marvell Prestera network hardware and identify those running vulnerable kernel versions
  • Apply available kernel patches from the official Linux kernel stable branches
  • Ensure adequate system memory is available to reduce the likelihood of allocation failures
  • Monitor affected systems for unexpected crashes until patches can be applied

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix adds a NULL pointer check after the devlink_alloc() call and returns NULL early if the allocation fails, preventing the NULL pointer dereference.

Multiple commits have been applied to various stable kernel branches:

  • Kernel Git Commit 325aea7
  • Kernel Git Commit 326a4b7
  • Kernel Git Commit 3950054
  • Kernel Git Commit 8a4333b
  • Kernel Git Commit 94e070c
  • Kernel Git Commit a428e0d

Organizations should update to kernel versions containing these fixes through their standard kernel update processes.

Workarounds

  • If the Marvell Prestera driver is not required, disable or blacklist the prestera kernel module to prevent it from loading
  • Ensure systems have adequate memory resources to minimize the risk of allocation failures
  • Implement kernel module loading restrictions to prevent the vulnerable driver from loading until patched
  • Consider using alternative network hardware if patches cannot be immediately applied
bash
# Blacklist the prestera module to prevent loading (temporary workaround)
echo "blacklist prestera" | sudo tee /etc/modprobe.d/blacklist-prestera.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.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 325aea7

  • Kernel Git Commit 326a4b7

  • Kernel Git Commit 3950054

  • Kernel Git Commit 8a4333b

  • Kernel Git Commit 94e070c

  • Kernel Git Commit a428e0d
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

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

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

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