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
    • 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-71075

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

CVE-2025-71075 is a use-after-free flaw in the Linux kernel's aic94xx SCSI driver that can trigger memory corruption during device removal. This post covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-71075 Overview

CVE-2025-71075 is a use-after-free vulnerability in the Linux kernel's SCSI aic94xx driver. The vulnerability exists in the asd_pci_remove() function, which fails to properly synchronize with pending tasklets before freeing the asd_ha structure during device removal operations. This race condition can occur during hot-unplug events or module unload scenarios, potentially leading to memory corruption and system instability.

Critical Impact

This use-after-free vulnerability in the Linux kernel SCSI subsystem could allow local attackers to cause system crashes, denial of service, or potentially achieve privilege escalation through memory corruption during device removal operations.

Affected Products

  • Linux kernel versions with the aic94xx SCSI driver
  • Systems utilizing Adaptec AIC-94xx SAS/SATA controllers
  • Linux distributions running vulnerable kernel versions

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71075 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71075

Vulnerability Analysis

This vulnerability is classified as a use-after-free (CWE-416) memory corruption issue within the Linux kernel's SCSI subsystem. The flaw occurs in the device removal path of the aic94xx driver, specifically within the asd_pci_remove() function.

When a PCI device removal is initiated—either through physical hot-unplug of an Adaptec AIC-94xx controller or through manual module unloading—the driver begins its cleanup sequence. However, the original implementation failed to account for tasklets that may still be scheduled or actively executing at the time of removal.

Tasklets in the Linux kernel are a form of deferred work that execute in interrupt context. The aic94xx driver utilizes tasklets for handling certain SCSI operations asynchronously. The vulnerability arises because these tasklets may hold references to or actively access the asd_ha (Adaptec SCSI Host Adapter) structure while the removal function simultaneously frees this memory.

Root Cause

The root cause of this vulnerability is a missing synchronization barrier in the device removal code path. The asd_pci_remove() function proceeds to free the asd_ha structure without first calling tasklet_kill() to ensure all pending tasklets have completed execution.

This creates a Time-of-Check to Time-of-Use (TOCTOU) race condition where:

  1. A tasklet is scheduled and holds a pointer to asd_ha
  2. Device removal is triggered
  3. asd_pci_remove() frees asd_ha without waiting for the tasklet
  4. The tasklet executes and accesses the now-freed memory

Attack Vector

The vulnerability can be triggered through local access to the system. An attacker with physical access or appropriate privileges could trigger the race condition by repeatedly initiating device removal operations on systems with Adaptec AIC-94xx controllers. While timing-dependent, the race window could potentially be widened through system stress or by manipulating scheduling behavior.

The attack would typically involve module unloading operations via rmmod aic94xx while ensuring tasklets are actively queued, or through PCI hotplug operations if the system supports them.

Detection Methods for CVE-2025-71075

Indicators of Compromise

  • Unexpected kernel panics or oops messages referencing the aic94xx driver or asd_pci_remove function
  • KASAN (Kernel Address Sanitizer) reports indicating use-after-free in SCSI subsystem memory
  • System instability or crashes during SAS/SATA controller removal or driver module unloading
  • Unusual memory corruption patterns in kernel logs related to SCSI operations

Detection Strategies

  • Enable KASAN in kernel builds to detect use-after-free access patterns automatically
  • Monitor kernel logs for warnings or errors mentioning asd_ha, asd_pci_remove, or tasklet-related issues
  • Deploy kernel live patching solutions to track vulnerable module versions
  • Use SentinelOne Singularity platform to monitor for kernel anomalies and memory corruption events

Monitoring Recommendations

  • Configure alerting on kernel oops or panic events associated with SCSI drivers
  • Implement regular kernel version auditing to track patch status across fleet
  • Monitor for unusual module loading/unloading patterns that could indicate exploitation attempts

How to Mitigate CVE-2025-71075

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the tasklet_kill() fix
  • If immediate patching is not possible, avoid unloading the aic94xx module on production systems
  • Restrict physical access to systems with Adaptec AIC-94xx controllers to prevent hot-unplug attacks
  • Consider disabling PCI hotplug functionality if not required operationally

Patch Information

The fix adds tasklet_kill() calls before freeing the asd_ha structure, ensuring all scheduled tasklets complete before cleanup proceeds. Multiple kernel stable branches have received patches:

  • Kernel commit 751c19635c2b
  • Kernel commit a41dc180b6e1
  • Kernel commit b3e655e52b98
  • Kernel commit e354793a7ab9
  • Kernel commit f6ab594672d4

Apply the appropriate patch for your kernel version by updating to the latest stable release of your distribution's kernel package.

Workarounds

  • Blacklist the aic94xx module if Adaptec AIC-94xx hardware is not required: add blacklist aic94xx to /etc/modprobe.d/blacklist.conf
  • Prevent module unloading by setting the module as permanent: use rmmod --wait or avoid unloading entirely
  • Implement strict access controls to prevent unauthorized users from triggering module operations
  • Use kernel lockdown features where available to restrict module loading/unloading operations
bash
# Configuration example
# Blacklist the aic94xx module if not needed
echo "blacklist aic94xx" >> /etc/modprobe.d/blacklist-aic94xx.conf

# Prevent the module from being loaded at boot
echo "install aic94xx /bin/false" >> /etc/modprobe.d/disable-aic94xx.conf

# Update initramfs after changes
update-initramfs -u

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

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

  • Kernel Commit Update

  • Kernel Commit Update

  • Kernel Commit Update

  • Kernel Commit Update
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23458: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23435: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-23456: 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