Description
Improper Input Validation, Authorization Bypass Through User-Controlled Key vulnerability in Apache Camel JIRA component.

The camel-jira producers read their operation parameters - the issue key, project key, transition id, summary, type, assignee, components, watchers, link type, work-log minutes and others - from Exchange message headers. The header constants defined in JiraConstants (for example ISSUE_KEY = IssueKey, ISSUE_PROJECT_KEY = ProjectKey, ISSUE_TRANSITION_ID = IssueTransitionId, LINK_TYPE = linkType) used plain, non-Camel-prefixed values. 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 jira: producer, any HTTP client could therefore supply these headers and override the values the route intended, driving JIRA operations against the configured JIRA instance with the endpoint's configured service-account credentials - for example deleting or transitioning an arbitrary issue (via IssueKey / IssueTransitionId), creating an issue in a different project (via ProjectKey), modifying issue fields, adding or removing watchers, or logging work. The operations are bounded by what the configured service account is permitted to do. No credentials are required from the attacker 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 JIRA operations via the raw header names must use the CamelJira* names (for example CamelJiraIssueKey) instead of the old values. For deployments that cannot upgrade immediately, strip the camel-jira control headers from any untrusted ingress before the jira: producer (for example removing the IssueKey, ProjectKey, IssueTransitionId and related headers at the start of the route), and set the required JIRA operation parameters from a trusted source.
Published: 2026-07-06
Score: n/a
EPSS: < 1% Very Low
KEV: No
Impact: n/a
Action: n/a
AI Analysis

Impact

The vulnerability arises when the Apache Camel JIRA component accepts non‑Camel‑prefixed message headers as operation parameters. Because these headers bypass the HTTP header filter, an HTTP client can set values such as IssueKey or ProjectKey without providing authentication. The attacker then causes the Jira producer to perform arbitrary operations—creating, deleting, transitioning, or modifying issues—using the service‑account credentials configured on the endpoint. The potential damage is limited only by the service account’s permissions; however, the ability to create or delete issues without any credentials can be critical, especially in environments using audit logs or compliance requirements. This flaw relies on improper input validation (CWE‑20) and an authorization bypass via user‑controlled input (CWE‑639).

Affected Systems

Apache Camel JIRA component is affected across several release streams. For the 4.0.x series the issue exists from 4.0.0 up to but not including 4.14.8. In the 4.15.x series the vulnerability is present from 4.15.0 through 4.18.2, and in the 4.19.x series it exists from 4.19.0 through 4.20.9. Users on any of these streams should verify their current version against these ranges.

Risk and Exploitability

The EPSS score is reported as less than 1 %, indicating a very low probability of exploitation at present. The vulnerability is not listed in the CISA KEV catalog, but the lack of a need for credentials and the clear path from an unauthenticated HTTP consumer to JIRA operations make it a high‑impact concern for environments that expose the Camel JIRA bridge. The attack vector is an HTTP request to a route that bridges an unsecured consumer into the jira: producer, where the attacker supplies the vulnerable headers. If a service account has extensive permissions, the damage can be extensive. The risk is therefore governed more by the potential impact than by the likelihood indicated by EPSS.

Generated by OpenCVE AI on July 6, 2026 at 17:07 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade the Apache Camel JIRA component to the latest patched version that removes the vulnerable header names—4.21.0 for the 4.19.x stream, 4.18.3 for the 4.18.x stream, or 4.14.8 for the 4.14.x LTS stream.
  • If an immediate upgrade is not possible, modify the route to strip any untrusted headers that influence Jira operations before the jira: producer is invoked; for example, remove IssueKey, ProjectKey, IssueTransitionId, and related headers at the beginning of the route.
  • After ensuring no untrusted headers reach the producer, use the CamelJira* header names (e.g., CamelJiraIssueKey) and set all Jira operation parameters from a trusted, internal source rather than from client requests.

Generated by OpenCVE AI on July 6, 2026 at 17:07 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Mon, 06 Jul 2026 09:00:00 +0000

Type Values Removed Values Added
Description Improper Input Validation, Authorization Bypass Through User-Controlled Key vulnerability in Apache Camel JIRA component. The camel-jira producers read their operation parameters - the issue key, project key, transition id, summary, type, assignee, components, watchers, link type, work-log minutes and others - from Exchange message headers. The header constants defined in JiraConstants (for example ISSUE_KEY = IssueKey, ISSUE_PROJECT_KEY = ProjectKey, ISSUE_TRANSITION_ID = IssueTransitionId, LINK_TYPE = linkType) used plain, non-Camel-prefixed values. 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 jira: producer, any HTTP client could therefore supply these headers and override the values the route intended, driving JIRA operations against the configured JIRA instance with the endpoint's configured service-account credentials - for example deleting or transitioning an arbitrary issue (via IssueKey / IssueTransitionId), creating an issue in a different project (via ProjectKey), modifying issue fields, adding or removing watchers, or logging work. The operations are bounded by what the configured service account is permitted to do. No credentials are required from the attacker 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 JIRA operations via the raw header names must use the CamelJira* names (for example CamelJiraIssueKey) instead of the old values. For deployments that cannot upgrade immediately, strip the camel-jira control headers from any untrusted ingress before the jira: producer (for example removing the IssueKey, ProjectKey, IssueTransitionId and related headers at the start of the route), and set the required JIRA operation parameters from a trusted source.
Title Apache Camel JIRA: A set of non-Camel-prefixed Exchange header constants bypass the HTTP header filter, allowing an HTTP client to drive arbitrary JIRA issue operations using the endpoint's configured credentials
Weaknesses CWE-20
CWE-639
References

Subscriptions

No data.

cve-icon MITRE

Status: PUBLISHED

Assigner: apache

Published:

Updated: 2026-07-06T19:06:19.319Z

Reserved: 2026-05-21T09:02:10.464Z

Link: CVE-2026-48206

cve-icon Vulnrichment

No data.

cve-icon NVD

No data.

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-07-06T17:15:16Z

Weaknesses
  • CWE-20

    Improper Input Validation

  • CWE-639

    Authorization Bypass Through User-Controlled Key