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

CVE-2025-71110: Linux Kernel Use-After-Free Vulnerability

CVE-2025-71110 is a use-after-free vulnerability in the Linux kernel SLUB allocator that causes KASAN tag mismatches on ARM64 with MTE. This article covers technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2025-71110 Overview

CVE-2025-71110 is a use-after-free vulnerability in the Linux kernel's SLUB memory allocator. The flaw occurs in the defer_free() function when CONFIG_SLUB_TINY is enabled on ARM64 systems utilizing Memory Tagging Extension (MTE). When freeing memory, a race condition between KASAN memory poisoning and deferred free list operations causes a memory tag mismatch, leading to improper memory access.

Critical Impact

This vulnerability can trigger KASAN use-after-free reports and potentially impact system stability on ARM64 systems with MTE enabled, affecting memory allocator integrity.

Affected Products

  • Linux kernel with CONFIG_SLUB_TINY enabled
  • ARM64 systems with Memory Tagging Extension (MTE)
  • Systems using KASAN (Kernel Address Sanitizer) for memory debugging

Discovery Timeline

  • 2026-01-14 - CVE-2025-71110 published to NVD
  • 2026-01-14 - Last updated in NVD database

Technical Details for CVE-2025-71110

Vulnerability Analysis

The vulnerability resides in the Linux kernel's SLUB (Simplified List-Based Allocator Unified) memory allocator, specifically in the defer_free() function located at mm/slub.c:6537. When the kernel is compiled with CONFIG_SLUB_TINY enabled, the kfree_nolock() function calls kasan_slab_free() before defer_free().

On ARM64 systems with MTE enabled, kasan_slab_free() poisons the freed memory by changing the memory tag from its original value (e.g., 0xf3) to a poison tag (0xfe). However, when defer_free() subsequently attempts to write to the freed object to build the deferred free list via llist_add(), the pointer still carries the old memory tag. This creates a tag mismatch between the pointer tag and the actual memory tag, triggering a KASAN use-after-free detection.

The bug manifests in kernel worker threads attempting memory deallocation operations, as evidenced by the reported stack trace showing the write occurring at address f3f000000854f020 with pointer tag [f3] but memory tag [fe].

Root Cause

The root cause is a missing kasan_reset_tag() call in the defer_free() function. The function performs legitimate allocator bookkeeping operations on freed memory, but fails to reset the KASAN tag before accessing the memory. This creates a false positive use-after-free detection because the allocator legitimately needs to manipulate freed memory for internal linked list operations.

Attack Vector

The vulnerability is triggered through normal kernel memory allocation and deallocation operations on affected configurations. While the primary impact appears to be system stability and false KASAN reports rather than a directly exploitable security flaw, the underlying memory management issue could potentially lead to:

  • Kernel panic or system instability when KASAN is enabled
  • Interference with memory debugging and security monitoring
  • Potential memory corruption in edge cases where the tag mismatch affects actual memory operations

The vulnerability requires specific kernel configuration (CONFIG_SLUB_TINY) and hardware features (ARM64 with MTE), limiting the attack surface to embedded or specialized Linux deployments using these features.

Detection Methods for CVE-2025-71110

Indicators of Compromise

  • Monitor kernel logs for KASAN reports containing slab-use-after-free in defer_free messages
  • Look for stack traces referencing mm/slub.c:6537 or the defer_free() function
  • Check for kernel worker thread crashes or panics related to memory operations on ARM64 MTE systems

Detection Strategies

  • Enable kernel log monitoring for KASAN use-after-free bug reports specifically mentioning defer_free
  • Implement automated scanning for pointer tag and memory tag mismatches in kernel diagnostic output
  • Deploy kernel configuration auditing to identify systems running with CONFIG_SLUB_TINY on ARM64 MTE hardware

Monitoring Recommendations

  • Configure system logging to capture and alert on kernel KASAN reports
  • Implement centralized log aggregation for kernel memory allocator warnings across ARM64 infrastructure
  • Monitor for unusual kernel worker thread behavior or unexpected system restarts

How to Mitigate CVE-2025-71110

Immediate Actions Required

  • Apply the official kernel patches from the stable kernel tree immediately
  • Review kernel configuration for CONFIG_SLUB_TINY usage on ARM64 MTE systems
  • Consider temporarily disabling MTE or KASAN if patches cannot be applied immediately and stability issues occur
  • Update to patched kernel versions as they become available from your distribution

Patch Information

The Linux kernel developers have released patches to address this vulnerability. The fix involves calling kasan_reset_tag() before accessing freed memory in the defer_free() function, which is safe because this function is part of the allocator itself and is expected to manipulate freed memory for bookkeeping purposes.

Official patches are available via the kernel git repository:

  • Kernel Git Commit 53ca00a
  • Kernel Git Commit 65d4e5a

Workarounds

  • Disable CONFIG_SLUB_TINY in kernel configuration and rebuild the kernel if patching is not immediately feasible
  • Disable KASAN temporarily on affected systems if the false positive reports are causing operational issues
  • Consider using the standard SLUB allocator configuration instead of the TINY variant on ARM64 MTE systems until patched kernels are deployed

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit

  • Kernel Git Commit
  • 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