Severity by source
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Default deployment has no auth (api_key=None), so PR:N; a single crafted request reads any host-readable file, so AC:L with C:H and no I/A impact.
Primary rating from Vendor (https://github.com/MervinPraison/PraisonAI).
CVSS VectorVendor: https://github.com/MervinPraison/PraisonAI
Lifecycle Timeline
6DescriptionCVE.org
Summary
The fix for GHSA-9mqq-jqxf-grvw / CVE-2026-44336 is incomplete. The original advisory description named four vulnerable handlers in mcp_server/adapters/cli_tools.py:
> "registers four file-handling tools by default, praisonai.rules.create, praisonai.rules.show, praisonai.rules.delete, and praisonai.workflow.show. Each accepts a path or filename string from MCP tools/call arguments… with no containment check."
Commit 68cc9427 ("fix(security): harden MCP rules path handling…") added a _resolve_rule_path() helper and applied it to rules.create, rules.show, and rules.delete. workflow.show was left unchanged. Two adjacent handlers in the same file have the same pattern, workflow.validate and deploy.validate. Neither was mentioned in the original advisory. Both remain unchanged.
The original advisory also identified the dispatcher (server.py:281-298) as a root cause. It accepts unvalidated **kwargs from params["arguments"] with no enforcement against the tool's declared input_schema. That code is unchanged in HEAD as of commit 42221210.
Result: A single unauthenticated MCP tools/call to praisonai.workflow.show returns the contents of any file the host user can read: /etc/passwd, ~/.ssh/id_rsa, ~/.aws/credentials, or any project .env.
Affected functionality
src/praisonai/praisonai/mcp_server/adapters/cli_tools.py:
| Lines | Tool | Bug |
|---|---|---|
| 63-73 | praisonai.workflow.show | Returns the full contents of any file the host user can read |
| 42-61 | praisonai.workflow.validate | Reads any path; YAML parser error messages leak file existence + content fragments |
| 415-432 | praisonai.deploy.validate | Same pattern as workflow.validate. The config_path="deploy.yaml" default does not constrain the input. |
src/praisonai/praisonai/mcp_server/server.py:281-298, _handle_tools_call:
async def _handle_tools_call(self, params: Dict[str, Any]) -> Dict[str, Any]:
tool_name = params.get("name")
arguments = params.get("arguments", {})
...
tool = self._tool_registry.get(tool_name)
...
if asyncio.iscoroutinefunction(tool.handler):
result = await tool.handler(**arguments)
# ← no schema enforcement
else:
result = tool.handler(**arguments)Any JSON arguments the MCP client sends become a **kwargs call to the handler. The original advisory pointed at this code path as the root cause. The May 3 patch did not change it.
Default deployment is exposed
src/praisonai/praisonai/mcp_server/transports/http_stream.py:38-91:
hostdefaults to127.0.0.1, which is still reachable from any local process or container neighbour on loopback.api_keydefaults toNone. The auth check athttp_stream.py:192-198is gated onif self.api_key:, so it is skipped when no key is configured. There is no env var or config switch that turns auth on by default.- The same handlers are also reachable on the stdio transport, which is the exploitation model the original advisory was written around (Claude Desktop, Cursor, Continue.dev, Claude Code).
Other file-read sinks reachable via the same dispatcher
These were not named in the original advisory. They confirm the bug is dispatcher-wide and not limited to cli_tools.py:
mcp_server/adapters/capabilities.py:19-28,praisonai.audio.transcribe(file_path). Opens any host file and ships it to OpenAI Whisper.mcp_server/adapters/extended_capabilities.py:47-62,praisonai.files.create(file_path). Uploads any host file to OpenAI Files. A follow-up call topraisonai.files.content(file_id)(extended_capabilities.py:103-113) returns the bytes.mcp_server/adapters/extended_capabilities.py:243-258,praisonai.ocr_extract(image_path). Opens any image, returns OCR text.
The three handlers in cli_tools.py are the most direct primitives, since they echo the file content back without an OpenAI round-trip.
Proof of Concept
Layout
PraisonAI/
└── poc/
├── start_mcp_server.sh ← starts the real MCP server
├── run_mcp_poc_video.sh ← runs the attack with curl
├── venv/
└── output/
├── mcp_server_run.log
├── mcp_attacker_run.log
└── synthetic_credentials.txt (PoC-only fake creds)start_mcp_server.sh run_mcp_poc_video.sh
The server starter runs the real MCPServer class with register_cli_tools(), same code path praisonai mcp serve --transport http-stream uses. No mocks.
How to reproduce
Terminal 1, start the server:
cd PraisonAI
bash poc/start_mcp_server.shBoots MCPServer on 127.0.0.1:8766/mcp with no auth, matching the documented default api_key=None.
Terminal 2, run the attack:
cd PraisonAI
bash poc/run_mcp_poc_video.shSix numbered steps. Each one prints the action, runs one curl, prints the JSON-RPC response.
workflow.validate leaks /etc/hosts:
{ "result": { "content": [{ "type": "text",
"text": "YAML error: while scanning for the next token\nfound character '\\t' that cannot start any token\n in \"/etc/hosts\", line 7, column 10" }] } }The parser error message confirms the file exists and includes a fragment of its content.
deploy.validate leaks ~/.ssh/known_hosts:
{ "result": { "content": [{ "type": "text",
"text": "Error: expected '<document start>', but found '<scalar>'\n in \"/Users/<victim>/.ssh/known_hosts\", line 1, column 13" }] } }workflow.show exfiltrates a credential file:
{ "result": { "content": [{ "type": "text",
"text": "
# AWS-style credentials (SYNTHETIC, for PoC only)\n[default]\naws_access_key_id = AKIA-FAKE-EXFIL-KEY-FOR-POC\naws_secret_access_key = synthetic-secret-do-not-actually-exist-12345\n\n
# .env-style secrets\nDATABASE_URL=postgres://app:hunter2@db.internal/prod\nSLACK_BOT_TOKEN=xoxb-FAKE-TOKEN-for-poc-only\nOPENAI_API_KEY=sk-FAKE-FOR-POC\n" }] } }The PoC writes its own synthetic credential file so the demonstration does not depend on the reviewer's real secrets. The same call reads ~/.ssh/id_rsa, ~/.aws/credentials, or any project .env if you point it there.
https://github.com/user-attachments/assets/09511e66-6a52-4fe3-a303-91d1f99cd27a
Impact
- Confidentiality, High. Any file the praisonai user can read becomes available to the MCP caller. Typical targets are host SSH keys, cloud credentials, API tokens, project
.envfiles,~/.netrc,~/.docker/config.json, browser cookie databases, and the system password file. - No authentication required. The default is
api_key=None(http_stream.py:91). The auth check athttp_stream.py:192-198is wrapped inif self.api_key:, so it does not run when no key is configured. - No operator misconfiguration required. This is the documented default.
- The original advisory's exploitation model still applies. An MCP-connected LLM whose context contains attacker-controlled web pages, documents, or emails can be steered into issuing the same
tools/calland returning the response. No operator click is needed beyond "summarise this page".
The original advisory was Critical because the write primitive (rules.create) chained to RCE through .pth injection. This finding is the read half of the same shape. Read alone is enough to take SSH keys, cloud credentials, and tokens, which is usually how the rest of the host gets compromised through credential reuse.
Suggested fix
There are two ways to fix this. Doing both is fine. The dispatcher fix is preferred because it closes the same class of bug for every handler that takes a path-shaped argument, including the OpenAI-backed ones called out earlier.
1. Enforce tool.input_schema in the dispatcher
mcp_server/server.py:281-298. The schemas are already built reflectively from each handler's signature in registry.py:320-376. Validate arguments against the registered schema before calling tool.handler(**arguments) and reject anything that does not match. This covers workflow.show, workflow.validate, deploy.validate, audio.transcribe, files.create, ocr_extract, and any handler added later.
2. Per-handler containment
This is the same shape as the existing _resolve_rule_path() helper added in commit 68cc9427:
# cli_tools.py
def _resolve_workflow_path(file_path: str) -> Path:
"""Restrict workflow file_path to an allowed root."""
if not isinstance(file_path, str) or not file_path:
raise ValueError("file_path must be a non-empty string")
if "\x00" in file_path or file_path.startswith("~"):
raise ValueError(f"invalid file_path: {file_path!r}")
workflows_root = Path(os.path.expanduser("~/.praison/workflows")).resolve()
workflows_root.mkdir(parents=True, exist_ok=True)
candidate = (workflows_root / file_path).resolve()
try:
candidate.relative_to(workflows_root)
except ValueError:
raise ValueError(f"invalid file_path: {file_path!r}")
return candidateApply the same helper to:
workflow_show(file_path)andworkflow_validate(file_path). Restrict to a workflow root.deploy_validate(config_path). Restrict to a deploy-config root or an explicit allowlist.- The
default="deploy.yaml"fallback resolves into the user's current working directory. Containment is what fixes the bug, but removing that default also makes prompt-injection chains harder.
AnalysisAI
Unauthenticated arbitrary file read in PraisonAI's MCP server (pip package praisonai, versions <= 4.6.39) lets a remote caller retrieve the full contents of any file the host user can read via the praisonai.workflow.show, workflow.validate, and deploy.validate tools. It is an incomplete-fix regression of CVE-2026-44336: the earlier patch added a path-containment helper to the rules.* handlers but left workflow.show and two adjacent handlers, plus the underlying kwargs dispatcher, unguarded. Publicly available exploit code exists (full PoC with server-start and curl attack scripts in the advisory); EPSS is very low at 0.07% (23rd percentile) and it is not listed in CISA KEV.
Technical ContextAI
The affected component is PraisonAI's Model Context Protocol (MCP) server, which registers CLI-backed tools in src/praisonai/praisonai/mcp_server/adapters/cli_tools.py and dispatches them through _handle_tools_call in server.py:281-298. The root cause is CWE-22 (Improper Limitation of a Pathname to a Restricted Directory / path traversal): the dispatcher forwards the JSON 'arguments' object directly as **kwargs to the tool handler without validating it against the tool's declared input_schema, and the individual handlers (workflow_show(file_path), workflow_validate(file_path), deploy_validate(config_path)) open whatever path string they receive with no containment check against an allowed root. workflow.show echoes the raw file bytes back to the caller; workflow.validate and deploy.validate leak existence and content fragments through YAML parser error messages. The same dispatcher weakness also exposes OpenAI-backed sinks (audio.transcribe, files.create/files.content, ocr_extract), confirming the flaw is dispatcher-wide rather than isolated to one handler. Affected package per CPE is pkg:pip/praisonai.
RemediationAI
Vendor-released patch: upgrade praisonai to 4.6.40 or later (pip install --upgrade praisonai), the version listed as fixed for the <=4.6.39 vulnerable range; track the change via GHSA-9cr9-25q5-8prj and PR #1684 (https://github.com/MervinPraison/PraisonAI/pull/1684). If you cannot upgrade immediately, apply specific compensating controls: set an api_key on the HTTP-stream transport so the auth gate at http_stream.py:192-198 actually enforces (it is skipped when api_key is None), which blocks unauthenticated HTTP callers but does not protect the stdio transport; avoid registering the CLI tools (do not call register_cli_tools / avoid 'praisonai mcp serve') on hosts holding sensitive files, at the cost of losing those workflow/deploy tools; and run the MCP server as a low-privilege user with no read access to SSH keys, cloud credentials, or .env files so an arbitrary read yields nothing useful. For a code-level fix consistent with the vendor's approach, port the existing _resolve_rule_path() containment pattern (commit 68cc9427) to workflow_show, workflow_validate, and deploy_validate to restrict paths to an allowed workflow/deploy root, and/or enforce tool.input_schema in the dispatcher before calling handler(**arguments) so the whole class of path-shaped sinks is closed at once.
Wazuh SIEM platform versions 4.4.0 through 4.9.0 contain an unsafe deserialization vulnerability in the DistributedAPI t
BentoML version 1.4.2 and earlier contains an unauthenticated remote code execution vulnerability through insecure deser
pgAdmin 4 contains critical remote code execution vulnerabilities in the Query Tool download and Cloud Deployment endpoi
The renderLocalView function in render/views.py in graphite-web in Graphite 0.9.5 through 0.9.10 uses the pickle Python
BentoML is a Python library for building online serving systems optimized for AI apps and model inference. Rated critica
OpenSSL before 0.9.8za, 1.0.0 before 1.0.0m, and 1.0.1 before 1.0.1h does not properly restrict processing of ChangeCiph
pyLoad download manager version prior to 0.5.0b3.dev77 exposes the Flask SECRET_KEY through an unauthenticated endpoint.
Langflow (a visual LLM pipeline builder) contains a critical unauthenticated code execution vulnerability (CVE-2026-3301
In Mercurial before 4.1.3, "hg serve --stdio" allows remote authenticated users to launch the Python debugger, and conse
Unauthenticated remote code execution affects Kestra OSS (the open-source event-driven orchestration platform) prior to
Unauthenticated remote code execution in Marimo ≤0.20.4 allows attackers to execute arbitrary system commands via the `/
pyLoad is the free and open-source Download Manager written in pure Python. Rated medium severity (CVSS 5.3), this vulne
Same weakness CWE-22 – Path Traversal
View allSame technique Path Traversal
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-46302
GHSA-9cr9-25q5-8prj