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-2024-42224

CVE-2024-42224: Linux Kernel MDIO List Check Vulnerability

CVE-2024-42224 is a list handling flaw in the Linux Kernel's mv88e6xxx driver affecting MDIO bus management. This vulnerability involves incorrect empty list checking. This post covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2024-42224 Overview

CVE-2024-42224 is a vulnerability in the Linux kernel's Distributed Switch Architecture (DSA) driver for Marvell 88E6xxx Ethernet switch chips. The vulnerability exists in the mv88e6xxx_default_mdio_bus() function, which incorrectly checks for empty lists using list_first_entry(). This improper validation can lead to denial of service conditions and potential integrity issues when the MDIO bus list is empty.

Critical Impact

Local attackers with limited privileges can exploit this vulnerability to cause system instability or denial of service on systems utilizing Marvell 88E6xxx Ethernet switch hardware.

Affected Products

  • Linux Kernel (multiple versions)
  • Systems with Marvell 88E6xxx Ethernet switch hardware
  • Network infrastructure devices using DSA with mv88e6xxx driver

Discovery Timeline

  • 2024-07-30 - CVE-2024-42224 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-42224

Vulnerability Analysis

This vulnerability stems from an improper check for exceptional conditions (CWE-754) in the Linux kernel's DSA mv88e6xxx driver. The issue was introduced in commit a3c53be55c95 ("net: dsa: mv88e6xxx: Support multiple MDIO busses"), which added support for multiple MDIO busses but implemented an incorrect empty list check.

The mv88e6xxx_default_mdio_bus() function checks whether the return value of list_first_entry() is non-NULL to guard against the chip->mdios list being empty. However, this check is fundamentally flawed because list_first_entry() is not designed to return NULL for empty lists—it returns a pointer to the container structure regardless of whether the list has entries.

When exploited, this vulnerability requires local access and low privileges. The attacker does not need user interaction to trigger the flaw. The impact primarily affects system availability through potential crashes or instability, with some integrity implications due to improper list handling.

Root Cause

The root cause is the misuse of the Linux kernel linked list API. The list_first_entry() macro uses container_of() to calculate the address of the first entry in a list, which will return a pointer even when the list is empty. This pointer points to invalid memory relative to the list head, leading to undefined behavior when accessed.

The correct approach is to use list_first_entry_or_null(), which properly checks if the list is empty before returning an entry and returns NULL for empty lists. This was flagged by the Smatch static analysis tool, which detected the incorrect API usage pattern.

Attack Vector

This vulnerability requires local access to the system (AV:L) with low attack complexity (AC:L). An attacker needs low privileges (PR:L) to trigger the vulnerable code path, but no user interaction is required. The scope is unchanged, meaning the vulnerability cannot affect resources beyond the vulnerable component.

The attack involves triggering conditions where the mv88e6xxx driver's MDIO bus list is empty during the call to mv88e6xxx_default_mdio_bus(). This can occur during device initialization, driver module operations, or specific network configuration scenarios. When the empty list is dereferenced using the incorrect check, it can lead to kernel crashes or memory corruption.

Detection Methods for CVE-2024-42224

Indicators of Compromise

  • Unexpected kernel panics or oops messages referencing the mv88e6xxx driver module
  • System instability or crashes during network switch initialization or configuration changes
  • Kernel log entries indicating list corruption or invalid memory access in DSA subsystem

Detection Strategies

  • Monitor kernel logs for stack traces involving mv88e6xxx_default_mdio_bus() or related DSA functions
  • Implement kernel module integrity monitoring to detect exploitation attempts targeting the mv88e6xxx driver
  • Use SentinelOne's behavioral analysis to identify anomalous kernel-level activity patterns

Monitoring Recommendations

  • Enable kernel crash dump analysis to capture forensic evidence of exploitation attempts
  • Deploy runtime kernel protection mechanisms to detect and prevent unauthorized memory access
  • Monitor for unusual MDIO bus operations or switch configuration attempts

How to Mitigate CVE-2024-42224

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the fix for this vulnerability
  • Audit systems using Marvell 88E6xxx Ethernet switch hardware to determine exposure
  • Restrict local system access to trusted users only until patches can be applied
  • Consider deploying SentinelOne endpoint protection for kernel-level threat detection

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches. The fix replaces the incorrect list_first_entry() check with list_first_entry_or_null(), which properly handles empty lists by returning NULL. Multiple patch commits are available:

  • Kernel Git Commit 2a2fe25a
  • Kernel Git Commit 3bf8d70e
  • Kernel Git Commit 3f25b5f1
  • Kernel Git Commit 47d28dde
  • Kernel Git Commit 4c7f3950
  • Kernel Git Commit 8c2c3cca

Debian LTS users should refer to the Debian LTS Security Announcement for distribution-specific patches.

Workarounds

  • If immediate patching is not possible, restrict local system access to minimize attack surface
  • Disable or unload the mv88e6xxx kernel module if Marvell 88E6xxx switch functionality is not required
  • Monitor systems for signs of exploitation while planning patch deployment
bash
# Check if the vulnerable module is loaded
lsmod | grep mv88e6xxx

# View current kernel version to determine if patching is needed
uname -r

# Check kernel logs for any mv88e6xxx related errors
dmesg | grep -i mv88e6xxx

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 Score6.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-754
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Git Commit Change 1

  • Kernel Git Commit Change 2

  • Kernel Git Commit Change 3

  • Kernel Git Commit Change 4

  • Kernel Git Commit Change 5

  • Kernel Git Commit Change 6

  • Kernel Git Commit Change 7

  • Kernel Git Commit Change 8
  • Related CVEs
  • CVE-2026-23457: Linux Kernel Integer Truncation Vulnerability

  • CVE-2026-23442: Linux Kernel IPv6 SRv6 Null Pointer Flaw

  • CVE-2026-23431: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31391: Linux Kernel Atmel SHA204A OOM 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