GHSA-WRHW-J3F9-8VC6
Vulnerability from github – Published: 2026-09-22 20:36 – Updated: 2026-09-22 20:36Description
mcp-atlassian deploys in two common patterns:
Pattern A (single-user, server-side credentials): operator sets JIRA_USERNAME + JIRA_API_TOKEN (or CONFLUENCE_USERNAME + CONFLUENCE_API_TOKEN) in environment variables. Server uses these to call Jira/Confluence. This is the documented quickstart pattern.
Pattern B (multi-user, OAuth or per-request PAT): operator sets up OAuth proxy or accepts per-user tokens via Authorization or service headers.
The authentication mechanism in HTTP transport has two issues that combine to permit unauthenticated access to Pattern A deployments:
-
AtlassianOpaqueTokenVerifier.verify_token() at
src/mcp_atlassian/utils/token_verifier.pyaccepts any non-empty string as a valid token:async def verify_token(self, token: str) -> AccessToken | None: if not token: return None scopes = self.required_scopes or [] return AccessToken( token=token, client_id="atlassian", scopes=scopes, expires_at=int(time.time()) + 86400 * 30, )
The docstring documents this: "we accept non-empty tokens and attach the required scopes."
-
The default deployment does NOT enable the OAuth proxy auth provider (OAUTH_PROXY_ENABLE_ENV defaults to false; main.py:726). When
_build_auth_provider()returns None, FastMCP HTTP transport accepts requests with no authentication challenge. -
UserTokenMiddleware._parse_auth_header(main.py:601-664) extracts tokens from Authorization headers and stores them in scope state. If NO Authorization header is present (main.py:584-595), the middleware does not reject the request — it simply does not populateuser_atlassian_token. -
JiraFetcher / ConfluenceFetcher fall back to
JiraConfig.from_env()when no user-supplied token is in scope state.from_env()readsJIRA_API_TOKENandJIRA_USERNAMEfrom environment and uses them as the API credentials.
Composition: an attacker who reaches the HTTP transport (e.g., server exposed on a port reachable from attacker — direct bind, Docker port mapping, reverse proxy without auth, container in a network the attacker joined) can:
- Send no Authorization header at all, OR
- Send any garbage Bearer token
Either request reaches tool handlers. The tool handlers, finding no user-supplied token, use the server's env-var credentials to call Jira / Confluence. The attacker has full operator-level access to the operator's Atlassian instance.
This is the same vulnerability class as CVE-2026-27825 (Arctic Wolf, unauthenticated RCE+SSRF in Atlassian MCP). The previous CVE was for a different code path; this report concerns the auth verifier and middleware behavior present in the current main branch. ``` Steps to Reproduce
Source-level demonstration:
-
Verify the verifier accepts arbitrary tokens:
cd src/ python -c " import asyncio from mcp_atlassian.utils.token_verifier import AtlassianOpaqueTokenVerifier v = AtlassianOpaqueTokenVerifier(required_scopes=['read:jira-work']) result = asyncio.run(v.verify_token('anything-at-all')) print('Accepted:', result is not None) print('Token stored:', result.token if result else None) print('Scopes granted:', result.scopes if result else None) "
Expected: Accepted: True Token stored: anything-at-all Scopes granted: ['read:jira-work']
End-to-end (researcher's own Atlassian sandbox):
-
Start mcp-atlassian in HTTP mode against a researcher-owned Atlassian Cloud instance with JIRA_API_TOKEN configured:
export JIRA_URL=https://researcher.atlassian.net export JIRA_USERNAME=researcher@example.com export JIRA_API_TOKEN= export MCP_TRANSPORT=streamable-http export PORT=3000 # Do NOT set OAUTH_PROXY_ENABLE_ENV — leave it default (false) mcp-atlassian
-
From another machine (or curl on localhost), with no auth:
curl -X POST http://localhost:3000/mcp \ -H "content-type: application/json" \ -H "accept: application/json, text/event-stream" \ -d '{ "jsonrpc":"2.0", "id":1, "method":"tools/call", "params":{ "name":"jira_get_issue", "arguments":{"issue_key":"PROJ-1"} } }'
Expected: returns the Jira issue payload — using the server's JIRA_API_TOKEN to authenticate to Atlassian. No client-side token provided.
-
Optional: same call with a garbage Bearer for completeness:
curl ... -H "Authorization: Bearer anything-at-all" ...
Same result.
Impact:
Attacker profile: any party with network reach to the HTTP transport. No credentials, no prior account, no privileged position required.
Typical deployment patterns at risk:
- Docker compose with port exposed (very common in mcp-atlassian's docs and community deployments)
- Cloud-deployed MCP server behind a load balancer where the LB doesn't enforce auth (delegates to the application)
- Internal corporate network where any employee can reach the server
- Misconfigured Kubernetes ingress
- Tunneled MCP server via ngrok / Cloudflare Tunnel for development that gets left exposed
Security impact after exploitation:
-
Full Jira read access. Every project, every issue, every comment, every attachment, every user — using the operator's API token.
-
Full Jira write access. Create, edit, delete issues. Add comments under the operator's identity. Move issues across boards. Bulk-edit.
-
Full Confluence read/write access. Same surface — pages, spaces, attachments, permissions, restricted spaces visible to the operator's identity.
-
Audit trail names the operator. Every API call is signed with the operator's token. From Atlassian's logging side, the operator is the actor — covering the attacker's tracks and shifting blame.
-
Pivot. Attachments often contain credentials, infrastructure diagrams, customer data. Confluence pages often store secrets in plaintext under the assumption of access control.
-
Persistence. Attacker can create new Jira webhooks, automation rules, or Confluence integrations that survive beyond the MCP session.
CVE-2026-27825 (Arctic Wolf, May 2026) was scored CVSS 9.8 Critical for unauth RCE+SSRF in this same code surface. This report is the auth-bypass component of the same class against the current main branch.
Suggested Fix
The most direct fix is the standard MCP-server-with-env-creds pattern:
-
When OAUTH_PROXY_ENABLE_ENV is not set, REFUSE to start the HTTP transport unless an explicit "single-user mode" flag is set:
SINGLE_USER_MODE = is_env_truthy("MCP_ATLASSIAN_SINGLE_USER") if MCP_TRANSPORT == "streamable-http" and not auth_provider and not SINGLE_USER_MODE: raise SystemExit( "HTTP transport requires either OAUTH_PROXY_ENABLE=true " "or MCP_ATLASSIAN_SINGLE_USER=true (acknowledges that env " "credentials will be used for any incoming request)." )
-
Even with SINGLE_USER_MODE, bind the HTTP transport to 127.0.0.1 by default unless the operator overrides with an explicit MCP_ATLASSIAN_BIND_PUBLIC=true.
-
Document the multi-tenant pattern as requiring OAuth proxy or per-request user-token middleware with a verifier that actually verifies (not the opaque-accept-anything stub).
-
Replace AtlassianOpaqueTokenVerifier with a verifier that performs a token-info or whoami call to Atlassian. The fact that Atlassian tokens are opaque does not preclude verification — a /rest/api/3/myself call validates the token and returns the associated user, which the verifier can attach to the AccessToken's scopes and user_id fields.
Defense in depth: the README quickstart should not encourage exposing the HTTP transport without auth. The docker-compose.yml in the repo should bind to 127.0.0.1 only by default.
{
"affected": [
{
"package": {
"ecosystem": "PyPI",
"name": "mcp-atlassian"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "0.22.0"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2026-77244"
],
"database_specific": {
"cwe_ids": [
"CWE-287",
"CWE-303",
"CWE-862"
],
"github_reviewed": true,
"github_reviewed_at": "2026-09-22T20:36:26Z",
"nvd_published_at": "2026-09-22T18:17:17Z",
"severity": "CRITICAL"
},
"details": "**Description**\n\nmcp-atlassian deploys in two common patterns:\n\n Pattern A (single-user, server-side credentials): operator sets\n JIRA_USERNAME + JIRA_API_TOKEN (or CONFLUENCE_USERNAME + CONFLUENCE_API_TOKEN)\n in environment variables. Server uses these to call Jira/Confluence.\n This is the documented quickstart pattern.\n\n Pattern B (multi-user, OAuth or per-request PAT): operator sets up OAuth\n proxy or accepts per-user tokens via Authorization or service headers.\n\nThe authentication mechanism in HTTP transport has two issues that combine\nto permit unauthenticated access to Pattern A deployments:\n\n1. AtlassianOpaqueTokenVerifier.verify_token() at\n `src/mcp_atlassian/utils/token_verifier.py` accepts any non-empty string\n as a valid token:\n\n async def verify_token(self, token: str) -\u003e AccessToken | None:\n if not token:\n return None\n scopes = self.required_scopes or []\n return AccessToken(\n token=token,\n client_id=\"atlassian\",\n scopes=scopes,\n expires_at=int(time.time()) + 86400 * 30,\n )\n\n The docstring documents this: \"we accept non-empty tokens and attach\n the required scopes.\"\n\n2. The default deployment does NOT enable the OAuth proxy auth provider\n (OAUTH_PROXY_ENABLE_ENV defaults to false; main.py:726). When\n `_build_auth_provider()` returns None, FastMCP HTTP transport accepts\n requests with no authentication challenge.\n\n3. `UserTokenMiddleware._parse_auth_header` (main.py:601-664) extracts\n tokens from Authorization headers and stores them in scope state. If\n NO Authorization header is present (main.py:584-595), the middleware\n does not reject the request \u2014 it simply does not populate\n `user_atlassian_token`.\n\n4. JiraFetcher / ConfluenceFetcher fall back to `JiraConfig.from_env()`\n when no user-supplied token is in scope state. `from_env()` reads\n `JIRA_API_TOKEN` and `JIRA_USERNAME` from environment and uses them\n as the API credentials.\n\nComposition: an attacker who reaches the HTTP transport (e.g., server\nexposed on a port reachable from attacker \u2014 direct bind, Docker port\nmapping, reverse proxy without auth, container in a network the attacker\njoined) can:\n\n - Send no Authorization header at all, OR\n - Send any garbage Bearer token\n\nEither request reaches tool handlers. The tool handlers, finding no\nuser-supplied token, use the server\u0027s env-var credentials to call\nJira / Confluence. The attacker has full operator-level access to the\noperator\u0027s Atlassian instance.\n\nThis is the same vulnerability class as CVE-2026-27825 (Arctic Wolf,\nunauthenticated RCE+SSRF in Atlassian MCP). The previous CVE was for a\ndifferent code path; this report concerns the auth verifier and middleware\nbehavior present in the current main branch.\n```\n**Steps to Reproduce**\n\nSource-level demonstration:\n\n1. Verify the verifier accepts arbitrary tokens:\n\n cd src/\n python -c \"\n import asyncio\n from mcp_atlassian.utils.token_verifier import AtlassianOpaqueTokenVerifier\n v = AtlassianOpaqueTokenVerifier(required_scopes=[\u0027read:jira-work\u0027])\n result = asyncio.run(v.verify_token(\u0027anything-at-all\u0027))\n print(\u0027Accepted:\u0027, result is not None)\n print(\u0027Token stored:\u0027, result.token if result else None)\n print(\u0027Scopes granted:\u0027, result.scopes if result else None)\n \"\n\n Expected:\n Accepted: True\n Token stored: anything-at-all\n Scopes granted: [\u0027read:jira-work\u0027]\n\nEnd-to-end (researcher\u0027s own Atlassian sandbox):\n\n1. Start mcp-atlassian in HTTP mode against a researcher-owned Atlassian\n Cloud instance with JIRA_API_TOKEN configured:\n\n export JIRA_URL=https://researcher.atlassian.net\n export JIRA_USERNAME=researcher@example.com\n export JIRA_API_TOKEN=\u003cresearcher\u0027s-real-token\u003e\n export MCP_TRANSPORT=streamable-http\n export PORT=3000\n # Do NOT set OAUTH_PROXY_ENABLE_ENV \u2014 leave it default (false)\n mcp-atlassian\n\n2. From another machine (or curl on localhost), with no auth:\n\n curl -X POST http://localhost:3000/mcp \\\n -H \"content-type: application/json\" \\\n -H \"accept: application/json, text/event-stream\" \\\n -d \u0027{\n \"jsonrpc\":\"2.0\", \"id\":1, \"method\":\"tools/call\",\n \"params\":{\n \"name\":\"jira_get_issue\",\n \"arguments\":{\"issue_key\":\"PROJ-1\"}\n }\n }\u0027\n\n Expected: returns the Jira issue payload \u2014 using the server\u0027s\n JIRA_API_TOKEN to authenticate to Atlassian. No client-side token\n provided.\n\n3. Optional: same call with a garbage Bearer for completeness:\n\n curl ... -H \"Authorization: Bearer anything-at-all\" ...\n\n Same result.\n \n \n **Impact**:\n \n Attacker profile: any party with network reach to the HTTP transport.\nNo credentials, no prior account, no privileged position required.\n\nTypical deployment patterns at risk:\n\n - Docker compose with port exposed (very common in mcp-atlassian\u0027s\n docs and community deployments)\n - Cloud-deployed MCP server behind a load balancer where the LB\n doesn\u0027t enforce auth (delegates to the application)\n - Internal corporate network where any employee can reach the server\n - Misconfigured Kubernetes ingress\n - Tunneled MCP server via ngrok / Cloudflare Tunnel for development\n that gets left exposed\n\nSecurity impact after exploitation:\n\n1. Full Jira read access. Every project, every issue, every comment,\n every attachment, every user \u2014 using the operator\u0027s API token.\n\n2. Full Jira write access. Create, edit, delete issues. Add comments\n under the operator\u0027s identity. Move issues across boards. Bulk-edit.\n\n3. Full Confluence read/write access. Same surface \u2014 pages, spaces,\n attachments, permissions, restricted spaces visible to the operator\u0027s\n identity.\n\n4. Audit trail names the operator. Every API call is signed with the\n operator\u0027s token. From Atlassian\u0027s logging side, the operator is the\n actor \u2014 covering the attacker\u0027s tracks and shifting blame.\n\n5. Pivot. Attachments often contain credentials, infrastructure\n diagrams, customer data. Confluence pages often store secrets in\n plaintext under the assumption of access control.\n\n6. Persistence. Attacker can create new Jira webhooks, automation rules,\n or Confluence integrations that survive beyond the MCP session.\n\nCVE-2026-27825 (Arctic Wolf, May 2026) was scored CVSS 9.8 Critical for\nunauth RCE+SSRF in this same code surface. This report is the auth-bypass\ncomponent of the same class against the current main branch.\n\n\n**Suggested Fix**\n\nThe most direct fix is the standard MCP-server-with-env-creds pattern:\n\n 1. When OAUTH_PROXY_ENABLE_ENV is not set, REFUSE to start the HTTP\n transport unless an explicit \"single-user mode\" flag is set:\n\n SINGLE_USER_MODE = is_env_truthy(\"MCP_ATLASSIAN_SINGLE_USER\")\n if MCP_TRANSPORT == \"streamable-http\" and not auth_provider and not SINGLE_USER_MODE:\n raise SystemExit(\n \"HTTP transport requires either OAUTH_PROXY_ENABLE=true \"\n \"or MCP_ATLASSIAN_SINGLE_USER=true (acknowledges that env \"\n \"credentials will be used for any incoming request).\"\n )\n\n 2. Even with SINGLE_USER_MODE, bind the HTTP transport to 127.0.0.1\n by default unless the operator overrides with an explicit\n MCP_ATLASSIAN_BIND_PUBLIC=true.\n\n 3. Document the multi-tenant pattern as requiring OAuth proxy or\n per-request user-token middleware with a verifier that actually\n verifies (not the opaque-accept-anything stub).\n\n 4. Replace AtlassianOpaqueTokenVerifier with a verifier that performs\n a token-info or whoami call to Atlassian. The fact that Atlassian\n tokens are opaque does not preclude verification \u2014 a\n /rest/api/3/myself call validates the token and returns the\n associated user, which the verifier can attach to the AccessToken\u0027s\n scopes and user_id fields.\n\nDefense in depth: the README quickstart should not encourage exposing\nthe HTTP transport without auth. The docker-compose.yml in the repo\nshould bind to 127.0.0.1 only by default.",
"id": "GHSA-wrhw-j3f9-8vc6",
"modified": "2026-09-22T20:36:26Z",
"published": "2026-09-22T20:36:26Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/sooperset/mcp-atlassian/security/advisories/GHSA-wrhw-j3f9-8vc6"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-77244"
},
{
"type": "WEB",
"url": "https://github.com/sooperset/mcp-atlassian/pull/1448"
},
{
"type": "WEB",
"url": "https://github.com/sooperset/mcp-atlassian/commit/b041733473f95119dd539542a43c280737a8e460"
},
{
"type": "PACKAGE",
"url": "https://github.com/sooperset/mcp-atlassian"
},
{
"type": "WEB",
"url": "https://github.com/sooperset/mcp-atlassian/releases/tag/v0.22.0"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:N",
"type": "CVSS_V3"
}
],
"summary": "[mcp-atlassian] Authentication bypass in HTTP transport: AtlassianOpaqueTokenVerifier accepts any non-empty token"
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
The approach is described in our paper Mapping CVEs to MITRE ATT&CK Techniques: A Curated Gold-Set Classifier and the Limits of LLM-Assisted Label Expansion.
Browse all ATT&CK techniques and the vulnerabilities related to each.
Related by attack behaviour
Vulnerabilities whose description is nearest to this one in the vector space of the CIRCL/vulnerability-attack-technique-biencoder model. This is a similarity search over the bi-encoder space (plain cosine), not a classification, and it has no measured accuracy.