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-2026-25747

CVE-2026-25747: Apache Camel LevelDB RCE Vulnerability

CVE-2026-25747 is a deserialization RCE vulnerability in Apache Camel LevelDB that enables attackers to execute arbitrary code by injecting malicious objects. This article covers technical details, affected versions, and patches.

Updated: May 14, 2026

CVE-2026-25747 Overview

CVE-2026-25747 is a deserialization of untrusted data vulnerability [CWE-502] in the Apache Camel LevelDB component. The DefaultLevelDBSerializer class deserializes data read from the LevelDB aggregation repository using java.io.ObjectInputStream without applying any ObjectInputFilter or class-loading restrictions. An attacker who can write to the LevelDB database files used by a Camel application can inject a crafted serialized Java object. When the aggregation repository deserializes that object during normal operation, the payload executes arbitrary code in the context of the application.

Critical Impact

Attackers with write access to LevelDB files can achieve arbitrary code execution in the Apache Camel application context, leading to full compromise of confidentiality, integrity, and availability.

Affected Products

  • Apache Camel 4.10.0 through 4.10.7 (LTS)
  • Apache Camel 4.14.0 through 4.14.4 (LTS)
  • Apache Camel 4.15.0 through 4.17.x

Discovery Timeline

  • 2026-02-23 - CVE-2026-25747 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-25747

Vulnerability Analysis

The vulnerability resides in the Camel-LevelDB component, which provides an aggregation repository backed by a LevelDB key-value store. Apache Camel uses Java native serialization to persist aggregation state between processing steps. The DefaultLevelDBSerializer reads stored values through ObjectInputStream.readObject() with no allow-list, no ObjectInputFilter, and no constraints on which classes can be loaded.

This pattern is a textbook unsafe deserialization sink. Any gadget chain present on the application classpath, such as those from Commons Collections, Spring, or Groovy, can be triggered during deserialization. The result is arbitrary code execution inside the Java Virtual Machine running the Camel route.

Root Cause

The root cause is the absence of input filtering on the deserialization stream. Java introduced ObjectInputFilter in JEP 290 to constrain class graphs read from ObjectInputStream, but the Camel-LevelDB serializer does not install one. The serializer treats persisted bytes as trusted, even though the LevelDB files reside on disk and may be writable by other processes or users.

Attack Vector

Exploitation requires the attacker to write crafted bytes into the LevelDB database files used by the target Camel application. This can occur through compromised file system access, shared storage misconfiguration, or any upstream flaw that lets an attacker influence aggregation repository contents. Once the malicious entry is persisted, the next aggregation read triggers readObject() and executes the embedded gadget chain.

No authentication to the Camel application itself is required at deserialization time. The attack vector is network-reachable when the LevelDB store is exposed through shared infrastructure. A public proof of concept is referenced in the GitHub PoC Repository and discussed on the Openwall OSS Security list.

Detection Methods for CVE-2026-25747

Indicators of Compromise

  • Unexpected child processes spawned by the Java process hosting Apache Camel, particularly shells, curl, wget, or scripting interpreters.
  • Modifications to LevelDB files (*.ldb, *.log, MANIFEST-*) by accounts other than the Camel service identity.
  • Outbound network connections from the Camel JVM to unknown hosts following aggregation route processing.
  • Stack traces in application logs referencing DefaultLevelDBSerializer, ObjectInputStream.readObject, and unexpected gadget classes such as InvokerTransformer or TemplatesImpl.

Detection Strategies

  • Inventory all Apache Camel deployments and flag versions in the affected ranges 4.10.0–4.10.7, 4.14.0–4.14.4, and 4.15.0–4.17.x.
  • Monitor process lineage for the Camel JVM and alert on creation of non-Java child processes from aggregation routes.
  • Apply file integrity monitoring to LevelDB directories used by Camel aggregation repositories.
  • Inspect heap dumps and thread stacks for deserialization gadget chains during incident triage.

Monitoring Recommendations

  • Forward Java process telemetry, file access events, and outbound network connections to a centralized analytics platform for correlation across hosts.
  • Alert on any write to LevelDB store paths by users or services outside the Camel runtime identity.
  • Track JVM exit codes and unexpected restarts of Camel applications, which often follow failed gadget executions.

How to Mitigate CVE-2026-25747

Immediate Actions Required

  • Upgrade Apache Camel to a fixed release: 4.18.0 for the current line, 4.10.9 for the 4.10.x LTS line, or 4.14.5 for the 4.14.x LTS line.
  • Restrict file system permissions on LevelDB aggregation repository directories so only the Camel service account has write access.
  • Audit recent changes to LevelDB store files and review aggregation routes for anomalous processing.
  • Rotate credentials and secrets accessible to the Camel application if compromise is suspected.

Patch Information

Apache published the fix in the Apache Camel Security Advisory. Upgrade to 4.18.0, 4.14.5, or 4.10.9 depending on the deployed branch. The patched releases add filtering to the LevelDB deserialization path.

Workarounds

  • If immediate upgrade is not possible, replace the LevelDB aggregation repository with an alternative repository implementation that does not rely on Java native serialization.
  • Place LevelDB files on storage accessible only to the Camel process, removing any shared write paths.
  • Configure a JVM-wide ObjectInputFilter via the jdk.serialFilter system property to deny untrusted classes during deserialization.
bash
# Configuration example: enforce a strict JVM-wide deserialization filter
java -Djdk.serialFilter='!*' \
     -Dorg.apache.camel.leveldb.repository.path=/var/lib/camel/leveldb \
     -jar camel-application.jar

# Restrict LevelDB directory permissions to the Camel service account
chown -R camel:camel /var/lib/camel/leveldb
chmod -R 700 /var/lib/camel/leveldb

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechApache Camel

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.06%

  • 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-502
  • Technical References
  • GitHub PoC Repository

  • Openwall OSS Security Discussion
  • Vendor Resources
  • Apache Camel Security Advisory
  • Related CVEs
  • CVE-2026-40453: Apache Camel RCE Vulnerability

  • CVE-2026-40048: Apache Camel RCE Vulnerability

  • CVE-2026-40473: Apache Camel RCE Vulnerability

  • CVE-2026-40860: Apache Camel JMS RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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