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

CVE-2024-10917: Eclipse OpenJ9 JNI Function Vulnerability

CVE-2024-10917 is a JNI function flaw in Eclipse OpenJ9 where GetStringUTFLength returns incorrect or truncated values. This issue affects versions up to 0.47. This article covers technical details, impact, and fixes.

Published: January 28, 2026

CVE-2024-10917 Overview

CVE-2024-10917 is an Integer Overflow vulnerability in Eclipse OpenJ9, a high-performance Java Virtual Machine implementation. In Eclipse OpenJ9 versions up to 0.47, the JNI function GetStringUTFLength may return an incorrect value which has wrapped around due to an integer overflow condition. From version 0.48, the value is correct but may be truncated to include a smaller number of characters.

Critical Impact

Applications relying on accurate string length calculations through JNI may experience data integrity issues, potentially leading to incorrect data processing or security bypasses in string handling operations.

Affected Products

  • Eclipse OpenJ9 versions up to and including 0.47
  • Applications using JNI GetStringUTFLength function with large strings
  • Java applications deployed on vulnerable OpenJ9 runtime environments

Discovery Timeline

  • 2024-11-11 - CVE CVE-2024-10917 published to NVD
  • 2025-01-09 - Last updated in NVD database

Technical Details for CVE-2024-10917

Vulnerability Analysis

This vulnerability stems from a classic integer overflow condition (CWE-190) in the JNI (Java Native Interface) implementation within Eclipse OpenJ9. The GetStringUTFLength function is designed to return the length in bytes of the modified UTF-8 representation of a Java string. When processing exceptionally large strings, the internal calculation can exceed the maximum value representable by the return type, causing the value to wrap around to a smaller, incorrect number.

The impact manifests as data integrity issues where native code receiving incorrect length values may allocate insufficient buffers, truncate data unexpectedly, or make incorrect processing decisions based on the erroneous length. This vulnerability is exploitable over the network in scenarios where untrusted input can influence string sizes processed through affected JNI calls.

Root Cause

The root cause is an integer overflow in the calculation of UTF-8 byte length within the GetStringUTFLength JNI function. When the actual byte length of a string's UTF-8 representation exceeds the maximum value of the return type, the value wraps around. The fix in version 0.48 addresses the wrap-around issue but introduces a truncation behavior where the returned value may represent fewer characters than actually present in very large strings.

Attack Vector

The vulnerability can be exploited remotely without authentication by providing input that results in extremely large strings being processed through JNI calls. An attacker could craft malicious input designed to trigger the integer overflow, potentially causing:

  1. Buffer underallocation in native code relying on the returned length
  2. Data truncation or corruption during string processing
  3. Bypass of length-based security checks in applications

The attack does not require user interaction and can be executed against any application using the vulnerable GetStringUTFLength function with attacker-controllable string data.

Detection Methods for CVE-2024-10917

Indicators of Compromise

  • Unexpected string truncation or data corruption in Java applications using JNI
  • Memory corruption indicators in native code interfacing with Java via JNI
  • Application crashes or unexpected behavior when processing large string inputs
  • Log entries indicating string length mismatches or buffer-related errors

Detection Strategies

  • Inventory all systems running Eclipse OpenJ9 and verify version numbers against the vulnerable range (≤0.47)
  • Monitor application logs for anomalies in string processing or JNI-related errors
  • Implement runtime checks for applications heavily utilizing GetStringUTFLength JNI calls
  • Deploy SentinelOne Singularity platform for continuous vulnerability assessment and runtime protection

Monitoring Recommendations

  • Enable verbose JNI logging in development and staging environments to identify affected code paths
  • Monitor for unusual memory allocation patterns in applications using native Java interfaces
  • Track string-related exceptions and errors in application monitoring systems
  • Implement alerting for applications processing user-controlled strings through JNI functions

How to Mitigate CVE-2024-10917

Immediate Actions Required

  • Upgrade Eclipse OpenJ9 to version 0.48.0 or later immediately
  • Identify all applications using JNI string functions that may be affected
  • Review application code for reliance on GetStringUTFLength return values for security-critical operations
  • Implement input validation to limit maximum string sizes where feasible

Patch Information

Eclipse has addressed this vulnerability in OpenJ9 version 0.48.0. The fix ensures correct value calculation without wrap-around, though very large strings may still experience truncation behavior. Organizations should upgrade to the latest available version through the official OpenJ9 release page. Technical details of the fix can be reviewed in the GitHub Pull Request #20362.

Workarounds

  • Implement application-level input validation to reject strings that could trigger the overflow condition
  • Add defensive checks in native code that verify string lengths independently before buffer operations
  • Consider using alternative JNI string handling methods that may not be affected by this specific issue
  • Deploy network-level controls to filter or limit input sizes reaching vulnerable applications

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechEclipse Openj9

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.30%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-190
  • Technical References
  • GitHub Release Tag
  • Vendor Resources
  • GitHub Pull Request

  • Eclipse CVE Assignment Issue
  • Related CVEs
  • CVE-2023-5676: Eclipse OpenJ9 DOS Vulnerability

  • CVE-2025-4447: Eclipse OpenJ9 Buffer Overflow Vulnerability

  • CVE-2022-3676: Eclipse OpenJ9 Privilege Escalation Flaw

  • CVE-2023-2597: Eclipse OpenJ9 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