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

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

CVE-2026-23286 is a use-after-free flaw in the Linux kernel ATM LANE module that causes null pointer dereference crashes. This article covers the technical details, affected versions, security impact, and mitigation steps.

Published: March 27, 2026

CVE-2026-23286 Overview

A null pointer dereference vulnerability has been identified in the Linux kernel's ATM LAN Emulation Client (LEC) module. The vulnerability exists in the lec_arp_clear_vccs() function, where improper handling of shared ATM Virtual Channel Connections (VCCs) across multiple ARP table entries can lead to a null pointer dereference when the underlying VCC is closed.

This issue was discovered through syzkaller, a kernel fuzzing tool, and can be reliably reproduced using the syzkaller reproducer. The vulnerability affects systems utilizing the ATM LANE (LAN Emulation) networking subsystem.

Critical Impact

Local attackers can trigger a kernel crash through null pointer dereference in the ATM LANE module, causing system denial of service.

Affected Products

  • Linux kernel (versions with ATM LANE module enabled)
  • Systems using ATM LAN Emulation networking
  • Enterprise network infrastructure utilizing ATM switching

Discovery Timeline

  • March 25, 2026 - CVE-2026-23286 published to NVD
  • March 25, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23286

Vulnerability Analysis

The vulnerability resides in the ATM LANE (LAN Emulation) module's ARP cache management code. In the ATM LANE implementation, the same atm_vcc structure can be shared by multiple lec_arp_table entries through either entry->vcc or entry->recv_vcc pointers. This sharing mechanism creates a race condition scenario during VCC cleanup operations.

When the underlying VCC is closed, lec_vcc_close() iterates over all ARP entries in various hash lists (including priv->lec_arp_empty_ones) and calls lec_arp_clear_vccs() for each matched entry. The problem manifests during this iteration process when multiple entries share the same VCC.

During the first iteration for a matched ARP entry, lec_arp_clear_vccs() frees the associated vpriv structure (accessed via vcc->user_back) and sets vcc->user_back to NULL. In subsequent iterations for other ARP entries sharing the same VCC, the function attempts to access the now-NULL vpriv pointer through LEC_VCC_PRIV(vcc) and dereferences it when accessing vpriv->old_pop, resulting in a null pointer dereference kernel crash.

Root Cause

The root cause is the absence of a null check for vpriv before dereferencing it in lec_arp_clear_vccs(). The function assumes vcc->user_back is always valid when called, but this assumption breaks when multiple ARP entries share the same VCC. The initial code path handling entry->vcc has been vulnerable since the module's original implementation, and the entry->recv_vcc path introduced in commit 8d9f73c0ad2f ("atm: fix a memory leak of vcc->user_back") inherited the same vulnerable pattern.

Attack Vector

An attacker with local access can trigger this vulnerability by manipulating ATM LANE connections in a manner that causes multiple ARP entries to share a VCC, then closing that connection. This causes the kernel to crash due to the null pointer dereference when iterating through the shared VCC entries.

The exploitation does not require elevated privileges but does require the ability to interact with the ATM LANE subsystem. The resulting denial of service affects system availability as the kernel will crash when the vulnerable code path is triggered.

Detection Methods for CVE-2026-23286

Indicators of Compromise

  • Kernel panic or oops messages referencing lec_arp_clear_vccs function
  • Crash dumps showing null pointer dereference in the ATM LANE module (net/atm/lec.c)
  • System instability when closing ATM LANE connections
  • Unexpected kernel crashes on systems with ATM networking enabled

Detection Strategies

  • Monitor kernel logs for null pointer dereference errors in ATM subsystem functions
  • Implement kernel crash dump analysis to identify patterns consistent with this vulnerability
  • Use kernel address sanitizer (KASAN) to detect memory access violations in the ATM LANE module
  • Deploy endpoint detection solutions capable of monitoring kernel-level anomalies

Monitoring Recommendations

  • Enable kernel crash reporting and automatic crash dump collection on affected systems
  • Configure log aggregation to alert on ATM LANE-related kernel messages
  • Monitor system uptime metrics for unexpected reboots that may indicate exploitation attempts
  • Implement SentinelOne Singularity Platform for real-time kernel threat detection and response

How to Mitigate CVE-2026-23286

Immediate Actions Required

  • Apply the latest Linux kernel patches containing the fix for this vulnerability
  • If ATM LANE functionality is not required, consider disabling or blacklisting the lec kernel module
  • Restrict local access to systems where ATM LANE is in use
  • Monitor affected systems for signs of exploitation attempts

Patch Information

The vulnerability has been addressed across multiple stable kernel branches. The fix adds a null check for vpriv before dereferencing it in lec_arp_clear_vccs(). If vpriv is NULL, indicating the VCC has already been cleared by a previous call, the cleanup is safely skipped and only the entry's vcc/recv_vcc pointers are cleared.

Apply one of the following commits based on your kernel version:

  • Linux Kernel Commit 101bacb303e
  • Linux Kernel Commit 2d9f57ea29a
  • Linux Kernel Commit 5f1cfea7921
  • Linux Kernel Commit 622062f2464
  • Linux Kernel Commit 7ea92ab075d
  • Linux Kernel Commit e9665986eb1

Workarounds

  • Disable the ATM LANE module if not required: modprobe -r lec or blacklist in /etc/modprobe.d/
  • Restrict physical and logical access to ATM networking infrastructure
  • Implement network segmentation to limit exposure of systems using ATM LANE
  • Deploy SentinelOne Singularity XDR for comprehensive kernel vulnerability monitoring and threat detection
bash
# Disable ATM LANE module as a temporary workaround
echo "blacklist lec" >> /etc/modprobe.d/blacklist-atm-lec.conf
modprobe -r lec

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
  • Linux Kernel Commit 101bacb303e

  • Linux Kernel Commit 2d9f57ea29a

  • Linux Kernel Commit 5f1cfea7921

  • Linux Kernel Commit 622062f2464

  • Linux Kernel Commit 7ea92ab075d

  • Linux Kernel Commit e9665986eb1
  • 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