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
    • 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-39913

CVE-2023-39913: Apache UIMA Java SDK RCE Vulnerability

CVE-2023-39913 is a remote code execution vulnerability in Apache UIMA Java SDK caused by unsafe deserialization of untrusted data. This article covers the technical details, affected versions, impact, and mitigation steps.

Published: February 4, 2026

CVE-2023-39913 Overview

CVE-2023-39913 is an insecure deserialization vulnerability affecting Apache UIMA Java SDK versions prior to 3.5.0. The vulnerability stems from improper input validation when handling serialized Java objects across multiple components of the framework. This flaw allows attackers with network access to potentially achieve remote code execution by submitting maliciously crafted serialized data to vulnerable UIMA services or applications.

Critical Impact

Unrestricted deserialization of Java-serialized CAS files may allow arbitrary remote code execution when using vulnerable UIMA services or applications that process untrusted serialized data.

Affected Products

  • Apache UIMA Java SDK versions prior to 3.5.0
  • Applications using CasIOUtils class to parse serialized CAS data
  • UIMA-based services accepting Java-serialized CAS objects over network connections

Discovery Timeline

  • November 8, 2023 - CVE-2023-39913 published to NVD
  • February 13, 2025 - Last updated in NVD database

Technical Details for CVE-2023-39913

Vulnerability Analysis

This vulnerability represents a classic Java deserialization attack surface where serialized Java objects are processed without proper validation. The Apache UIMA framework contains multiple code paths that deserialize untrusted data, creating opportunities for attackers to inject malicious serialized objects. When these objects are deserialized, they can trigger arbitrary code execution through gadget chains present in the application's classpath.

The vulnerability is particularly concerning because it affects several core components within the UIMA ecosystem, including the CasIOUtils class which is commonly used by developers building UIMA-based applications. While the framework itself does not start remotely accessible services by default, any application or service that uses the affected components to process external data becomes vulnerable.

Root Cause

The root cause is the absence of proper deserialization filters (ObjectInputFilter) when reading Java-serialized data in multiple UIMA components. The affected code paths include:

  • Deserialization of Java-serialized CAS and binary CAS formats containing TSI information via CasIOUtils
  • The CAS Editor Eclipse plugin data loading functionality
  • The Vinci Analysis Engine service network communication
  • The CasAnnotationViewerApplet and CasTreeViewerApplet components
  • The checkpointing feature of the CPE module

Without proper filtering, any serializable class available on the classpath can be instantiated during deserialization, enabling attackers to leverage known deserialization gadget chains for code execution.

Attack Vector

The attack requires network access and low privileges to exploit. An attacker can craft a malicious serialized Java object containing a gadget chain and submit it to any vulnerable endpoint that processes UIMA serialized data. The Vinci Analysis Engine service, if enabled, can receive Java-serialized CAS objects over network connections, making it a direct attack vector. Additionally, any custom application using CasIOUtils to parse untrusted serialized CAS data is susceptible to this attack.

The attack does not require user interaction and can be executed remotely against exposed services. Upon successful exploitation, the attacker gains code execution with the privileges of the UIMA service or application process.

Detection Methods for CVE-2023-39913

Indicators of Compromise

  • Unexpected network connections from UIMA-based applications to unknown external hosts
  • Unusual process spawning or command execution originating from Java processes running UIMA
  • Anomalous serialized object payloads in network traffic targeting UIMA services
  • Log entries indicating deserialization errors or unexpected class loading attempts

Detection Strategies

  • Monitor network traffic for suspicious serialized Java object patterns being sent to UIMA service endpoints
  • Implement application-level logging to capture deserialization events and flag unexpected class instantiation
  • Deploy runtime application self-protection (RASP) solutions capable of detecting deserialization attacks
  • Use SentinelOne's behavioral AI to detect post-exploitation activities such as unexpected process creation or network callbacks

Monitoring Recommendations

  • Enable verbose logging for UIMA applications to capture incoming serialized data processing events
  • Implement network segmentation to isolate UIMA services from untrusted networks
  • Configure alerts for any Vinci Analysis Engine service network activity if such services are deployed
  • Monitor for the presence of common Java deserialization gadget chain classes in application logs

How to Mitigate CVE-2023-39913

Immediate Actions Required

  • Upgrade Apache UIMA Java SDK to version 3.5.0 or later immediately
  • Audit all applications using CasIOUtils to identify potential exposure to untrusted serialized data
  • Disable or restrict network access to Vinci Analysis Engine services if they are not required
  • Upgrade from Java 1.8 to Java 9 or later if running affected UIMA versions that cannot be immediately upgraded

Patch Information

Apache has released UIMA Java SDK version 3.5.0 which addresses this vulnerability by implementing tightly scoped ObjectInputFilters when reading Java-serialized data. The fix automatically applies appropriate deserialization restrictions based on the expected data type, eliminating the need for manual filter configuration. Users should upgrade to version 3.5.0 or later to fully remediate this issue. For more details, see the Apache Security Thread and OpenWall OSS Security Discussion.

Workarounds

  • Configure a JVM-wide ObjectInputFilter using the jdk.serialFilter system property (Java 9+ required)
  • Restrict allowed classes to only necessary UIMA serialization classes and terminate with !* to deny all others
  • Isolate UIMA services behind network controls that prevent untrusted input from reaching vulnerable endpoints
  • Implement input validation at the application layer to reject unexpected serialized data formats before processing
bash
# Configuration example for Java 9+ ObjectInputFilter
# Add to JVM startup arguments to restrict deserialization classes

java -Djdk.serialFilter="org.apache.uima.cas.impl.CASCompleteSerializer;org.apache.uima.cas.impl.CASMgrSerializer;org.apache.uima.cas.impl.CASSerializer;java.lang.String;org.apache.uima.collection.impl.cpm.CheckpointData;org.apache.uima.util.ProcessTrace;org.apache.uima.util.impl.ProcessTrace_impl;org.apache.uima.collection.base_cpm.SynchPoint;!*" -jar your-uima-application.jar

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechApache Uima

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.41%

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

  • CWE-502
  • Technical References
  • OpenWall OSS Security Discussion

  • Apache Thread on Security Issues
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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