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

CVE-2025-39735: Linux Kernel Buffer Overflow Vulnerability

CVE-2025-39735 is a buffer overflow vulnerability in the Linux Kernel's JFS filesystem that causes slab-out-of-bounds reads during extended attribute handling. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-39735 Overview

CVE-2025-39735 is an out-of-bounds read vulnerability in the Linux kernel's JFS (Journaled File System) subsystem, specifically within the ea_get() function responsible for handling extended attributes (xattr). The vulnerability arises from improper integer handling when processing extended attribute list sizes, leading to integer overflow conditions that can cause memory corruption and potential information disclosure.

Critical Impact

Local attackers with low privileges can exploit this vulnerability to read sensitive kernel memory or cause a denial of service condition through slab-out-of-bounds memory access.

Affected Products

  • Linux Kernel (multiple versions with JFS support)
  • Debian Linux (LTS releases)
  • Systems using JFS filesystem with extended attributes enabled

Discovery Timeline

  • April 18, 2025 - CVE-2025-39735 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2025-39735

Vulnerability Analysis

The vulnerability exists in the ea_get() function within the JFS filesystem implementation. When processing extended attributes, the function performs a size validation check at the size_check label. During this validation, EALIST_SIZE(ea_buf->xattr) can return values exceeding INT_MAX (2,147,483,647). The code attempts to clamp the ea_size value using clamp_t(int, ea_size, 0, EALIST_SIZE(ea_buf->xattr)), but because the upper bound exceeds the signed integer maximum, an integer overflow occurs.

When the overflow causes the size variable to become negative (e.g., -184549328), this value is then passed to print_hex_dump() as a size_t parameter, which interprets the negative value as a very large unsigned number (18446744073525002176). This corrupted length value causes the subsequent for loop in print_hex_dump() to iterate far beyond the actual buffer boundaries, resulting in out-of-bounds memory reads in hex_dump_to_buffer().

Root Cause

The root cause is insufficient validation of the EALIST_SIZE(ea_buf->xattr) value before it is used in integer operations. The clamp_t() macro performs type coercion that truncates values larger than INT_MAX, causing signed integer overflow when the extended attribute list size exceeds 2^31-1 bytes. This overflow propagates through the error handling path, ultimately corrupting the length parameter used in memory dump operations.

Attack Vector

An attacker with local access and low privileges can exploit this vulnerability by creating or manipulating a JFS filesystem with crafted extended attributes containing specially constructed size values. The attack requires local system access and the ability to mount or access JFS filesystems. When the kernel attempts to process these malformed extended attributes, the integer overflow triggers during error handling, leading to out-of-bounds memory reads.

The exploitation flow involves:

  1. Crafting a JFS filesystem image with extended attributes where EALIST_SIZE returns a value exceeding INT_MAX
  2. Mounting or accessing the malicious filesystem
  3. Triggering the ea_get() function to process the corrupted extended attributes
  4. The size validation failure triggers the error path with print_hex_dump()
  5. The overflow causes reading beyond allocated slab memory boundaries

Detection Methods for CVE-2025-39735

Indicators of Compromise

  • Kernel log messages containing "ea_get: invalid extended attribute" followed by unusually large hex dumps
  • KASAN (Kernel Address Sanitizer) reports indicating slab-out-of-bounds reads in hex_dump_to_buffer()
  • System instability or crashes when accessing JFS filesystems with extended attributes

Detection Strategies

  • Enable KASAN in kernel builds to detect out-of-bounds memory accesses in development and testing environments
  • Monitor kernel logs (dmesg) for JFS-related error messages, particularly those involving extended attribute processing
  • Implement file integrity monitoring on systems using JFS to detect filesystem corruption or manipulation

Monitoring Recommendations

  • Deploy kernel runtime integrity monitoring solutions such as SentinelOne Singularity to detect anomalous kernel behavior
  • Configure audit logging for JFS mount operations and extended attribute access on critical systems
  • Use kernel trace points to monitor ea_get() function calls and detect unusual parameter values

How to Mitigate CVE-2025-39735

Immediate Actions Required

  • Update the Linux kernel to a patched version as soon as available for your distribution
  • Consider migrating critical data from JFS to alternative filesystems (ext4, XFS) if patching is not immediately possible
  • Restrict access to JFS filesystem mounting on multi-user systems
  • Apply available vendor patches from Debian and other Linux distributions

Patch Information

Multiple patches have been released across various kernel stable branches. The fix validates EALIST_SIZE(ea_buf->xattr) before it is used in the clamp_t() operation, preventing the integer overflow condition. Key patch commits include:

  • Kernel Commit 0beddc2
  • Kernel Commit 16d3d36
  • Kernel Commit 3d6fd5b
  • Kernel Commit 46e2c03
  • Kernel Commit 50afcee

Debian has released security updates via Debian LTS Announcement and additional Debian LTS update.

Workarounds

  • Disable JFS filesystem support by blacklisting the jfs kernel module (echo "blacklist jfs" >> /etc/modprobe.d/blacklist.conf)
  • Restrict mount capabilities using Linux Security Modules (SELinux, AppArmor) to prevent untrusted users from mounting JFS filesystems
  • If JFS must be used, disable extended attribute support by mounting with the noattr2 option where supported
bash
# Blacklist JFS kernel module to prevent loading
echo "blacklist jfs" >> /etc/modprobe.d/jfs-blacklist.conf
modprobe -r jfs

# Alternatively, restrict JFS mounting via fstab options
# Add nouser,noexec options to JFS mount entries

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • Debian LTS Announcement #30

  • Debian LTS Announcement #45
  • Vendor Resources
  • Kernel Commit Update 0beddc2

  • Kernel Commit Update 16d3d36

  • Kernel Commit Update 3d6fd5b

  • Kernel Commit Update 46e2c03

  • Kernel Commit Update 50afcee

  • Kernel Commit Update 5263822

  • Kernel Commit Update 78c9cbd

  • Kernel Commit Update a8c3180

  • Kernel Commit Update fdf480d
  • Related CVEs
  • CVE-2026-23407: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-23406: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-23397: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-23323: Linux Kernel Buffer Overflow Vulnerability
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