Severity by source
AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
Primary rating from Vendor (https://github.com/MervinPraison/PraisonAI) · only source for this CVE.
CVSS VectorVendor: https://github.com/MervinPraison/PraisonAI
Lifecycle Timeline
3DescriptionCVE.org
Summary
Type: Insecure Direct Object Reference. The project CRUD endpoints (GET / PATCH / DELETE /workspaces/{workspace_id}/projects/{project_id} and GET .../{project_id}/stats) gate access on require_workspace_member(workspace_id) only, then resolve project_id through ProjectService.get(project_id) / update(project_id, ...) / delete(project_id) / get_stats(project_id). None of these calls thread workspace_id through to constrain the lookup. A user who is a member of any workspace W1 can read, modify, delete, or read stats for projects that belong to a different workspace W2. File: src/praisonai-platform/praisonai_platform/services/project_service.py, lines 47-108; route handlers at src/praisonai-platform/praisonai_platform/api/routes/projects.py, lines 51-108. Root cause: identical to the agent and issue IDORs in this codebase. The route accepts workspace_id from URL, uses it solely for the membership gate, then calls ProjectService.get(project_id) which is session.get(Project, project_id) - a primary-key-only lookup with no workspace_id predicate. update and delete call self.get(project_id) first, inheriting the gap. get_stats likewise has no workspace check.
Affected Code
File 1: src/praisonai-platform/praisonai_platform/services/project_service.py, lines 47-108.
class ProjectService:
...
async def get(self, project_id: str) -> Optional[Project]:
"""Get project by ID."""
return await self._session.get(Project, project_id)
# <-- BUG: no workspace_id predicate
async def update(
self,
project_id: str,
...
) -> Optional[Project]:
project = await self.get(project_id)
# <-- inherits the gap
...
async def delete(self, project_id: str) -> bool:
project = await self.get(project_id)
# <-- inherits the gap
...
async def get_stats(self, project_id: str) -> dict:
...
# <-- also no workspace check; returns issue counts for any projectFile 2: src/praisonai-platform/praisonai_platform/api/routes/projects.py, lines 51-108.
@router.get("/{project_id}", response_model=ProjectResponse)
async def get_project(
workspace_id: str,
project_id: str,
user: AuthIdentity = Depends(require_workspace_member),
session: AsyncSession = Depends(get_db),
):
svc = ProjectService(session)
project = await svc.get(project_id)
# <-- workspace_id never threaded through
if project is None:
raise HTTPException(status_code=404, detail="Project not found")
return ProjectResponse.model_validate(project)
@router.patch("/{project_id}", response_model=ProjectResponse)
async def update_project(...):
svc = ProjectService(session)
project = await svc.update(project_id, title=body.title, ...)
# <-- writes to any project in the DB
@router.delete("/{project_id}", ...)
async def delete_project(...):
deleted = await svc.delete(project_id)
# <-- deletes any project in the DB
@router.get("/{project_id}/stats")
async def project_stats(...):
return await svc.get_stats(project_id)
# <-- returns stats for any project in the DBWhy it's wrong: workspace_id from the route is treated as a UI hint (gates "are you in some workspace W?") rather than an authoritative predicate (should also gate "is the project you are addressing actually inside W?"). The MemberService in this same codebase uses a composite (workspace_id, user_id) key and demonstrates the safe pattern; the project service simply did not apply it.
Exploit Chain
- Attacker registers a workspace
W_attacker(where they are a member) and harvests a target project UUIDP_T. Project IDs leak through the activity feed (act_svc.logrecordsentity_id), issue records (every issue carriesproject_id), webhook payloads, error messages, exported issue dumps, or operator screenshots. State: attacker holdsP_T. - Attacker authenticates and sends
GET /workspaces/W_attacker/projects/P_T.require_workspace_member(W_attacker, attacker)passes. State: control flow entersget_projectwithworkspace_id=W_attacker, project_id=P_T. ProjectService.get(P_T)runssession.get(Project, "P_T"), which isSELECT * FROM projects WHERE id = 'P_T' LIMIT 1with noworkspace_idfilter. The row is returned:title,description(often the project's confidential roadmap),status,lead_type,lead_id,icon,created_at,workspace_id(the foreign workspace's UUID is itself disclosed). State: response body is the JSON-serialised foreign project.- Attacker repeats with
PATCH /workspaces/W_attacker/projects/P_Tand{"title": "<reset>", "description": "<wiped>", "status": "archived"}.update_projectcallssvc.update(P_T, ...)and mutates the foreign row. State: target project is silently re-titled, re-described, and archived. - Attacker calls
DELETE /workspaces/W_attacker/projects/P_Tto delete the foreign project entirely. State: target project is gone (every issue still referencing it now has a danglingproject_id). - Attacker calls
GET /workspaces/W_attacker/projects/P_T/statsto read aggregate issue counts (open/closed/in-progress) for the foreign project - useful for competitive intelligence even when full-issue read is not possible. - Final state: any attacker with one workspace-member token can enumerate, exfiltrate, rewrite, and delete every project in the multi-tenant deployment given the project UUIDs.
Security Impact
Severity: sec-high. CVSS: network attack, low complexity, low privileges, no user interaction, scope unchanged, high confidentiality (project content + cross-workspace metadata via the leaked workspace_id field), high integrity (arbitrary writes / deletes), no availability claim (issue rows survive parent-project deletion). Attacker capability: read, edit, archive, delete, and stats-fingerprint any project in the multi-tenant deployment given the project UUID. Beyond plain content disclosure, the response also includes workspace_id, allowing the attacker to map the deployment's workspace topology (which workspaces exist, which projects each owns). Preconditions: praisonai-platform is deployed multi-tenant; the attacker has any membership token; the target project's UUID is known or guessable. Differential: source-inspection-verified end-to-end. The asymmetry between ProjectService.get(project_id) (no workspace check) and MemberService.get(workspace_id, user_id) (composite key check) confirms the gap. With the suggested fix below, ProjectService.get(workspace_id, project_id) returns None for foreign-workspace projects and the route handler returns 404.
Suggested Fix
Same shape as the companion agent and issue advisories. Make the resource-lookup query include the workspace predicate; treat foreign-workspace rows as 404.
--- a/src/praisonai-platform/praisonai_platform/services/project_service.py
+++ b/src/praisonai-platform/praisonai_platform/services/project_service.py
@@ -45,9 +45,12 @@ class ProjectService:
await self._session.flush()
return project
- async def get(self, project_id: str) -> Optional[Project]:
- """Get project by ID."""
- return await self._session.get(Project, project_id)
+ async def get(self, workspace_id: str, project_id: str) -> Optional[Project]:
+ """Get project by ID, scoped to a workspace."""
+ stmt = select(Project).where(
+ Project.id == project_id, Project.workspace_id == workspace_id
+ )
+ return (await self._session.execute(stmt)).scalar_one_or_none()
async def update(
self,
+ workspace_id: str,
project_id: str,
...
) -> Optional[Project]:
- project = await self.get(project_id)
+ project = await self.get(workspace_id, project_id)
- async def delete(self, project_id: str) -> bool:
+ async def delete(self, workspace_id: str, project_id: str) -> bool:
- project = await self.get(project_id)
+ project = await self.get(workspace_id, project_id)
- async def get_stats(self, project_id: str) -> dict:
+ async def get_stats(self, workspace_id: str, project_id: str) -> dict:
+
# Also constrain the underlying issue counts query by workspace_id.Update the route handlers in routes/projects.py to thread workspace_id through every call. The same single-key-lookup pattern is filed separately for AgentService, IssueService, CommentService, and LabelService.
AnalysisAI
We need to produce a JSON response. The input includes a CVE description, CVSS, CWE, EPSS, patch availability, CPE, tags, references. We'll synthesize all.
First, interpret the data:
- CVE ID: CVE-2026-47418
- Description: Insecure Direct Object Reference (IDOR) in praisonai-platform. Project CRUD endpoints (GET/PATCH/DELETE /workspaces/{workspace_id}/projects/{project_id} and GET /stats) only check workspace membership via require_workspace_member on that workspace_id, but do not verify that the project_id belongs to that workspace. So a member of any workspace can access projects in other workspaces. Impact: read, modify, delete, read stats of any project if project UUID known.
- CVSS: 8.1, vector CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N (high confidentiality and integrity, no availability impact).
- CWE: CWE-639 (Authorization Bypass Through User-Controlled Key).
- EPSS: 0.03% (percentile 10%), so low exploitation probability.
- Patch: Available from vendor. From EUVD: affected versions praisonai-platform < 0.1.4, fixed in 0.1.4. References to GitHub advisory, commit, PR.
- CPE: pkg:pip/praisonai-platform.
- Tags: Python, Authentication Bypass (though it's IDOR, auth bypass may be tag).
- ENISA EUVD ID: EUVD-2026-46337.
- References: GitHub advisory GHSA-943m-6wx2-rc2j, commit ef79b7a... (likely shows fix), PR #1685.
- Source code evidence from GitHub shows advisory details and commit diff that includes many changes (the diff snippet includes unrelated changes in SECURITY_TRIAGE.md, calculator, etc., but the relevant fix is in deps.py adding require_issue_in_workspace? Actually the commit diff shows addition of require_issue_in_workspace function, but that's for issues? The advisory is about projects, not issues. Wait, the commit diff shown spans multiple files, but the project IDOR fix might be in the commit but not shown in the diff snippet? The advisory description suggests fixing ProjectService methods to include workspace_id predicate. However, the com
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 technique Authentication Bypass
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-46337
GHSA-943m-6wx2-rc2j