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-2024-23454

CVE-2024-23454: Apache Hadoop Information Disclosure Flaw

CVE-2024-23454 is an information disclosure vulnerability in Apache Hadoop where RunJar.run() fails to set proper permissions on temporary directories, exposing sensitive data to local users on unix-like systems.

Published: January 28, 2026

CVE-2024-23454 Overview

CVE-2024-23454 is an insecure permissions vulnerability in Apache Hadoop's RunJar.run() function that fails to set proper permissions for temporary directories by default. On Unix-like systems, the system temporary directory is shared between all local users. When sensitive data is written to files in this directory without explicitly setting correct POSIX permissions, all other local users on the system may be able to view the content, leading to potential information disclosure.

Critical Impact

Local users on shared systems running Apache Hadoop could access sensitive data written to temporary directories by other users, potentially exposing credentials, configuration data, or application-specific sensitive information.

Affected Products

  • Apache Hadoop (all affected versions)

Discovery Timeline

  • 2024-09-25 - CVE-2024-23454 published to NVD
  • 2025-11-13 - Last updated in NVD database

Technical Details for CVE-2024-23454

Vulnerability Analysis

This vulnerability stems from CWE-378 (Creation of Temporary File With Insecure Permissions). The RunJar.run() method in Apache Hadoop creates temporary files without explicitly setting restrictive POSIX permissions. In multi-user Unix-like environments, the system's temporary directory (typically /tmp) is world-readable by default. When Hadoop writes files to this location, any local user can potentially read the contents of these temporary files if they contain sensitive information such as configuration data, intermediate processing results, or cached credentials.

The attack requires local access to the affected system, making it most relevant in shared computing environments, multi-tenant clusters, or development systems with multiple user accounts.

Root Cause

The root cause is the failure to explicitly set secure file permissions when creating temporary files in the RunJar.run() method. By default, files created in the system temporary directory inherit permissive umask settings, allowing read access to all local users. The code does not call appropriate system APIs to restrict file permissions to owner-only access (e.g., mode 0600 or 0700).

Attack Vector

The vulnerability requires local access to exploit. An attacker with a valid user account on the same system can:

  1. Monitor the system temporary directory for files created by Hadoop processes
  2. Read the contents of temporary files created by RunJar.run() before they are cleaned up
  3. Extract any sensitive data present in these files, such as configuration parameters, intermediate data, or credentials

The attack does not require any user interaction and can be performed with standard user privileges. No authentication bypass is needed since the attacker already has legitimate local access.

Detection Methods for CVE-2024-23454

Indicators of Compromise

  • Unusual read access patterns to Hadoop temporary files in /tmp or the configured temporary directory
  • Unauthorized users accessing files created by Hadoop service accounts
  • File access audit logs showing cross-user temporary file reads
  • Processes monitoring or repeatedly accessing the system temporary directory

Detection Strategies

  • Enable file system auditing on the temporary directory to track read operations
  • Monitor for users other than the Hadoop service account accessing Hadoop-related temporary files
  • Implement process monitoring to detect scripts or tools scanning the /tmp directory
  • Review system logs for anomalous file access patterns involving Hadoop processes

Monitoring Recommendations

  • Configure auditd rules to track access to Hadoop temporary files
  • Implement SentinelOne's file integrity monitoring to detect unauthorized access
  • Set up alerts for any non-Hadoop users reading files in Hadoop's temporary directory
  • Periodically review file permissions in the system temporary directory

How to Mitigate CVE-2024-23454

Immediate Actions Required

  • Review all Apache Hadoop installations for exposure to this vulnerability
  • Restrict local user access on systems running Apache Hadoop where possible
  • Configure a dedicated temporary directory with restrictive permissions for Hadoop processes
  • Apply the vendor patch as soon as it becomes available for your Hadoop version

Patch Information

Apache has addressed this issue and tracks it under HADOOP-19031. Users should consult the Apache Mailing List Thread for the latest patch information and upgrade guidance. NetApp customers should also review the NetApp Security Advisory NTAP-20241101-0002 for product-specific guidance.

Workarounds

  • Configure Hadoop to use a dedicated temporary directory with restricted permissions (mode 0700)
  • Set a restrictive umask (e.g., 0077) for Hadoop processes before execution
  • Limit local user accounts on systems running Apache Hadoop to only necessary personnel
  • Use operating system-level access controls to restrict temporary directory visibility
bash
# Configuration example - Set restrictive umask for Hadoop processes
# Add to hadoop-env.sh or execution scripts
umask 0077

# Create a dedicated temporary directory with restricted permissions
mkdir -p /var/hadoop/tmp
chmod 700 /var/hadoop/tmp
chown hadoop:hadoop /var/hadoop/tmp

# Configure Hadoop to use the dedicated temporary directory
# Set in core-site.xml or via environment variable
export HADOOP_TMP_DIR=/var/hadoop/tmp

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechApache Hadoop

  • SeverityMEDIUM

  • CVSS Score6.2

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-378
  • Technical References
  • Openwall OSS-Security Digest

  • NetApp Security Advisory NTAP-20241101-0002
  • Vendor Resources
  • Apache JIRA Issue HADOOP-19031

  • Apache Mailing List Thread
  • Related CVEs
  • CVE-2025-27821: Apache Hadoop Buffer Overflow Vulnerability

  • CVE-2023-26031: Apache Hadoop Privilege Escalation Flaw

  • CVE-2022-25168: Apache Hadoop RCE Vulnerability

  • CVE-2021-37404: Apache Hadoop Buffer Overflow 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