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-2023-3397

CVE-2023-3397: Linux Kernel Race Condition Vulnerability

CVE-2023-3397 is a race condition flaw in Linux Kernel's JFS filesystem between lmLogClose and txEnd functions. Local attackers can exploit this to crash systems or leak kernel data. Explore technical details and patches.

Published: February 11, 2026

CVE-2023-3397 Overview

CVE-2023-3397 is a race condition vulnerability affecting the Linux Kernel's Journaled File System (JFS) implementation. The flaw occurs between the lmLogClose and txEnd functions when executed in different threads, creating a timing window that can be exploited by attackers. This vulnerability allows a local attacker with normal user privileges to crash the system or leak internal kernel information, potentially exposing sensitive data from kernel memory.

Critical Impact

Local attackers with standard user privileges can exploit this race condition to cause system denial of service or leak sensitive kernel memory information.

Affected Products

  • Linux Kernel (all versions with JFS support)
  • Systems using Journaled File System (JFS)
  • Linux distributions with JFS filesystem enabled

Discovery Timeline

  • 2023-11-01 - CVE-2023-3397 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-3397

Vulnerability Analysis

This vulnerability is classified under CWE-362 (Concurrent Execution using Shared Resource with Improper Synchronization) and CWE-416 (Use After Free). The race condition manifests in the JFS subsystem of the Linux Kernel when two critical functions—lmLogClose and txEnd—execute concurrently in separate threads without proper synchronization.

The JFS log manager handles journal operations through lmLogClose, which is responsible for closing and cleaning up log structures. Simultaneously, the transaction management subsystem uses txEnd to finalize and commit transactions. When these functions execute in parallel without adequate locking mechanisms, a timing window opens where one function may access memory or resources that the other has already freed or modified.

The attack requires local access and normal user privileges, making it exploitable by any authenticated user on the system. The complexity of successfully triggering the race condition is relatively high, as the attacker needs to time operations precisely to hit the vulnerable window.

Root Cause

The root cause lies in insufficient synchronization between the JFS log management and transaction handling subsystems. The lmLogClose function and txEnd function share access to common data structures, but the locking mechanism does not adequately protect against concurrent access. This allows one thread to modify or free resources while another thread still holds references to them, resulting in a use-after-free condition or information disclosure from stale memory references.

Attack Vector

The attack vector is local, requiring an attacker to have authenticated access to the target system. The attacker must have the ability to trigger JFS filesystem operations and create conditions where multiple threads interact with the log manager and transaction subsystem simultaneously.

The exploitation scenario involves:

  1. Mounting or accessing a JFS filesystem on the target system
  2. Initiating file operations that trigger transaction logging
  3. Racing between log close operations and transaction completion
  4. Exploiting the timing window to cause a crash or read kernel memory

Due to the race condition nature, successful exploitation may require multiple attempts to achieve the precise timing needed to trigger the vulnerability.

Detection Methods for CVE-2023-3397

Indicators of Compromise

  • Unexpected kernel panics or system crashes related to JFS operations
  • Kernel oops messages referencing lmLogClose or txEnd functions
  • Unusual JFS-related error messages in system logs (dmesg output)
  • Memory corruption indicators in kernel ring buffer logs

Detection Strategies

  • Monitor kernel logs for JFS-related crash reports and stack traces involving the affected functions
  • Deploy kernel runtime protection tools that can detect use-after-free conditions
  • Implement file integrity monitoring on systems using JFS filesystems
  • Use SentinelOne's kernel-level monitoring to detect anomalous JFS subsystem behavior

Monitoring Recommendations

  • Enable enhanced kernel logging for filesystem operations on affected systems
  • Monitor for repeated system crashes or hangs associated with JFS mount operations
  • Track process activity patterns that indicate race condition exploitation attempts
  • Implement alerting for kernel oops events with JFS-related stack traces

How to Mitigate CVE-2023-3397

Immediate Actions Required

  • Review systems for JFS filesystem usage and assess exposure risk
  • Consider migrating critical data from JFS to alternative filesystems (ext4, XFS) where feasible
  • Restrict local user access on systems where JFS filesystems are mounted
  • Apply kernel updates from your Linux distribution vendor when available

Patch Information

Patches addressing this vulnerability have been discussed in the Linux kernel mailing list. System administrators should consult their Linux distribution's security advisories for patched kernel versions. For additional technical details, refer to the Red Hat CVE-2023-3397 Advisory and Red Hat Bug Report #2217271. The upstream kernel discussion is available on the Spinics Kernel Mailing List.

Workarounds

  • Unmount JFS filesystems on systems where they are not strictly required
  • Restrict access to JFS-mounted filesystems to trusted users only
  • Consider using alternative journaling filesystems such as ext4 or XFS for new deployments
  • Implement mandatory access controls (SELinux, AppArmor) to limit filesystem operations
bash
# Check for JFS filesystem usage on the system
mount | grep jfs
cat /proc/filesystems | grep jfs

# If JFS is not needed, consider removing the module
lsmod | grep jfs
# Blacklist the JFS module if not required
echo "blacklist jfs" >> /etc/modprobe.d/blacklist-jfs.conf

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416

  • CWE-362
  • Technical References
  • Red Hat CVE-2023-3397 Advisory

  • Red Hat Bug Report #2217271
  • Vendor Resources
  • Spinics Kernel Mailing List Discussion
  • Related CVEs
  • CVE-2026-23440: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23434: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23436: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23463: Linux Kernel QBMAN Race Condition Flaw
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