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

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

CVE-2026-23460 is a denial of service flaw in the Linux kernel ROSE protocol that causes NULL pointer dereference during reconnection attempts. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-23460 Overview

CVE-2026-23460 is a NULL pointer dereference vulnerability in the Linux kernel's ROSE (Radio Amateur Packet Radio) network subsystem. The flaw exists in the rose_transmit_link() function and can be triggered during socket reconnection attempts. This vulnerability was discovered through syzkaller, Google's kernel fuzzing infrastructure, highlighting a missing state validation check in the rose_connect() function.

Critical Impact

Local attackers can trigger a kernel panic through a NULL pointer dereference by initiating a second connect() call on a ROSE socket while the first connection attempt is still in progress, potentially leading to system denial of service.

Affected Products

  • Linux Kernel (ROSE network protocol subsystem)
  • Systems with ROSE amateur radio protocol enabled
  • Linux distributions with CONFIG_ROSE kernel module compiled

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-23460 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-23460

Vulnerability Analysis

ROSE sockets in the Linux kernel utilize four sk->sk_state values: TCP_CLOSE, TCP_LISTEN, TCP_SYN_SENT, and TCP_ESTABLISHED. The rose_connect() function properly rejects connection attempts when the socket is in TCP_ESTABLISHED state (returning -EISCONN) and when in TCP_CLOSE with SS_CONNECTING (returning -ECONNREFUSED). However, the function lacks a critical validation check for the TCP_SYN_SENT state.

When rose_connect() is invoked a second time while a connection attempt is already in progress (socket in TCP_SYN_SENT state), the function proceeds to overwrite rose->neighbour via rose_get_neigh(). If this function returns NULL, the socket enters an inconsistent state where rose->state equals ROSE_STATE_1 but rose->neighbour is NULL.

Subsequently, when the socket is closed, rose_release() observes ROSE_STATE_1 and invokes rose_write_internal(), which in turn calls rose_transmit_link(skb, NULL). This call with a NULL neighbour pointer triggers a NULL pointer dereference, resulting in a kernel panic.

Root Cause

The root cause is a missing state validation check in rose_connect() that fails to reject reconnection attempts when a connection is already in progress. According to the connect(2) specification, a second connect() call while a connection is already in progress should return -EALREADY. The fix adds this missing check for the TCP_SYN_SENT state to complete the state validation logic.

Attack Vector

The vulnerability is exploitable locally by a user with access to create ROSE sockets. The attack involves:

  1. Creating a ROSE socket and initiating a connection attempt (socket enters TCP_SYN_SENT state)
  2. Immediately calling connect() again before the first connection completes
  3. If rose_get_neigh() returns NULL during the second call, the socket is left in an inconsistent state
  4. Closing the socket triggers the NULL pointer dereference in rose_transmit_link()

The vulnerability mechanism involves a race condition in socket state management. When rose_connect() processes a second connection request while the socket is in TCP_SYN_SENT state, it overwrites internal connection state without proper validation. If the neighbor lookup fails, subsequent socket cleanup operations attempt to dereference a NULL pointer, causing a kernel panic. A reproducer demonstrating this issue is available at the syzkaller bug report.

Detection Methods for CVE-2026-23460

Indicators of Compromise

  • Kernel panic logs showing NULL pointer dereference in rose_transmit_link() or rose_write_internal()
  • System crash dumps referencing the net/rose kernel module
  • Unexpected system reboots on systems with ROSE protocol enabled

Detection Strategies

  • Monitor kernel logs for oops messages containing rose_transmit_link or rose_connect in the call trace
  • Implement system call auditing for connect() calls on AF_ROSE sockets
  • Deploy kernel crash dump analysis tools to identify exploitation attempts

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture evidence of exploitation attempts
  • Monitor for unusual ROSE socket activity using netlink socket monitoring
  • Implement SentinelOne Singularity endpoint protection for real-time kernel-level threat detection

How to Mitigate CVE-2026-23460

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the TCP_SYN_SENT state check in rose_connect()
  • Disable the ROSE kernel module if not required for operational purposes using modprobe -r rose
  • Apply kernel live patching if available for your distribution to mitigate without reboot

Patch Information

The vulnerability has been fixed in multiple kernel versions through a series of commits that add the missing -EALREADY return check for TCP_SYN_SENT state in rose_connect(). Patches are available at the following kernel git commits:

  • Kernel Git Commit 0c3e8bf
  • Kernel Git Commit 0c9fb70
  • Kernel Git Commit 508f49c
  • Kernel Git Commit a122540
  • Kernel Git Commit c2ab74c
  • Kernel Git Commit e1f0a18

Workarounds

  • Blacklist the ROSE kernel module by adding blacklist rose to /etc/modprobe.d/blacklist.conf
  • Restrict access to raw sockets and AF_ROSE address family using SELinux or AppArmor policies
  • Limit local user access to systems where ROSE protocol is required
bash
# Disable ROSE kernel module temporarily
sudo modprobe -r rose

# Permanently blacklist ROSE module
echo "blacklist rose" | sudo tee /etc/modprobe.d/rose-blacklist.conf
echo "install rose /bin/false" | sudo tee -a /etc/modprobe.d/rose-blacklist.conf

# Verify module is not loaded
lsmod | grep rose

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

  • Kernel Git Commit 0c9fb70

  • Kernel Git Commit 508f49c

  • Kernel Git Commit a122540

  • Kernel Git Commit c2ab74c

  • Kernel Git Commit e1f0a18
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

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

  • CVE-2026-23459: Linux Kernel DOS Vulnerability

  • CVE-2026-23453: Linux Kernel ICSSG-PRUETH 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