Severity by source
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Confused-deputy redirection to unintended/destructive backend operations is primarily integrity (I:H) with limited confidentiality; PR:N holds only when the bridging HTTP consumer is unauthenticated.
Primary rating from Vendor (apache).
CVSS VectorVendor: apache
Lifecycle Timeline
6Blast Radius
ecosystem impact- 10 maven packages depend on org.apache.camel:camel-cxf-rest (5 direct, 5 indirect)
- 31 maven packages depend on org.apache.camel:camel-cxf-soap (6 direct, 25 indirect)
Ecosystem-wide dependent count for version 4.0.0 and other introduced versions.
DescriptionCVE.org
Improper Input Validation, Unintended Proxy or Intermediary ('Confused Deputy') vulnerability in Apache Camel CXF SOAP component.
The camel-cxf producer selects which SOAP operation to invoke on the backend service from the operationName (and operationNamespace) Exchange header, whose constant values (CxfConstants.OPERATION_NAME / OPERATION_NAMESPACE) were the plain strings operationName / operationNamespace. 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 cxf: producer, any HTTP client could therefore set the operationName header and have CxfProducer resolve and invoke a different WSDL operation than the route intended - for example replacing a read operation with a destructive one - against the backend SOAP service (a confused-deputy redirection). The constant is defined in the shared camel-cxf-common module, so the same non-prefixed names also applied to camel-cxfrs. 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, the operation-selection headers are named CamelCxfOperationName / CamelCxfOperationNamespace and are filtered at transport boundaries; see the 4.21 upgrade guide for the cross-transport carrier-header pattern. For deployments that cannot upgrade immediately, do not select the CXF operation from untrusted input: strip the operationName and operationNamespace headers from any untrusted ingress before the cxf: producer and set the operation from a trusted source in the route.
AnalysisAI
Confused-deputy operation redirection in the Apache Camel camel-cxf SOAP component (versions 4.0.0 before 4.14.8, 4.15.0 before 4.18.3, and 4.19.0 before 4.21.0) lets an attacker steer which backend SOAP operation gets invoked. Because the operationName / operationNamespace selection headers lacked the Camel/camel prefix, HttpHeaderFilterStrategy failed to strip them at the HTTP boundary, so in any route bridging an HTTP consumer (e.g. platform-http) into a cxf: producer, an HTTP client could inject these headers and force CxfProducer to call a different WSDL operation than intended - for example swapping a read for a destructive write. No public exploit is identified at time of analysis, EPSS is low (0.15%), and it is not in CISA KEV.
Technical ContextAI
Apache Camel is a Java enterprise integration framework; the camel-cxf component wraps Apache CXF to consume and produce SOAP/JAX-WS web services. The camel-cxf producer selects its target SOAP operation from the Exchange headers CxfConstants.OPERATION_NAME and OPERATION_NAMESPACE, whose literal values were the unprefixed strings 'operationName' and 'operationNamespace'. Camel's HttpHeaderFilterStrategy only blocks headers in the Camel/camel namespace when crossing the HTTP transport boundary, so these unprefixed control headers were treated as ordinary application data and passed from inbound HTTP straight into the Exchange. This is a CWE-20 improper input validation issue manifesting as a Confused Deputy: trusted routing logic acts on attacker-controlled input it should never have accepted. Because the constant lives in the shared camel-cxf-common module, the same flaw also applied to camel-cxfrs. The single affected CPE is cpe:2.3:a:apache_software_foundation:apache_camel.
RemediationAI
Vendor-released patch: upgrade to Apache Camel 4.21.0, which fixes the issue; users on the 4.14.x LTS stream should move to 4.14.8, and users on the 4.18.x stream to 4.18.3. After upgrading, the operation-selection headers are renamed CamelCxfOperationName / CamelCxfOperationNamespace and are filtered at transport boundaries, so review the 4.21 upgrade guide for the cross-transport carrier-header pattern if your routes deliberately propagate operation selection. If you cannot upgrade immediately, do not derive the CXF operation from untrusted input: explicitly strip the operationName and operationNamespace headers from any untrusted ingress before the cxf: producer (for example with a removeHeaders step) and set the operation from a trusted source in the route; the side effect is that legitimate clients can no longer choose the operation dynamically over HTTP, so any intended dynamic-dispatch behavior must be re-implemented from trusted routing logic. Authenticating the bridging HTTP consumer also removes the unauthenticated-attacker path. See https://camel.apache.org/security/CVE-2026-46592.html.
More in Apache Camel
View allRemote code execution in Apache Camel's camel-coap component (versions 4.14.0-4.14.5, 4.18.0 before 4.18.1, and 4.19.0)
Unsafe Java deserialization in Apache Camel's camel-infinispan component allows arbitrary code execution when the ProtoS
Header-injection in the Apache Camel camel-atmosphere-websocket producer lets an external sender hijack WebSocket messag
Header-filter bypass in the Apache Camel Undertow component (4.11.0-4.14.8, 4.15.0-4.18.3, and 4.19.0-4.21.x) lets remot
Remote code execution in Apache Camel 3.18.0-4.14.5 and 4.15.0-4.18.1 stems from CXF and Knative HeaderFilterStrategy im
Message header injection in Apache Camel's camel-mail component (3.0.0 before 4.14.6 and 4.15.0 before 4.18.1) lets an a
Remote code execution via unsafe Java deserialization affects the camel-pqc component of Apache Camel 4.18.0-4.18.2 and
Unsafe Java deserialization in Apache Camel's camel-consul component (ConsulRegistry / ConsulRegistryUtils.deserialize)
Cypher injection in Apache Camel's camel-neo4j producer allows attackers who control JSON key names in the CamelNeo4jMat
Remote code execution in the Apache Camel camel-hazelcast component allows an attacker who can join or reach the Hazelca
Remote code execution in Apache Camel's camel-vertx-http component (4.0.0-4.14.7, 4.15.0-4.18.2, 4.19.0) arises when a p
Blind out-of-band data exfiltration in Apache Camel 4.14.0-4.20.x arises because the default ObjectInputFilter pattern b
Same weakness CWE-20 – Improper Input Validation
View allSame technique Information Disclosure
View allVendor StatusVendor
Share
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-41836
GHSA-mrrp-9gjm-749v