GHSA-wrhw-j3f9-8vc6

Suggest an improvement
Source
https://github.com/advisories/GHSA-wrhw-j3f9-8vc6
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-wrhw-j3f9-8vc6/GHSA-wrhw-j3f9-8vc6.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-wrhw-j3f9-8vc6
Aliases
  • CVE-2026-77244
Published
2026-09-22T20:36:26Z
Modified
2026-09-22T21:00:11Z
Severity
  • 10.0 (Critical) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:N CVSS Calculator
Summary
[mcp-atlassian] Authentication bypass in HTTP transport: AtlassianOpaqueTokenVerifier accepts any non-empty token
Details

Description

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:

  1. AtlassianOpaqueTokenVerifier.verify_token() at src/mcp_atlassian/utils/token_verifier.py accepts 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."

  2. 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.

  3. 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 populate user_atlassian_token.

  4. JiraFetcher / ConfluenceFetcher fall back to JiraConfig.from_env() when no user-supplied token is in scope state. from_env() reads JIRA_API_TOKEN and JIRA_USERNAME from 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:

1. 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):

1. 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=<researcher's-real-token>
       export MCP_TRANSPORT=streamable-http
       export PORT=3000
       # Do NOT set OAUTH_PROXY_ENABLE_ENV — leave it default (false)
       mcp-atlassian

2. 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.

3. 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:

1. Full Jira read access. Every project, every issue, every comment,
   every attachment, every user — using the operator's API token.

2. Full Jira write access. Create, edit, delete issues. Add comments
   under the operator's identity. Move issues across boards. Bulk-edit.

3. Full Confluence read/write access. Same surface — pages, spaces,
   attachments, permissions, restricted spaces visible to the operator's
   identity.

4. 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.

5. Pivot. Attachments often contain credentials, infrastructure
   diagrams, customer data. Confluence pages often store secrets in
   plaintext under the assumption of access control.

6. 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:

  1. 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)."
           )

  2. 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.

  3. 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).

  4. 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.
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"
}
References

Affected packages

PyPI / mcp-atlassian

Package

Name
mcp-atlassian
View open source insights on deps.dev
Purl
pkg:pypi/mcp-atlassian

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
0.22.0

Affected versions

0.*
0.1.1
0.1.2
0.1.3
0.1.4
0.1.6
0.1.7
0.1.8
0.1.9
0.1.10
0.1.11
0.1.12
0.1.13
0.1.14
0.1.15
0.1.16
0.2.0
0.2.1
0.2.2
0.2.3
0.2.4
0.2.5
0.2.6
0.3.0
0.3.1
0.4.0
0.5.0
0.6.0
0.6.1
0.6.2
0.6.3
0.6.4
0.6.5
0.7.0
0.7.1
0.8.0
0.8.1
0.8.2
0.8.3
0.8.4
0.9.0
0.10.0
0.10.1
0.10.2
0.10.3
0.10.4
0.10.5
0.10.6
0.11.0
0.11.1
0.11.2a2
0.11.2
0.11.3
0.11.4
0.11.5
0.11.6
0.11.7
0.11.8
0.11.9
0.11.10
0.11.11
0.11.12
0.12.0
0.13.0
0.13.1
0.14.0
0.14.1
0.14.2
0.14.3
0.15.0
0.16.0
0.16.1
0.17.0
0.18.0
0.18.1
0.19.0
0.20.0
0.20.1
0.21.0
0.21.1

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-wrhw-j3f9-8vc6/GHSA-wrhw-j3f9-8vc6.json"