CVE-2026-47413 Sumo Logic CSE · Sumo

Detect CVE-2026-47413: PraisonAI Platform Unauthorized Workspace Owner Privilege Escalation in Sumo Logic CSE

Detects exploitation of CVE-2026-47413, a critical privilege escalation vulnerability in praisonai-platform < 0.1.4 where any authenticated workspace member can promote arbitrary users to owner role via POST /workspaces/{id}/members without authorization checks. CVSS 9.6. PoC is publicly available.

MITRE ATT&CK

Tactic
Privilege Escalation Persistence

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=web/access OR _sourceCategory=application/logs
| parse regex "(?P<src_ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"
| parse regex "POST (?P<uri>/workspaces/[^/]+/members)"
| parse regex "\"role\":\s*\"(?P<role>[^\"]+)\""
| parse regex "\"user_id\":\s*\"(?P<target_user>[^\"]+)\""
| where !(isNull(uri))
| where role = "owner"
| json field=_raw "status_code" as http_status nodrop
| where http_status in ("200", "201")
| count by src_ip, role, target_user, uri
| sort by _count desc
critical severity medium confidence

Sumo Logic query to identify POST requests that successfully assign owner roles in PraisonAI Platform workspaces, flagging potential CVE-2026-47413 exploitation.

Data Sources

Web Access LogsApplication Logs

Required Tables

_sourceCategory=web/access_sourceCategory=application/logs

False Positives & Tuning

  • Workspace owners legitimately adding co-owners through the platform interface
  • Bulk provisioning scripts run by platform administrators during onboarding
  • Authorized API integrations that manage multi-tenant workspace permissions

Other platforms for CVE-2026-47413


Testing Methodology

Validate this detection against 3 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1Baseline member promotes arbitrary user to owner via POST /workspaces/{id}/members

    Expected signal: HTTP access logs show POST /workspaces/{id}/members with 200 or 201 status code, source IP of non-admin user, and request body containing role: owner

  2. Test 2Mass workspace owner takeover across multiple workspaces

    Expected signal: Multiple POST requests to /workspaces/*/members within a short timeframe from the same source IP, all returning 200/201, with owner role in each request body

  3. Test 3Verify unauthorized owner role assignment via GET /workspaces/{id}/members

    Expected signal: GET request to /workspaces/{id}/members returning 200 with JSON body containing owner role entry for the target user, following the POST exploitation request

Unlock Pro Content

Get the full detection package for CVE-2026-47413 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections