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

CVE-2026-22982: Linux Kernel MSCC Ocelot DoS Vulnerability

CVE-2026-22982 is a denial of service flaw in the Linux kernel MSCC Ocelot driver that causes crashes when adding interfaces under LAG. This post covers the technical details, affected systems, and mitigation strategies.

Published: January 30, 2026

CVE-2026-22982 Overview

A NULL pointer dereference vulnerability has been discovered in the Linux kernel's Microsemi Ocelot network switch driver (net: mscc: ocelot). The vulnerability occurs in the ocelot_set_aggr_pgids() function when adding a network interface under a Link Aggregation Group (LAG). This issue is similar to a previously resolved vulnerability in the lan966x driver (Commit 15faa1f67ab4).

Critical Impact

System crash or denial of service when adding network interfaces to LAG configurations on affected Ocelot-based network switches.

Affected Products

  • Linux kernel with Microsemi Ocelot driver (ocelot_vsc7514.c frontend)
  • Systems using Ocelot-based network switches with LAG configurations
  • Network infrastructure utilizing the affected ocelot driver module

Discovery Timeline

  • 2026-01-23 - CVE CVE-2026-22982 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-22982

Vulnerability Analysis

This vulnerability is a NULL pointer dereference issue within the Linux kernel's Ocelot network switch driver. The ocelot_set_aggr_pgids() function fails to properly validate port pointers before accessing them, leading to a kernel crash when the code attempts to dereference a NULL pointer.

The issue specifically affects the ocelot_vsc7514.c frontend implementation, which leaves unused ports as NULL pointers in its internal data structures. When a network interface is added under a LAG configuration, the function iterates through ports without checking if each port pointer is valid, causing a crash when it encounters a NULL entry.

The felix_vsc9959.c frontend is unaffected by this vulnerability because it utilizes the DSA (Distributed Switch Architecture) framework, which properly registers all ports regardless of their usage state.

Root Cause

The root cause of this vulnerability is improper input validation in the ocelot_set_aggr_pgids() function. The code assumes all port array entries contain valid pointers, but the ocelot_vsc7514.c frontend initializes unused ports as NULL. When the function processes these NULL entries during LAG operations, the resulting NULL pointer dereference triggers a kernel panic.

Attack Vector

The vulnerability can be triggered when an administrator or privileged user attempts to add a network interface under a LAG configuration on an affected system. While local access and elevated privileges are typically required to configure network interfaces, the resulting system crash leads to denial of service.

The attack flow involves:

  1. A system running the affected Linux kernel with the Ocelot driver loaded
  2. Initiating a LAG configuration that involves the ocelot_set_aggr_pgids() function
  3. The function encounters a NULL port pointer in its iteration
  4. Kernel crash occurs due to NULL pointer dereference

The vulnerability mechanism involves the iteration over port structures without proper NULL checks. When the ocelot_vsc7514.c driver is in use, unused ports remain as NULL pointers, and accessing these during LAG operations causes the kernel to crash. The fix involves adding a validation check to verify that the port pointer is valid before attempting to access its members. For detailed implementation, refer to the kernel patch commits.

Detection Methods for CVE-2026-22982

Indicators of Compromise

  • Kernel panic logs referencing ocelot_set_aggr_pgids() function
  • System crashes occurring when configuring LAG interfaces on Ocelot-based switches
  • Crash dumps showing NULL pointer dereference in the mscc_ocelot or related kernel modules
  • Repeated system reboots during network configuration activities

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for NULL pointer dereference errors in the ocelot driver
  • Implement system stability monitoring to detect unexpected crashes during network configuration
  • Review loaded kernel modules for ocelot_vsc7514 presence using lsmod
  • Deploy kernel-level crash analysis tools to identify ocelot-related crashes

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture diagnostic information
  • Configure log aggregation for kernel panic messages across affected systems
  • Monitor for abnormal system reboot patterns on network infrastructure devices
  • Implement alerting for kernel oops or panic events related to network drivers

How to Mitigate CVE-2026-22982

Immediate Actions Required

  • Apply the kernel patches from the stable kernel branches immediately
  • Avoid configuring LAG interfaces on affected systems until patches are applied
  • Consider temporarily using alternative network configurations that don't require LAG
  • Schedule maintenance windows to update kernel on affected network infrastructure

Patch Information

Multiple patches have been released to address this vulnerability across various stable Linux kernel branches. The fix adds proper NULL pointer validation before accessing port structures in the ocelot_set_aggr_pgids() function.

Relevant kernel commits:

  • Commit 03fb1708b7d1
  • Commit 2985712dc76d
  • Commit 34f3ff52cb9f
  • Commit 8767f238b0e6
  • Commit b17818307446
  • Commit f490af47bbee

Update your Linux kernel to a version that includes these patches from your distribution's package repository.

Workarounds

  • Disable or avoid using LAG configurations on systems with the ocelot_vsc7514 driver until patches can be applied
  • Consider using the felix_vsc9959 frontend with DSA framework if hardware supports it, as it is unaffected
  • Implement network redundancy at higher layers to avoid LAG dependency on affected switches
  • Blacklist the vulnerable driver module if the affected hardware is not in production use
bash
# Check if the vulnerable module is loaded
lsmod | grep -E "ocelot|mscc"

# Update kernel on Debian/Ubuntu systems
sudo apt update && sudo apt upgrade linux-image-$(uname -r)

# Update kernel on RHEL/CentOS systems
sudo yum update kernel

# Verify kernel version after update
uname -r

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit Update 03fb170

  • Linux Kernel Commit Update 2985712

  • Linux Kernel Commit Update 34f3ff5

  • Linux Kernel Commit Update 8767f23

  • Linux Kernel Commit Update b178183

  • Linux Kernel Commit Update f490af4
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

  • CVE-2026-23459: Linux Kernel DOS 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