Skip to main content
A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Find Out Why
  • Experiencing a breach?
  • Blog
  • Careers
  • Platform & Products

    • Singularity™ Platform

      Unified Enterprise Security. Machine-Speed Protection, Intelligence, and Response.

    • XDR

      Native and Open Protection, Detection, and Response.

    • Integrations and Partners

      One-Click Integrations to Unlock the Power of SentinelOne.

    Product Tours
    Pricing & Packages
    Get a Demo
  • Solutions & Use Cases

    SentinelOne for Industries

    Security Tuned for Your Industry.

    See All Industries
    • Healthcare

      Protect Patient Data. Keep Clinical Systems Online.

    • Financial Services

      Stop Fraud and Ransomware. Stay Audit-Ready.

    • Federal Government

      FedRAMP and IL5-Ready Defense for Federal Missions.

    • Manufacturing

      Defend OT, IT, IIOT, and Supply Chains at Scale.

    • Energy

      Secure OT Systems and Critical Infrastructure.

    • Transportation and Logistics

      Defend Operations Across Fleet, Port, and Rail.

    • Higher Education

      Protect Open Networks Without Slowing Research.

    • K-12 Education

      Stop Ransomware. Protect Students, Staff, and Data.

    • Retail and Hospitality

      Defend Your Brand, Customer Data, and Bottom Line.

    • SMB & Startups

      Enterprise-Grade Defense for Fast Teams.

    See all solutions
  • Services

    Managed Services

    Wayfinder Threat Detection and Response.

    Learn More
    • Threat Hunting

      World-Class Expertise and Threat Intelligence.

    • Managed Detection and Response

      24/7 Expert MDR Across Your Entire Environment.

    • Incident Readiness and Response

      DFIR, Breach Readiness, and Compromise Assessments.

    Experiencing a breach?

    Our experts are here to help 24/7.

    1-855-868-3733
    Get Help Now
  • Partners

    Become a Partner

    • Become a SentinelOne Partner

      Join the Global SentinelOne Ecosystem

    • Explore MSSP Solutions

      Services Succeed Faster with SentinelOne

    • Form a Technology Alliance

      Integrated, Enterprise-Scale Solutions

    Find a Partner

    • Enlist a Response or Advisory Team

      Enlist Pro Response and Advisory Teams

    • SentinelOne for AWS

      Hosted Across AWS Regions Worldwide

    • SentinelOne for Google

      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale

    • Partner Locator

      Your Go-to Source for Our Top Partners in Your Region

    • Singularity Marketplace

      One-Click Integrations for Unified Prevention, Detection, and Response

      Explore integrations
    Partner Portal Login
  • Why SentinelOne

    • Why Choose SentinelOne

      AI-Powered Cybersecurity Built to Secure What’s Next.

    • Our Customers

      Trusted by the World’s Leading Companies.

    • Industry Awards & Recognition

      Tested and Proven by the Experts.

  • Resources & Support

    Resources

    • Resource Center
    • Webinars
    • Cybersecurity Blog
    • Events
    • Newsroom

    Company

    • About SentinelOne
    • Careers
    • S Ventures
    • S Foundation
    • Dataset
    • FAQ
    • Investors Relations

    Customer Success & Support

    • Live and On-Demand Training
    • Guided Onboarding & Deployment
    • Technical Account Management
    • Support Services
    • Customer Portal
    • Get Support Now

    Explore

    • Vulnerability Database
    • SentinelLABS Threat Research
    • Ransomeware Anthology
    • Cybersecurity 101
    EventJoin us at OneCon (Oct. 20–22, 2026)
    CompetitionThreat Hunting World Championship 2026
    ReportThe SentinelOne Annual Threat Report
  • Pricing
Get StartedContact us

Explore SentinelOne

  • Pricing
Events
Get StartedContact us
CVE Vulnerability Database
Vulnerability Database/CVE-2023-0394

CVE-2023-0394: Linux Kernel DOS Vulnerability

CVE-2023-0394 is a denial-of-service flaw in the Linux Kernel network subcomponent that triggers a NULL pointer dereference, causing system crashes. This article covers technical details, affected versions, and mitigations.

Updated: May 15, 2026

CVE-2023-0394 Overview

CVE-2023-0394 is a NULL pointer dereference flaw in the rawv6_push_pending_frames function within net/ipv6/raw.c in the Linux kernel networking subsystem. A local authenticated attacker can trigger this flaw to crash the system, resulting in a denial of service. The vulnerability affects multiple Linux kernel versions, including the 6.2 release candidates. The flaw is tracked as [CWE-476] (NULL Pointer Dereference) and requires local low-privilege access to exploit. Upstream maintainers patched the issue in commit cb3e9864cdbe35ff6378966660edbcbac955fe17.

Critical Impact

A local user with low privileges can trigger a kernel crash by exercising the IPv6 raw socket code path, causing a denial of service on the affected host.

Affected Products

  • Linux Kernel (mainline, prior to the upstream fix)
  • Linux Kernel 6.2-rc1, 6.2-rc2, 6.2-rc3
  • Downstream distributions including Debian (addressed via Debian LTS advisories) and NetApp products (per advisory NTAP-20230302-0005)

Discovery Timeline

  • 2023-01-26 - CVE-2023-0394 published to NVD
  • 2025-03-31 - Last updated in NVD database

Technical Details for CVE-2023-0394

Vulnerability Analysis

The flaw exists in rawv6_push_pending_frames, a function in the IPv6 raw socket handling code at net/ipv6/raw.c. The function dereferences a pointer that can be NULL under specific conditions when processing pending socket frames. When the dereference occurs, the kernel encounters an invalid memory access and panics, terminating execution and crashing the affected system.

This is a local availability issue. The CVSS vector indicates no impact on confidentiality or integrity, only high availability impact. Exploitation requires the attacker to already have access to the system with the ability to open IPv6 raw sockets, typically requiring CAP_NET_RAW or equivalent privileges in some configurations.

The issue is classified under [CWE-476] NULL Pointer Dereference. Because the crash occurs in kernel context, the result is a full system reboot requirement rather than a single-process failure.

Root Cause

The root cause is missing validation of a pointer before dereference inside rawv6_push_pending_frames. When the code path is reached with an unexpected socket state, the function operates on a NULL pointer, triggering a kernel oops. The upstream commit cb3e9864cdbe35ff6378966660edbcbac955fe17 adds the required check to prevent the dereference.

Attack Vector

An attacker with local access and the ability to create IPv6 raw sockets can craft a sequence of socket operations that drives execution into the vulnerable code path. The vulnerability cannot be triggered remotely without prior local access. The vulnerability does not provide code execution or information disclosure, but it allows a low-privileged user to crash multi-user or shared-tenant hosts.

No public proof-of-concept is listed for CVE-2023-0394, and the issue is not present in the CISA Known Exploited Vulnerabilities catalog. Refer to the upstream kernel commit for the precise code change.

Detection Methods for CVE-2023-0394

Indicators of Compromise

  • Unexpected kernel panic or oops messages referencing rawv6_push_pending_frames or net/ipv6/raw.c in dmesg or /var/log/kern.log
  • Sudden host reboots correlated with local user activity involving IPv6 raw sockets
  • Crash dumps showing a NULL pointer dereference in the IPv6 networking stack

Detection Strategies

  • Audit kernel crash logs and vmcore dumps for stack traces pointing to IPv6 raw socket functions
  • Monitor auditd events for processes calling socket(AF_INET6, SOCK_RAW, ...) from non-privileged or unexpected accounts
  • Correlate host availability loss events with preceding raw socket activity from user-space processes

Monitoring Recommendations

  • Forward kernel logs to a centralized logging or SIEM platform for stack-trace pattern matching
  • Alert on repeated kernel oops events from the same host within short intervals
  • Track which workloads require CAP_NET_RAW and review whether that privilege can be removed

How to Mitigate CVE-2023-0394

Immediate Actions Required

  • Inventory Linux hosts running kernel versions prior to the upstream fix, including 6.2-rc1 through 6.2-rc3
  • Apply vendor-supplied kernel updates from Debian, NetApp, and other downstream distributions referenced in the advisories
  • Restrict CAP_NET_RAW to only the workloads that genuinely require IPv6 raw sockets

Patch Information

The upstream fix is provided in Linux kernel commit cb3e9864cdbe35ff6378966660edbcbac955fe17. Distribution-specific updates are available via the Debian LTS Advisory (March 2023), the Debian LTS Advisory (May 2023), and the NetApp Security Advisory NTAP-20230302-0005. Administrators should install the kernel package version specified by their distribution and reboot.

Workarounds

  • Where patching is delayed, drop CAP_NET_RAW from untrusted users and container workloads to limit who can open IPv6 raw sockets
  • Disable IPv6 on hosts that do not require it via sysctl net.ipv6.conf.all.disable_ipv6=1 if operationally acceptable
  • Use seccomp or LSM policies (AppArmor, SELinux) to restrict raw socket creation by non-essential processes
bash
# Configuration example: restrict raw socket capability and verify kernel version
sudo setcap -r /path/to/untrusted/binary
sudo sysctl -w net.ipv6.conf.all.disable_ipv6=1
uname -r   # confirm a patched kernel is running after update and reboot

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Technical References
  • Debian LTS Advisory March 2023

  • Debian LTS Advisory May 2023

  • NetApp Security Advisory NTAP-20230302-0005
  • Vendor Resources
  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-46321: Linux Kernel TUN Driver DoS Vulnerability

  • CVE-2026-46314: Linux Kernel V3D Driver DoS Vulnerability

  • CVE-2026-46306: Linux Kernel DoS Vulnerability

  • CVE-2026-46290: Linux Kernel x86/EFI DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
Get a DemoContact Us
  • Product Tours
  • Why SentinelOne
  • Pricing & Packages
  • FAQ
  • SentinelOne Status

Key Products & Solutions

  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Prompt Security
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Explore Solutions

Services

  • Wayfinder TDR
  • Managed Detection and Response
  • Threat Hunting
  • Incident Readiness
& Response
  • Technical Account Management
  • Guided Onboarding 
& Deployment
  • Support Services

Company

  • About Us
  • Our Customers
  • Careers
  • Partners
  • S1 Foundation
  • S1 Ventures
  • Legal Information
  • Security & Compliance
  • Investor Relations

Quick Links

  • Customer Portal
  • Partner Portal
  • Become a Partner
  • Resource Center
  • SentinelLABS Threat Research
  • Blog
  • Press Center
  • Cybersecurity 101
  • Events
  • Ransomware Anthology
©2026 SentinelOne, All Rights Reserved
Privacy NoticeTerms of Use
English
English