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
    • 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-2024-42070

CVE-2024-42070: Linux Kernel Information Disclosure Flaw

CVE-2024-42070 is an information disclosure vulnerability in the Linux Kernel's netfilter nf_tables that could leak pointer to chain objects through registers. This article covers technical details, affected versions, and mitigations.

Updated: January 22, 2026

CVE-2024-42070 Overview

CVE-2024-42070 is a memory leak vulnerability in the Linux kernel's netfilter subsystem, specifically within the nf_tables component. The vulnerability exists due to incomplete validation of NFT_DATA_VALUE during store operations to data registers. When register store validation for NFT_DATA_VALUE is conditional, but the datatype is always either NFT_DATA_VALUE or NFT_DATA_VERDICT, a pointer to chain object can be leaked through the registers.

This vulnerability requires local access and low privileges to exploit, potentially allowing an attacker to cause a denial of service through memory resource exhaustion on affected Linux systems.

Critical Impact

Local attackers with low privileges can exploit this memory leak vulnerability to potentially cause denial of service conditions by exhausting kernel memory resources through leaked chain object pointers in the nf_tables subsystem.

Affected Products

  • Linux Kernel (multiple versions)
  • Systems running nf_tables/netfilter subsystem
  • Debian-based distributions (referenced in LTS announcements)

Discovery Timeline

  • July 29, 2024 - CVE-2024-42070 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2024-42070

Vulnerability Analysis

The vulnerability resides in the nf_tables module of the Linux kernel's netfilter framework. The root issue stems from how register store operations handle data type validation. The NFT_DATA_VALUE validation was implemented conditionally, despite the fact that the datatype must always be either NFT_DATA_VALUE or NFT_DATA_VERDICT.

This conditional check creates a gap in validation coverage where pointers to internal chain objects can be improperly stored in registers and subsequently leaked. The fix introduces a new helper function that infers the register type from the set datatype, eliminating the conditional check and ensuring complete validation coverage for all register store operations.

The impact is classified as a denial of service through memory exhaustion (CWE-401: Missing Release of Memory after Effective Lifetime), as the leaked chain object pointers can accumulate and consume kernel memory resources over time.

Root Cause

The root cause is incomplete input validation in the nf_tables register store mechanism. The validation logic for NFT_DATA_VALUE was conditional when it should have been unconditional. Since datatypes in nf_tables are binary (either NFT_DATA_VALUE or NFT_DATA_VERDICT), the conditional check was unnecessary and left a validation gap that could result in chain object pointer leakage.

The fix addresses this by implementing a helper function to properly infer register types from set datatypes, removing the problematic conditional validation and ensuring all register stores are fully validated.

Attack Vector

The attack vector is local, requiring an authenticated user with low privileges to interact with the netfilter/nf_tables subsystem. An attacker would need to:

  1. Gain local access to a vulnerable Linux system
  2. Interact with the nf_tables subsystem to trigger register store operations
  3. Exploit the incomplete validation to leak chain object pointers
  4. Repeatedly trigger the vulnerability to exhaust kernel memory resources

The vulnerability requires no user interaction and has no scope change, affecting only the availability of the system.

Detection Methods for CVE-2024-42070

Indicators of Compromise

  • Unexpected memory growth in kernel space related to netfilter subsystem
  • System instability or out-of-memory conditions without obvious cause
  • Unusual nf_tables activity patterns in system logs
  • Kernel messages indicating memory allocation failures in netfilter components

Detection Strategies

  • Monitor kernel memory usage patterns, particularly in the nf_tables/netfilter subsystem
  • Implement kernel auditing for nf_tables register operations
  • Use kernel memory leak detection tools (kmemleak) to identify leaked chain objects
  • Deploy SentinelOne Singularity Platform for real-time kernel-level threat detection

Monitoring Recommendations

  • Enable kernel memory debugging options in development/testing environments
  • Configure alerts for abnormal memory consumption trends
  • Monitor syslog for netfilter-related warnings or errors
  • Implement baseline memory usage monitoring for comparison against anomalous behavior

How to Mitigate CVE-2024-42070

Immediate Actions Required

  • Update Linux kernel to a patched version as soon as possible
  • Review system exposure and limit local user access where feasible
  • Monitor systems for signs of memory exhaustion or unusual netfilter activity
  • Consider temporarily restricting access to nf_tables functionality for non-privileged users if patches cannot be immediately applied

Patch Information

The Linux kernel maintainers have released patches across multiple stable kernel branches. The fix introduces a helper function to properly infer register types from set datatypes, removing the conditional validation that caused the vulnerability.

Patches are available through the following kernel git commits:

  • Kernel Git Commit 23752737c6a6
  • Kernel Git Commit 40188a25a984
  • Kernel Git Commit 41a6375d48de
  • Kernel Git Commit 461302e07f49
  • Kernel Git Commit 5d43d789b579
  • Kernel Git Commit 7931d32955e0
  • Kernel Git Commit 952bf8df2225
  • Kernel Git Commit efb27ad05949

Debian users should refer to the Debian LTS Announcement for distribution-specific update instructions.

Workarounds

  • Restrict local user access to minimize potential attack surface
  • Limit access to nf_tables/netfilter configuration interfaces for non-administrative users
  • Implement memory usage monitoring and alerting to detect exploitation attempts
  • Consider using containerization or virtualization to isolate workloads until patches can be applied
bash
# Check current kernel version
uname -r

# Update kernel on Debian-based systems
sudo apt update && sudo apt upgrade linux-image-$(uname -r)

# Verify nf_tables module status
lsmod | grep nf_tables

# Monitor kernel memory usage
cat /proc/meminfo | grep -E "(MemFree|Slab|SReclaimable)"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • 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-401
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Fix

  • Kernel Git Commit Improvement

  • Kernel Git Commit Change

  • Kernel Git Commit Update

  • Kernel Git Commit Fix

  • Kernel Git Commit Update

  • Kernel Git Commit Fix
  • Related CVEs
  • CVE-2026-31428: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23430: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-23465: Linux Kernel Btrfs Logging Vulnerability

  • CVE-2026-23421: Linux Kernel Information Disclosure Flaw
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