SEPTEMBER 7, 2026
Live Feed
Back to database
Case File

CVE-2026-47418

HIGH · CVSS 8.1 EPSS 0.29% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-07-21 · Last synced 2026-08-20

CyberRota Analysis

AI-Generated

The PraisonAI Platform versions prior to 0.1.4 are vulnerable to an Insecure Direct Object Reference, allowing users to access, modify, or delete projects across different workspaces without proper authorization. This flaw can lead to unauthorized data exposure and manipulation, posing a significant risk to data integrity and confidentiality. Organizations using affected versions should prioritize upgrading to 0.1.4 to mitigate these security risks.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-47418
Severity
HIGH
CVSS
8.1
EPSS
0.29%

Original NVD Description

PraisonAI Platform is the platform layer for the PraisonAI multi-agent teams system. Versions prior to 0.1.4 have an 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`. PraisonAI Platform version 0.1.4 patches the issue.