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

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

CVE-2026-22983 is a use-after-free vulnerability in the Linux kernel that can lead to NULL pointer dereference in network message handling. This post explains its impact, affected versions, and mitigation steps.

Published: January 30, 2026

CVE-2026-22983 Overview

A NULL pointer dereference vulnerability has been identified in the Linux kernel's network subsystem, specifically within the AF_UNIX stream socket implementation. The vulnerability occurs when the msg_get_inq field is incorrectly written to in the callee function unix_stream_read_generic, potentially causing a kernel crash when the state->msg pointer is NULL during splice operations.

Critical Impact

This vulnerability can cause a kernel panic through NULL pointer dereference when splicing AF_UNIX stream sockets, potentially leading to denial of service conditions on affected Linux systems.

Affected Products

  • Linux kernel (versions containing commits 4d1442979e4a and 2b514574f7e8)
  • Systems using AF_UNIX stream sockets with splice operations
  • Linux distributions running vulnerable kernel versions

Discovery Timeline

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

Technical Details for CVE-2026-22983

Vulnerability Analysis

The vulnerability stems from improper handling of the msg_get_inq field in the kernel's message header structure (msghdr). The msg_get_inq field is designed as an input parameter that callers set to request the input queue length be returned in msg_inq. However, the callee function was incorrectly writing to this field, which becomes problematic when the caller does not reinitialize the field on struct reuse.

The critical issue manifests in unix_stream_read_generic when a NULL state->msg pointer is encountered during splice operations. When attempting to write to msg->msg_get_inq with a NULL message pointer, the kernel triggers a NULL pointer dereference, resulting in a kernel panic or system crash.

This vulnerability is a regression that relates to commit 4d1442979e4a ("af_unix: don't post cmsg for SO_INQ unless explicitly asked for") and was exposed by commit 2b514574f7e8 ("net: af_unix: implement splice for stream af_unix sockets").

Root Cause

The root cause is a violation of the caller-callee contract for the msg_get_inq field. The field should only be read by the callee to determine if the input queue length should be returned, not written to. The callee was modifying this input field, which combined with potential NULL message pointers during splice operations, created conditions for a NULL pointer dereference.

Attack Vector

The attack vector involves triggering the vulnerable code path through AF_UNIX stream socket splice operations. When splice functionality is used on AF_UNIX sockets, the state->msg pointer can be NULL (as documented in commit 2b514574f7e8). If the vulnerable code path attempts to dereference this NULL pointer to write to msg->msg_get_inq, the kernel will crash.

An attacker with local access could potentially craft specific socket operations combining splice calls with AF_UNIX stream sockets to trigger the NULL pointer dereference, causing a denial of service condition.

Detection Methods for CVE-2026-22983

Indicators of Compromise

  • Kernel panic messages referencing unix_stream_read_generic function
  • System crashes during AF_UNIX socket splice operations
  • Kernel oops logs showing NULL pointer dereference in networking subsystem
  • Unexpected system reboots without hardware-related causes

Detection Strategies

  • Monitor kernel logs for NULL pointer dereference errors in network-related functions
  • Implement kernel tracing on unix_stream_read_generic function calls
  • Deploy system monitoring for unexpected kernel panics or system crashes
  • Review application logs for failed splice operations on Unix domain sockets

Monitoring Recommendations

  • Enable kernel crash dump collection for post-incident analysis
  • Configure system monitoring to alert on kernel oops or panic events
  • Monitor for abnormal patterns in AF_UNIX socket usage
  • Implement centralized log collection for kernel messages across affected systems

How to Mitigate CVE-2026-22983

Immediate Actions Required

  • Apply the kernel patches from the official kernel git repository
  • Prioritize patching systems that heavily utilize AF_UNIX sockets with splice operations
  • Schedule maintenance windows for kernel updates and system reboots
  • Monitor patched systems for stability after updates

Patch Information

The Linux kernel development team has released fixes for this vulnerability. The patches modify the code to avoid writing to msg_get_inq in the callee function and properly handle the NULL state->msg case. The fix also simplifies the code by collapsing two branches using a bitwise OR operation.

Patches are available at:

  • Kernel Git Commit 7d11e04
  • Kernel Git Commit ffa2be49

Workarounds

  • Limit use of splice operations on AF_UNIX stream sockets where possible until patching is complete
  • Implement application-level restrictions on socket splice functionality
  • Consider isolating workloads using AF_UNIX splice in containers with crash recovery mechanisms
  • Deploy monitoring to detect and recover from potential system crashes
bash
# Check current kernel version for vulnerability assessment
uname -r

# Verify if patches are applied (check git commit presence)
# Note: Specific verification depends on distribution
zcat /proc/config.gz | grep -i "AF_UNIX"

# Monitor for kernel crashes related to this vulnerability
dmesg | grep -i "null pointer\|unix_stream"

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

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