CVE-2026-66907
Received Received - Intake

Path Traversal in Apache Camel Google Storage Component

Vulnerability report for CVE-2026-66907, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-24

Last updated on: 2026-08-24

Assigner: Apache Software Foundation

Description

Relative path traversal vulnerability in Apache Camel Google Storage component. This issue affects Apache Camel: from 4.0.0 before 4.14.9, from 4.15.0 before 4.18.4, from 4.19.0 before 4.22.0. The camel-google-storage consumer downloads Google Cloud Storage objects to the local filesystem when the downloadFileName option is set. That option is documented as a folder or a filename, and when its value contains no expression token the consumer builds the local destination by appending the object name to it: evaluateFileExpression sets the Exchange file-name header to the remote object name and evaluates downloadFileName + "/${file:name}". The ${file:name} token returns the file-name header verbatim, unlike ${file:onlyname}, which applies FileUtil.stripPath to it. The resulting string was passed directly to new File(result) and blob.downloadTo(file.toPath()) with no lexical normalization and no check that the destination stayed inside the configured directory. The object name is not route-controlled data: the consumer lists the bucket, iterates every returned blob and creates one exchange per object from blob.getBlobId().getName() verbatim, and the filter option that could restrict those names is not applied at all unless it has been explicitly set. Google Cloud Storage object names are opaque UTF-8 keys that the service stores and lists exactly as written, with no server-side canonicalization, and a forward slash is only a display convention for pseudo-directories, so a key containing parent-directory segments survives round-tripping intact. An object name containing such segments therefore resolved to a location outside the configured downloadFileName directory, letting anyone able to influence the names present in the consumed bucket cause Camel to create or overwrite a file at a location of their choosing, with the privileges of the Camel process. Depending on what the process can write to, overwriting a file outside the download directory can escalate beyond the loss of integrity of that file. The downloadFileName option is an ordinary consumer parameter and carries no security marker, so nothing signalled to users that its value was not being enforced as a containment boundary. The defect is consumer-only; the producer has no download-to-file sink. Camel's other file-download consumers - camel-file, camel-ftp, camel-smb, camel-mina-sftp, camel-azure-files and the Azure Storage download paths - already constrained their local downloads to the configured directory using a path-segment boundary check; camel-google-storage was the remaining object-store download sink not covered by that work. Users are recommended to upgrade to version 4.22.0, which fixes the issue. If users are on the 4.14.x LTS releases stream, then they are suggested to upgrade to 4.14.9. If users are on the 4.18.x releases stream, then they are suggested to upgrade to 4.18.4. For deployments that cannot upgrade immediately, set the filter option to a regular expression that accepts only simple single-segment object names, so that any name carrying a path separator or a parent-directory segment is excluded before an exchange is created; note that no filtering whatsoever is applied when the option is left unset, and that the expression is matched against the whole object name. Alternatively, give downloadFileName an explicit expression that does not carry the remote path through, for example one built on ${file:onlyname} rather than the implicit ${file:name}, keeping in mind that a downloadFileName containing an expression is treated as route-author-controlled and is not covered by the containment check added in the fix. As defence in depth, treat the object names in any externally writable bucket as untrusted input and do not derive local filesystem paths from them.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-24
Last Modified
2026-08-24
Generated
2026-08-24
AI Q&A
2026-08-24
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 6 associated CPEs
Vendor Product Version / Range
apache camel 4.0.0
apache camel to 4.14.9 (inc)
apache camel 4.15.0
apache camel to 4.18.4 (inc)
apache camel 4.19.0
apache camel to 4.22.0 (inc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-23 The product uses external input to construct a pathname that should be within a restricted directory, but it does not properly neutralize sequences such as ".." that can resolve to a location that is outside of that directory.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

This is a relative path traversal vulnerability in Apache Camel's Google Storage component. It occurs when the camel-google-storage consumer downloads files from Google Cloud Storage to the local filesystem. The vulnerability allows attackers with write access to a bucket to create or overwrite files outside the intended download directory by using object names containing path traversal segments like '../'. The issue arises because the consumer appends raw object names directly to the download path without validation.

Detection Guidance

To detect this vulnerability, check if your Apache Camel version is within the affected ranges (4.0.0-4.14.8, 4.15.0-4.18.3, 4.19.0-4.21.0). Inspect camel-google-storage consumer configurations for the downloadFileName parameter. Look for unexpected file writes outside configured directories, especially those containing path traversal sequences like ../. Monitor logs for file operations originating from the Camel process.

Impact Analysis

This vulnerability can allow attackers to write files to arbitrary locations on the local filesystem with the privileges of the Camel process. Depending on the process's permissions, this could lead to file corruption, data loss, or even further system compromise. Attackers could overwrite critical system files or create malicious files to execute arbitrary code.

Compliance Impact

This vulnerability could lead to unauthorized file access or modification, potentially violating data integrity and confidentiality requirements in GDPR and HIPAA. Unauthorized file writes might expose or alter sensitive data, leading to compliance breaches and regulatory penalties.

Mitigation Strategies

Upgrade Apache Camel to a fixed version: 4.22.0, 4.18.4, or 4.14.9 depending on your release stream. As a temporary workaround, set the filter option to exclude object names with path separators or use ${file:onlyname} in downloadFileName to strip path components. Avoid using ${file:name} which preserves path segments.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-66907. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart