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-2025-21648

CVE-2025-21648: Linux Kernel Netfilter DOS Vulnerability

CVE-2025-21648 is a denial-of-service flaw in Linux Kernel's netfilter conntrack component that affects hashtable resizing operations. This article covers the technical details, affected versions, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-21648 Overview

A vulnerability has been identified in the Linux kernel's netfilter connection tracking (conntrack) subsystem where the maximum hashtable size is not properly clamped to INT_MAX. This oversight allows the hashtable resize operation to trigger a WARN_ON_ONCE condition in __kvmalloc_node_noprof() when the __GFP_NOWARN flag is unset during memory allocation for oversized hashtable requests. The vulnerability affects systems where hashtable resize operations are performed from the initial network namespace (init_netns).

Critical Impact

Local attackers with low privileges can trigger denial of service conditions by causing the kernel to hit warning conditions during conntrack hashtable resize operations, potentially disrupting network connection tracking functionality.

Affected Products

  • Linux Kernel version 4.7 and later
  • Linux Kernel versions 6.13-rc1 through 6.13-rc6
  • Various stable Linux Kernel branches prior to patched versions

Discovery Timeline

  • 2025-01-19 - CVE CVE-2025-21648 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2025-21648

Vulnerability Analysis

The netfilter conntrack module maintains a hashtable to track network connections passing through the Linux firewall subsystem. When resizing this hashtable, the kernel allocates memory using kvmalloc(). The vulnerability arises because the maximum size for the conntrack hashtable was not properly bounded to INT_MAX, allowing allocation requests that exceed safe memory boundaries.

When an oversized allocation request is made without the __GFP_NOWARN flag set, the kernel's memory management subsystem triggers a WARN_ON_ONCE condition in __kvmalloc_node_noprof(). This behavior was documented in kernel commit 0708a0afe291 ("mm: Consider __GFP_NOWARN flag for oversized kvmalloc() calls"). The warning condition can lead to system instability and potential denial of service.

Root Cause

The root cause of this vulnerability is the absence of proper bounds checking on the conntrack hashtable size parameter. The code did not enforce a maximum size limit of INT_MAX before attempting memory allocation operations. This allowed the hashtable resize logic to request memory allocations that exceed safe integer boundaries, triggering kernel warning conditions and potentially causing allocation failures.

Attack Vector

The attack requires local access to the system with low-level privileges. An attacker must be able to trigger hashtable resize operations from the initial network namespace (init_netns). This could be accomplished by manipulating network connection parameters or system configuration to force the conntrack subsystem to resize its hashtable to an excessively large value. The attack does not require user interaction and can result in high availability impact through denial of service.

The vulnerability mechanism involves requesting a hashtable resize that exceeds INT_MAX, which then triggers the WARN_ON_ONCE() macro during the memory allocation attempt. While the warning itself is a debugging mechanism, repeatedly triggering it can cause system log flooding and may indicate underlying memory allocation issues that affect system stability.

Detection Methods for CVE-2025-21648

Indicators of Compromise

  • Kernel log messages containing WARN_ON_ONCE from __kvmalloc_node_noprof() function
  • Unusual memory allocation warnings in dmesg output related to netfilter or conntrack operations
  • Unexpected increases in conntrack hashtable size parameters in /proc/sys/net/netfilter/

Detection Strategies

  • Monitor kernel logs for warning messages originating from memory allocation functions in the netfilter conntrack path
  • Implement alerting on WARN_ON_ONCE kernel messages that reference kvmalloc or conntrack components
  • Track changes to conntrack hashtable configuration parameters in the init_netns namespace

Monitoring Recommendations

  • Enable comprehensive kernel logging and forward to SIEM for analysis of netfilter-related warnings
  • Deploy file integrity monitoring on kernel configuration files related to netfilter conntrack settings
  • Monitor system stability metrics for signs of memory allocation stress or kernel warning rate increases

How to Mitigate CVE-2025-21648

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the INT_MAX clamping fix for conntrack hashtable sizing
  • Review and restrict access to network namespace operations, particularly for the init_netns
  • Monitor system logs for any exploitation attempts while awaiting patch deployment

Patch Information

The Linux kernel development team has released patches that properly clamp the maximum conntrack hashtable size to INT_MAX. Multiple commits have been backported to stable kernel branches:

  • Kernel Git Commit 5552b4f
  • Kernel Git Commit a965f7f
  • Kernel Git Commit b1b2353
  • Kernel Git Commit b541ba7
  • Kernel Git Commit d5807dd
  • Kernel Git Commit f559357

Debian users should refer to the Debian LTS Security Announcements for March 2025 for distribution-specific patch information.

Workarounds

  • Restrict local user access to systems running vulnerable kernel versions until patches can be applied
  • Limit network namespace creation and management permissions to trusted administrators only
  • Consider implementing additional access controls around netfilter configuration parameters
bash
# Check current conntrack hashtable size configuration
cat /proc/sys/net/netfilter/nf_conntrack_buckets

# Monitor for kernel warnings related to this vulnerability
dmesg | grep -i "WARN_ON_ONCE\|kvmalloc\|conntrack"

# Verify kernel version includes the fix
uname -r

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.06%

  • 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
  • NVD-CWE-Other
  • Technical References
  • Debian LTS Announcement March 2025

  • Debian LTS Announcement March 2025
  • Vendor Resources
  • Kernel Git Commit 5552b4f

  • Kernel Git Commit a965f7f

  • Kernel Git Commit b1b2353

  • Kernel Git Commit b541ba7

  • Kernel Git Commit d5807dd

  • Kernel Git Commit f559357
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

  • CVE-2026-31448: Linux Kernel ext4 DoS 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