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

CVE-2025-71239: Linux Kernel Auth Bypass Vulnerability

CVE-2025-71239 is an authentication bypass flaw in the Linux kernel affecting the fchmodat2() system call. This vulnerability allows audit rule evasion. This article covers technical details, impact, and mitigation.

Published: March 20, 2026

CVE-2025-71239 Overview

A vulnerability has been resolved in the Linux kernel where the fchmodat2() system call was not included in the audit change attributes class. This syscall, introduced in Linux kernel version 6.6, allows file attribute changes that bypass audit rules, enabling potential security monitoring evasion.

When fchmodat2() is used to modify file attributes in the same manner as chmod() or fchmodat(), the operation will not trigger audit rules that are configured to monitor file attribute changes. This creates a blind spot in security monitoring and compliance logging for systems relying on Linux audit infrastructure.

Critical Impact

Attackers can use fchmodat2() to change file permissions without triggering audit rules, effectively bypassing security monitoring and compliance controls on Linux kernel 6.6 and later systems.

Affected Products

  • Linux kernel version 6.6 and later (where fchmodat2() is available)
  • Systems using Linux audit infrastructure for security monitoring
  • Systems with audit rules targeting file attribute changes (e.g., -p a or -p wa permissions)

Discovery Timeline

  • 2026-03-17 - CVE CVE-2025-71239 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2025-71239

Vulnerability Analysis

The fchmodat2() syscall was introduced in Linux kernel 6.6 as an extended version of fchmodat(), providing additional flags for file permission modification operations. However, when the kernel's audit subsystem was updated, this new syscall was not added to the change attributes class, which is responsible for triggering audit events when file attributes are modified.

The audit subsystem in Linux maintains syscall classifications that determine which operations generate audit records. The change attributes class includes syscalls like chmod(), fchmod(), and fchmodat() that modify file permissions. The omission of fchmodat2() from this class means that an attacker or malicious process could use this syscall to modify file permissions without generating the expected audit trail.

This is particularly concerning for security-conscious environments that rely on audit rules to detect unauthorized permission changes on sensitive files and directories.

Root Cause

The root cause of this vulnerability is the incomplete integration of the fchmodat2() syscall into the kernel audit framework. When fchmodat2() was added to the kernel in version 6.6, it was not registered with the audit subsystem's change attributes class alongside similar syscalls like chmod(), fchmodat(), and fchmod(). This oversight resulted in the syscall being able to modify file attributes without generating corresponding audit events.

Attack Vector

An attacker with local access to a Linux system running kernel 6.6 or later can exploit this vulnerability to modify file permissions while evading detection by audit monitoring systems.

The attack scenario involves using fchmodat2() instead of traditional permission-changing syscalls. When audit rules are configured to monitor file attribute changes, the fchmodat2() call will not trigger the expected audit events, allowing the permission change to go unnoticed by security monitoring tools.

For example, an audit rule such as -w /tmp/test -p rwa -k test_rwa that monitors read, write, and attribute changes on /tmp/test would not detect permission modifications made via fchmodat2().

The patch resolves this issue by adding fchmodat2() to the change attributes audit class, ensuring that all permission-modifying syscalls are properly monitored. Technical details about this syscall audit gap are documented in the Bencteux Blog Post on Syscalls.

Detection Methods for CVE-2025-71239

Indicators of Compromise

  • Unexpected file permission changes on sensitive files without corresponding audit logs
  • Discrepancies between actual file permissions and audit trail records
  • Processes using fchmodat2() syscall when fchmodat() would typically be used

Detection Strategies

  • Monitor for fchmodat2() syscall usage via alternative tracing mechanisms (eBPF, ftrace, or strace)
  • Compare expected permission states against actual file permissions to detect unauthorized changes
  • Implement file integrity monitoring tools that track permissions independently of audit subsystem
  • Review syscall usage patterns for processes that interact with sensitive files

Monitoring Recommendations

  • Deploy endpoint detection solutions that can monitor syscall activity beyond the traditional audit framework
  • Implement behavioral analysis to detect anomalous permission change patterns
  • Configure alerts for file permission modifications on critical system files and directories
  • Consider using SentinelOne Singularity platform for comprehensive kernel-level visibility and threat detection

How to Mitigate CVE-2025-71239

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes fchmodat2() in the audit change attributes class
  • Review existing audit rules and ensure comprehensive coverage of file monitoring requirements
  • Implement additional file integrity monitoring as a compensating control until patches are applied
  • Audit recent file permission changes on critical systems to identify potential exploitation

Patch Information

The Linux kernel team has released patches to address this vulnerability by adding fchmodat2() to the change attributes class of the audit subsystem. Multiple kernel commits have been made available:

  • Kernel Git Commit 3e762a0
  • Kernel Git Commit 4f493a6
  • Kernel Git Commit 4fed776
  • Kernel Git Commit 91e27bc
  • Kernel Git Commit c4334c0

Apply the appropriate patch for your kernel version from the stable kernel repositories.

Workarounds

  • Deploy endpoint detection and response (EDR) solutions that provide syscall-level monitoring independent of the audit subsystem
  • Use eBPF-based monitoring tools to capture fchmodat2() syscall activity
  • Implement file integrity monitoring (FIM) solutions that detect permission changes regardless of audit coverage
  • Consider restricting access to sensitive files using additional access control mechanisms (SELinux, AppArmor)
bash
# Example: Using auditctl to verify current rules and manually trace fchmodat2
# Check existing audit rules
auditctl -l

# Use strace to monitor fchmodat2 syscalls for a specific process
strace -f -e trace=fchmodat2 -p <PID>

# Update kernel to patched version (example for Debian-based systems)
apt update && apt upgrade linux-image-$(uname -r)

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Kernel Git Commit 4f493a6

  • Kernel Git Commit 4fed776

  • Kernel Git Commit 91e27bc

  • Kernel Git Commit c4334c0

  • Bencteux Blog Post on Syscalls
  • Related CVEs
  • CVE-2026-31392: Linux Kernel Kerberos Auth Bypass Flaw

  • CVE-2026-23318: Linux Kernel USB Audio Auth Bypass Issue

  • CVE-2026-23241: Linux Kernel Auth Bypass Vulnerability

  • CVE-2025-71127: Linux Kernel Auth Bypass 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