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-2023-3390

CVE-2023-3390: Linux Kernel Use-After-Free Vulnerability

CVE-2023-3390 is a use-after-free flaw in Linux Kernel's netfilter subsystem that enables local privilege escalation. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 11, 2026

CVE-2023-3390 Overview

A use-after-free vulnerability was discovered in the Linux kernel's netfilter subsystem within net/netfilter/nf_tables_api.c. The flaw stems from mishandled error handling with NFT_MSG_NEWRULE, which allows a dangling pointer to be used within the same transaction, resulting in a use-after-free condition. This vulnerability enables a local attacker with user access to escalate privileges on the affected system.

Critical Impact

Local attackers with user-level access can exploit this use-after-free vulnerability to achieve full privilege escalation, potentially gaining root access to the Linux system.

Affected Products

  • Linux Linux Kernel
  • NetApp H300S
  • NetApp H410C
  • NetApp H410S
  • NetApp H500S
  • NetApp H700S

Discovery Timeline

  • June 28, 2023 - CVE-2023-3390 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2023-3390

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption issue where the application references memory after it has been freed. In the context of the Linux kernel's netfilter subsystem, the vulnerability occurs within the nf_tables API, which is responsible for managing netfilter table rules.

The core issue lies in how the NFT_MSG_NEWRULE message handler processes error conditions. When an error occurs during rule creation, the error handling code fails to properly manage memory references, leaving a dangling pointer that can be reused within the same transaction. This creates a window where freed memory can be accessed and potentially manipulated by an attacker.

Since netfilter operates within kernel space and handles network packet filtering, successful exploitation grants the attacker elevated privileges at the kernel level. The local attack vector requires user-level access, but the impact extends to full confidentiality, integrity, and availability compromise of the system.

Root Cause

The root cause is improper error handling in the nf_tables_api.c component of the netfilter subsystem. When NFT_MSG_NEWRULE encounters an error condition, the code does not correctly invalidate or handle the pointer to the rule object being created. This leaves a dangling pointer that references deallocated memory, which can subsequently be dereferenced within the same transaction context, leading to the use-after-free condition.

Attack Vector

The attack requires local access to the system with at least user-level privileges. An attacker can trigger the vulnerability by:

  1. Interacting with the netfilter subsystem through netlink sockets
  2. Crafting specific NFT_MSG_NEWRULE messages that trigger the error handling path
  3. Exploiting the dangling pointer during the same transaction to corrupt kernel memory
  4. Leveraging the memory corruption to escalate privileges to root

The vulnerability is exploited through crafted netlink messages to the netfilter subsystem. When the NFT_MSG_NEWRULE handler encounters specific error conditions, it leaves a dangling pointer that can be reused within the same transaction. An attacker can manipulate this behavior to corrupt kernel memory structures and achieve privilege escalation. For detailed technical information, refer to the Kernel Git Commit Details.

Detection Methods for CVE-2023-3390

Indicators of Compromise

  • Unexpected privilege escalation events from low-privileged users to root
  • Anomalous netlink socket activity targeting the netfilter subsystem (NFNL_SUBSYS_NFTABLES)
  • Kernel crash logs or oops messages referencing nf_tables_api.c or netfilter components
  • Suspicious processes gaining capabilities they should not possess

Detection Strategies

  • Monitor system calls related to netlink socket creation and netfilter rule manipulation using auditd or eBPF-based tools
  • Implement kernel integrity monitoring to detect unauthorized privilege changes
  • Deploy endpoint detection and response (EDR) solutions capable of monitoring kernel-level activities
  • Analyze kernel logs for use-after-free related crashes or memory corruption indicators

Monitoring Recommendations

  • Enable comprehensive kernel auditing for netfilter-related operations
  • Configure alerting for privilege escalation events, particularly from unprivileged users to root
  • Monitor for unusual patterns in netfilter rule creation and deletion
  • Implement system integrity verification to detect unauthorized kernel modifications

How to Mitigate CVE-2023-3390

Immediate Actions Required

  • Apply the kernel patch identified by commit 1240eb93f0616b21c675416516ff3d74798fdc97 immediately
  • Update to a patched kernel version from your Linux distribution vendor
  • Review and restrict user access to netfilter/nftables functionality where possible
  • Monitor systems for signs of exploitation until patches can be applied

Patch Information

The vulnerability is addressed in kernel commit 1240eb93f0616b21c675416516ff3d74798fdc97. Organizations should upgrade past this commit or apply distribution-specific security patches. Multiple vendors have released advisories and patches:

  • Kernel Git Commit Details
  • Debian Security Advisory DSA-5448
  • Debian Security Advisory DSA-5461
  • NetApp Security Advisory
  • Kernel Live Patch Security Notice LSN-0097-1

Workarounds

  • Restrict access to netfilter/nftables functionality using namespace isolation or capability restrictions
  • Limit local user access to systems running vulnerable kernel versions
  • Consider deploying kernel live patching solutions if immediate reboots are not feasible
  • Implement network segmentation to limit the impact of potential privilege escalation
bash
# Check current kernel version
uname -r

# For Debian/Ubuntu systems, update to patched kernel
sudo apt update && sudo apt upgrade linux-image-$(uname -r)

# Restrict nftables capabilities for non-root users (temporary mitigation)
# Note: This may impact legitimate netfilter usage
sudo setcap -r /usr/sbin/nft 2>/dev/null || true

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Packet Storm Security Notice

  • Debian LTS Security Announcement

  • Debian LTS Security Announcement

  • NetApp Security Advisory

  • Debian Security Advisory DSA-5448

  • Debian Security Advisory DSA-5461
  • Vendor Resources
  • Kernel Git Commit Details

  • Kernel Dance Commit Reference
  • 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