SEPTEMBER 7, 2026
Live Feed
Back to database
Case File

CVE-2026-47416

CRITICAL · CVSS 9.6 EPSS 0.21% 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 susceptible to vertical privilege escalation due to inadequate access controls on the role update functionality. This vulnerability allows unauthorized users to elevate their privileges by modifying the roles of other members without proper validation of their own permissions. Organizations using affected versions should prioritize upgrading to version 0.1.4 or later to mitigate this critical risk.

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-47416
Severity
CRITICAL
CVSS
9.6
EPSS
0.21%

Original NVD Description

PraisonAI Platform is the platform layer for the PraisonAI multi-agent teams system. Versions prior to 0.1.4 are vulnerable to vertical privilege escalation. The `PATCH /workspaces/{workspace_id}/members/{user_id}` endpoint is gated by `require_workspace_member(workspace_id)`, which defaults to `min_role="member"` and is never overridden by the route. The handler then calls `MemberService.update_role(workspace_id, user_id, body.role)` which sets the target member's role to whatever the request body specifies, with no check that the caller has owner-or-admin privilege, no check that the new role is not higher than the caller's own, and no check that the caller is not silently promoting themselves. PraisonAI Platform version 0.1.4 patches the issue.