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-2024-53141

CVE-2024-53141: Linux Kernel Range Check Vulnerability

CVE-2024-53141 is a range check flaw in the Linux Kernel's netfilter ipset component that occurs due to missing validation in bitmap_ip_uadt. This article covers the technical details, affected systems, and mitigation.

Published: January 28, 2026

CVE-2024-53141 Overview

A missing range check vulnerability exists in the Linux kernel's netfilter ipset subsystem, specifically in the bitmap_ip_uadt function. When tb[IPSET_ATTR_IP_TO] is not present but tb[IPSET_ATTR_CIDR] exists, the values of ip and ip_to are incorrectly swapped. The absence of proper range validation after this swap allows attackers with local access to potentially exploit this condition for privilege escalation or to compromise system confidentiality, integrity, and availability.

Critical Impact

Local attackers with low privileges can exploit the missing range check in the netfilter ipset bitmap_ip_uadt function, potentially leading to complete system compromise including unauthorized access to sensitive data, system modification, or denial of service.

Affected Products

  • Linux Kernel (multiple versions)

Discovery Timeline

  • December 6, 2024 - CVE-2024-53141 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2024-53141

Vulnerability Analysis

This vulnerability resides in the netfilter ipset implementation within the Linux kernel, specifically affecting the bitmap_ip_uadt function responsible for handling IP address ranges in bitmap-type IP sets. The core issue stems from improper handling of CIDR notation inputs when the explicit IP_TO attribute is absent.

When processing ipset commands that specify a CIDR block without an explicit end IP address, the kernel performs a swap operation on the ip and ip_to variables. However, the range validation check that should occur after this swap was missing from the code path. This oversight creates a window where invalid or out-of-bounds IP ranges can be processed by the kernel, potentially corrupting memory or causing other unintended behaviors.

The local attack vector requires an attacker to have user-level access to the system with the ability to interact with netfilter ipset functionality. While the attack complexity is low, successful exploitation can lead to high impact across confidentiality, integrity, and availability due to the kernel-level nature of the vulnerability.

Root Cause

The root cause is a missing input validation check in the bitmap_ip_uadt function. When handling CIDR notation through tb[IPSET_ATTR_CIDR] without an accompanying tb[IPSET_ATTR_IP_TO] attribute, the function performs a variable swap but fails to subsequently validate that the resulting IP range is within acceptable boundaries. This missing range check allows potentially malicious or malformed inputs to propagate deeper into the kernel's netfilter processing logic.

Attack Vector

The attack vector is local, requiring an attacker to have authenticated access to a vulnerable Linux system. Exploitation involves:

  1. Crafting a specially formed ipset command that uses CIDR notation without specifying an explicit IP_TO value
  2. The malformed input triggers the swap behavior in bitmap_ip_uadt
  3. Due to the missing range check, invalid values propagate through the function
  4. This can result in memory corruption, privilege escalation, or denial of service depending on the specific values used

The vulnerability requires local access and low privileges, with no user interaction needed for exploitation. The scope is unchanged, meaning the impact remains within the vulnerable kernel component but affects all security properties (confidentiality, integrity, availability) at a high level.

Detection Methods for CVE-2024-53141

Indicators of Compromise

  • Unexpected kernel crashes or panics related to netfilter or ipset subsystems
  • Anomalous ipset operations in system logs, particularly those involving CIDR notation
  • Unusual privilege escalation events following ipset-related activities
  • Memory corruption signatures in kernel dmesg output referencing netfilter components

Detection Strategies

  • Monitor system logs for ipset-related errors or warnings using dmesg | grep -i ipset
  • Implement kernel-level auditing for netfilter ipset operations using auditd rules
  • Deploy endpoint detection solutions capable of monitoring kernel-level system calls related to netfilter
  • Use SentinelOne's behavioral AI to detect anomalous patterns in netfilter subsystem interactions

Monitoring Recommendations

  • Enable kernel audit logging for netfilter and ipset operations
  • Configure alerting for unusual ipset commands, particularly those with complex CIDR specifications
  • Monitor for process privilege changes following network configuration activities
  • Implement regular kernel integrity checking to detect potential exploitation artifacts

How to Mitigate CVE-2024-53141

Immediate Actions Required

  • Update the Linux kernel to the latest patched version for your distribution
  • Review and restrict access to netfilter/ipset functionality to only necessary administrators
  • Monitor systems for signs of exploitation while patch deployment is in progress
  • Consider implementing additional access controls around ipset management capabilities

Patch Information

Multiple kernel patches have been released to address this vulnerability. The fix adds the missing range checks and removes unnecessary redundant checks in the bitmap_ip_uadt function. Patches are available through the official kernel git repository:

  • Kernel Git Commit 15794835
  • Kernel Git Commit 35f56c55
  • Kernel Git Commit 3c20b594
  • Kernel Git Commit 591efa49
  • Kernel Git Commit 856023ef

Debian users should refer to the Debian LTS Security Announcements for distribution-specific patches.

Workarounds

  • Restrict access to ipset commands to only trusted administrators using filesystem permissions or sudo rules
  • Implement network namespace isolation to limit exposure of netfilter functionality
  • Use SELinux or AppArmor policies to restrict processes that can interact with netfilter/ipset
  • Monitor and audit all ipset operations while awaiting kernel updates
bash
# Restrict ipset binary access to root only
sudo chmod 750 /usr/sbin/ipset
sudo chown root:root /usr/sbin/ipset

# Add audit rule for ipset operations
sudo auditctl -w /usr/sbin/ipset -p x -k ipset_exec

# Verify current kernel version
uname -r

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.04%

  • 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
  • NVD-CWE-noinfo
  • Technical References
  • Kernel Git Commit 2e151b8c

  • Kernel Git Commit 78b0f202

  • Kernel Git Commit 7ffef5e5

  • Kernel Git Commit e6747143

  • Debian LTS Announcement March 1

  • Debian LTS Announcement March 2
  • Vendor Resources
  • Kernel Git Commit 15794835

  • Kernel Git Commit 35f56c55

  • Kernel Git Commit 3c20b594

  • Kernel Git Commit 591efa49

  • Kernel Git Commit 856023ef
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

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

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

  • CVE-2026-31435: Linux Kernel Read Abandonment 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