CVE-2026-48204: Apache Camel: Camel-MongoDB-GridFS: The gridfs.* control headers used non-Camel-prefixed names that bypass the HTTP header filter, allowing an HTTP client to switch the GridFS operation - including destructive file deletion - in the default configuration
Improper Input Validation, Improper Access Control vulnerability in Apache Camel in Camel Mongodb Gridfs component.
The camel-mongodb-gridfs producer selects the GridFS operation to perform from the gridfs.operation Exchange header when the endpoint's operation parameter is not set - which is the default. The control-header constants (GridFsConstants.GRIDFSOPERATION, GRIDFSOBJECTID, GRIDFSMETADATA, GRIDFSCHUNKSIZE, GRIDFSFILEIDPRODUCED) were the plain strings gridfs.operation, gridfs.objectid, gridfs.metadata, gridfs.chunksize and gridfs.fileid. Because these names do not start with the Camel / camel prefix, HttpHeaderFilterStrategy - which blocks only the Camel header namespace on the HTTP boundary - let them pass from an inbound HTTP request straight into the Exchange. In a route that bridges an HTTP consumer (for example platform-http) into a mongodb-gridfs: producer with no explicit operation, any HTTP client could therefore set the gridfs.operation header to override the route's intended operation - switching, for example, a file upload to remove (deleting a file identified by the attacker-supplied gridfs.objectid), listAll (enumerating every file in the bucket) or findOne (reading a file) - and supply a gridfs.metadata value that is parsed as a MongoDB document, enabling NoSQL operator injection. No credentials are required when the bridging consumer is unauthenticated. This issue affects Apache Camel: from 4.0.0 before 4.14.8, from 4.15.0 before 4.18.3, from 4.19.0 before 4.21.0.
Users are recommended to upgrade to version 4.21.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.8. If users are on the 4.18.x releases stream, then they are suggested to upgrade to 4.18.3. After upgrading, routes that drive GridFS operations or metadata via the raw header names must use CamelGridFsOperation / CamelGridFsObjectId / CamelGridFsMetadata / CamelGridFsChunkSize / CamelGridFsFileId instead of the gridfs. names. For deployments that cannot upgrade immediately, set an explicit operation on the mongodb-gridfs: endpoint so the operation is not taken from a header, and strip the gridfs. headers from any untrusted ingress before the producer.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
Apache Camel (camel-mongodb-gridfs)to a version that resolves this vulnerability.Fixed in 4.21.0 - Upgrade
Upgrade
Apache Camel (4.14.x LTS stream)to a version that resolves this vulnerability.Fixed in 4.14.8 - Upgrade
Upgrade
Apache Camel (4.18.x releases stream)to a version that resolves this vulnerability.Fixed in 4.18.3 - Configuration
For deployments that cannot upgrade immediately, set an explicit operation on the mongodb-gridfs: endpoint so the GridFS operation is not taken from the gridfs.operation Exchange header.
Apache Camel (camel-mongodb-gridfs endpoint) operation = <explicit operation> - Configuration
Before the mongodb-gridfs producer, strip any gridfs.* control headers (e.g., gridfs.operation, gridfs.objectid, gridfs.metadata, gridfs.chunksize, gridfs.fileid) from untrusted ingress so an HTTP client cannot override the intended operation or inject MongoDB operators via gridfs.metadata.
Untrusted ingress to Apache Camel route (before mongodb-gridfs producer) strip headers matching gridfs.* = true - Configuration
After upgrading, ensure routes that drive GridFS operations or metadata via HTTP use Camel-prefixed header names (CamelGridFsOperation, CamelGridFsObjectId, CamelGridFsMetadata, CamelGridFsChunkSize, CamelGridFsFileId) instead of gridfs.* names, since gridfs.* bypasses the HTTP header filter and can reach the Exchange.
Apache Camel routes / HTTP bridging to camel-mongodb-gridfs GridFS control header names = CamelGridFsOperation / CamelGridFsObjectId / CamelGridFsMetadata / CamelGridFsChunkSize / CamelGridFsFileId
Event History
Frequently Asked Questions
What is the severity of CVE-2026-48204?
CVE-2026-48204 has a severity rating of critical with a score of 9.8 according to CVSS 3.1.
How do I fix CVE-2026-48204?
To remediate CVE-2026-48204, ensure that proper input validation is implemented to enforce Camel-prefixed names in HTTP header filters.
What types of attacks are possible with CVE-2026-48204?
CVE-2026-48204 allows an attacker to switch GridFS operations, potentially leading to destructive file deletions.
Which component of Apache Camel is affected by CVE-2026-48204?
CVE-2026-48204 affects the Camel MongoDB GridFS component within Apache Camel.
Is CVE-2026-48204 present in all versions of Apache Camel?
CVE-2026-48204 specifically impacts versions of Apache Camel that utilize the camel-mongodb-gridfs component without the appropriate configuration.