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

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

CVE-2023-1095 is a use-after-free vulnerability in Linux Kernel affecting nf_tables_updtable, causing NULL pointer dereference. This article covers the technical details, affected versions, security impact, and mitigation.

Published: February 4, 2026

CVE-2023-1095 Overview

CVE-2023-1095 is a Null Pointer Dereference vulnerability in the Linux kernel's nf_tables subsystem. The vulnerability exists in the nf_tables_updtable function where, if nf_tables_table_enable returns an error, nft_trans_destroy is called to free the transaction object. The nft_trans_destroy() function calls list_del(), but the transaction was never placed on a list—the list head is all zeroes—resulting in a NULL pointer dereference that can cause a denial of service condition.

Critical Impact

Local attackers with low privileges can trigger a NULL pointer dereference in the Linux kernel's netfilter subsystem, causing system crashes and denial of service conditions affecting system availability.

Affected Products

  • Linux Kernel (all affected versions)
  • Red Hat Enterprise Linux 8.0
  • Red Hat Enterprise Linux 9.0

Discovery Timeline

  • 2023-02-28 - CVE-2023-1095 published to NVD
  • 2025-03-18 - Last updated in NVD database

Technical Details for CVE-2023-1095

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference). The flaw resides in the netfilter nf_tables API implementation within the Linux kernel. When a table update operation fails during the enable phase, the error handling path attempts to destroy the transaction object by calling nft_trans_destroy(). This function internally invokes list_del() to remove the transaction from a linked list. However, the transaction object was never added to any list during the failed operation, leaving its list head structure in an uninitialized (zeroed) state.

When list_del() operates on a zeroed list head, it attempts to dereference NULL pointers in the list traversal operations, triggering a kernel NULL pointer dereference. This results in a kernel panic or oops, effectively crashing the system.

Root Cause

The root cause is improper initialization of the transaction object's list head before potential error paths are reached. The transaction's list member was not initialized with INIT_LIST_HEAD() upon allocation, meaning if an error occurred before the transaction was added to any list, the subsequent cleanup code would operate on uninitialized memory containing zeroes.

Attack Vector

The vulnerability requires local access and low privileges to exploit. An attacker with the ability to interact with the netfilter/nf_tables subsystem (typically requiring CAP_NET_ADMIN capability or root privileges) can craft operations that trigger the error path in nf_tables_table_enable, leading to the NULL pointer dereference. While this doesn't allow code execution or data theft, it effectively enables a denial of service attack by crashing the kernel.

c
 	if (trans == NULL)
 		return NULL;
 
+	INIT_LIST_HEAD(&trans->list);
 	trans->msg_type = msg_type;
 	trans->ctx	= *ctx;
 

Source: GitHub Linux Commit Update

Detection Methods for CVE-2023-1095

Indicators of Compromise

  • Unexpected kernel panics or oops messages referencing nf_tables_updtable or nft_trans_destroy in stack traces
  • System crashes occurring during netfilter/nftables configuration operations
  • Kernel log entries showing NULL pointer dereference in net/netfilter/nf_tables_api.c
  • Repeated system reboots following nftables rule modifications

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for NULL pointer dereference errors in the nf_tables subsystem
  • Implement kernel crash dump analysis to identify stack traces involving nft_trans_destroy or list_del operations
  • Deploy SentinelOne agents to detect anomalous kernel behavior patterns indicating exploitation attempts
  • Configure audit rules to log all netfilter/nftables configuration changes and correlate with system stability events

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture diagnostic information during exploitation attempts
  • Monitor for unusual patterns of nftables configuration commands that may indicate probing for the vulnerability
  • Set up automated alerting for kernel oops or panic events on production systems
  • Review system uptime metrics for unexpected reboot patterns that may indicate DoS exploitation

How to Mitigate CVE-2023-1095

Immediate Actions Required

  • Apply the latest kernel security updates from your Linux distribution vendor
  • Restrict access to netfilter/nftables configuration to trusted administrators only
  • Consider limiting CAP_NET_ADMIN capabilities to essential processes and users
  • Implement monitoring for kernel crashes to detect potential exploitation attempts

Patch Information

The vulnerability has been addressed in the upstream Linux kernel through commit 580077855a40741cf511766129702d97ff02f4d9. The fix adds proper initialization of the transaction's list head using INIT_LIST_HEAD(&trans->list) immediately after allocation, ensuring the list structure is in a valid state even if error paths are taken before the transaction is added to a list.

For detailed patch information, refer to:

  • Red Hat Bug Report #2173973
  • GitHub Linux Commit Update

Workarounds

  • Limit access to nftables configuration interfaces to only essential administrative accounts
  • Use SELinux or AppArmor policies to restrict which processes can interact with netfilter subsystems
  • Consider disabling nf_tables module loading if not required: modprobe -r nf_tables (note: this may impact firewall functionality)
  • Implement kernel live patching solutions where available to apply fixes without system reboot
bash
# Check current kernel version for vulnerability status
uname -r

# Verify if nf_tables module is loaded
lsmod | grep nf_tables

# Review users with CAP_NET_ADMIN capability
getcap -r / 2>/dev/null | grep cap_net_admin

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • 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
  • Vendor Resources
  • Red Hat Bug Report #2173973

  • GitHub Linux Commit Update
  • 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