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

CVE-2024-42154: Linux Kernel Address Validation Vulnerability

CVE-2024-42154 is an address validation flaw in Linux Kernel's tcp_metrics component that fails to validate source address length. This article covers the technical details, affected versions, impact, and mitigation.

Published: January 28, 2026

CVE-2024-42154 Overview

CVE-2024-42154 is an input validation vulnerability in the Linux kernel's TCP metrics subsystem. The vulnerability exists because the kernel does not properly validate the length of the TCP_METRICS_ATTR_SADDR_IPV4 attribute, which should be at least 4 bytes long. The netlink policy lacks an entry for this attribute entirely, creating a potential security gap. While IPv6 source addresses receive manual validation, the IPv4 counterpart was overlooked, allowing a local attacker to potentially supply malformed data.

Critical Impact

Local attackers with low privileges can exploit missing input validation in the TCP metrics netlink interface to potentially leak or corrupt memory contents.

Affected Products

  • Linux Kernel versions prior to patched releases across multiple stable branches
  • Linux Kernel 6.10 release candidates (6.10-rc1 through 6.10-rc6)
  • Systems running vulnerable kernel versions including Debian and NetApp products

Discovery Timeline

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

Technical Details for CVE-2024-42154

Vulnerability Analysis

This vulnerability is classified as CWE-754 (Improper Check for Unusual or Exceptional Conditions). The flaw resides in the TCP metrics netlink handling code within the Linux kernel. When processing netlink messages related to TCP metrics, the kernel accepts TCP_METRICS_ATTR_SADDR_IPV4 attributes without verifying they contain the expected minimum of 4 bytes for a valid IPv4 address.

The netlink policy configuration, which should enforce attribute constraints, lacks any entry for the IPv4 source address attribute. This oversight means the kernel may process truncated or malformed IPv4 address data, potentially leading to out-of-bounds memory access. Interestingly, the IPv6 source address attribute receives proper manual validation, suggesting this was an oversight rather than an intentional design decision.

Root Cause

The root cause is missing input validation in the netlink attribute policy definition. The tcp_metrics netlink interface defines various attributes for managing TCP connection metrics, but the policy table does not include validation rules for TCP_METRICS_ATTR_SADDR_IPV4. Without explicit length requirements in the policy, the kernel accepts attributes of any length, including those smaller than the 4 bytes required for an IPv4 address.

Attack Vector

Exploitation requires local access to the system with the ability to send netlink messages to the TCP metrics interface. An attacker could craft malicious netlink messages containing undersized TCP_METRICS_ATTR_SADDR_IPV4 attributes. When the kernel processes these messages and attempts to read the expected 4 bytes, it may read beyond the provided buffer boundaries, potentially disclosing kernel memory contents or causing memory corruption.

The attack requires low privileges and no user interaction. The local attack vector limits the exposure compared to remotely exploitable vulnerabilities, but systems with untrusted local users or containerized environments with shared kernel namespaces may be at heightened risk.

Detection Methods for CVE-2024-42154

Indicators of Compromise

  • Unexpected kernel log messages related to TCP metrics or netlink processing errors
  • Anomalous netlink traffic patterns targeting the TCP metrics subsystem
  • System instability or crashes potentially linked to memory corruption in kernel space

Detection Strategies

  • Monitor for processes sending netlink messages to the TCP metrics interface, particularly from non-privileged or unusual sources
  • Implement kernel auditing to track netlink socket creation and message sending activities
  • Deploy endpoint detection solutions capable of monitoring kernel-level network subsystem interactions

Monitoring Recommendations

  • Enable kernel auditing (auditd) with rules targeting netlink socket operations
  • Review system logs for kernel warnings or errors in the tcp_metrics module
  • Consider using SentinelOne's kernel-level visibility to detect anomalous behavior patterns associated with netlink exploitation attempts

How to Mitigate CVE-2024-42154

Immediate Actions Required

  • Update the Linux kernel to a patched version as soon as possible
  • Review systems for signs of exploitation, particularly on multi-user systems or container hosts
  • Consider restricting access to netlink interfaces for unprivileged users where operationally feasible
  • Monitor vendor security advisories from Debian, NetApp, and other affected distributions

Patch Information

Multiple patches have been released across Linux kernel stable branches. The fix adds proper validation to ensure TCP_METRICS_ATTR_SADDR_IPV4 attributes are at least 4 bytes long before processing. Key patch commits include:

  • Patch commit 66be40e622e1
  • Patch commit cdffc358717e
  • Patch commit 31f03bb04146

Affected distributions have released updates: see the Debian LTS Announcement and NetApp Security Advisory for distribution-specific guidance.

Workarounds

  • Restrict netlink socket access using kernel configuration options or security modules (SELinux/AppArmor) if patching is not immediately possible
  • Limit local user access on affected systems until patches can be applied
  • Consider network namespace isolation for untrusted workloads to reduce the attack surface
bash
# Example: Verify current kernel version and check for patches
uname -r
# Review kernel changelog for tcp_metrics fixes
zgrep -i "tcp_metrics" /usr/share/doc/linux-image-$(uname -r)/changelog.Debian.gz 2>/dev/null || echo "Check vendor documentation for patch status"

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score4.4

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-754
  • Technical References
  • Openwall Security Mailing List

  • Openwall Security Mailing List

  • Openwall Security Mailing List

  • Debian LTS Announcement

  • NetApp Security Advisory
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23457: Linux Kernel Integer Truncation Vulnerability

  • CVE-2026-23442: Linux Kernel IPv6 SRv6 Null Pointer Flaw

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

  • CVE-2026-31391: Linux Kernel Atmel SHA204A OOM 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