CVE-2026-47393 Sumo Logic CSE · Sumo

Detect PraisonAI Flask API Server Deployed Without Authentication (CVE-2026-47393) in Sumo Logic CSE

PraisonAI versions <= 4.6.39, when deployed via `deploy --type api`, expose a Flask HTTP server with authentication disabled by default (CWE-306, CWE-1188). Any unauthenticated actor with network access can invoke the AI agent API, exfiltrate model outputs, or use the endpoint as a proxy for downstream attacks. CVSS 9.8 critical; public PoC available.

MITRE ATT&CK

Tactic
Initial Access Defense Evasion Exfiltration

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=*endpoint* OR _sourceCategory=*network*
| parse "cmdline=*" as cmdline nodrop
| parse "dest_port=*" as dest_port nodrop
| parse "src_ip=*" as src_ip nodrop
| where (matches(cmdline, "(?i).*praisonai.*deploy.*api.*"))
   OR (dest_port in ("5000", "8000", "8080", "8888")
       AND !matches(src_ip, "^(10\\.|172\\.(1[6-9]|2[0-9]|3[01])\\.|192\.168\.)"))
| if (matches(cmdline, "(?i).*praisonai.*deploy.*api.*"), "PraisonAI deploy command", "External Flask port hit") as risk_signal
| count by _sourceHost, src_ip, dest_port, cmdline, risk_signal
| order by _count desc
critical severity medium confidence

Sumo Logic query surfacing PraisonAI API deploy invocations and external connections to Flask ports, grouped by host and source IP.

Data Sources

Sumo Logic Installed Collector (Endpoint)Sumo Logic Cloud Syslog

Required Tables

_sourceCategory=*endpoint*_sourceCategory=*network*

False Positives & Tuning

  • Shared Python environments where other Flask apps run on the same default ports
  • Monitoring agents performing synthetic checks against the API endpoint
  • Internal CI systems generating external-looking IPs through NAT

Other platforms for CVE-2026-47393


Testing Methodology

Validate this detection against 4 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 1Deploy PraisonAI API without authentication and verify unauthenticated access

    Expected signal: Process creation event for python/praisonai with command line containing 'deploy --type api'; network socket bound to 0.0.0.0:5000; HTTP 200 response with no Authorization header in request

  2. Test 2Enumerate PraisonAI API endpoints unauthenticated from a remote host

    Expected signal: Inbound NetworkConnectIP4/NetworkConnectionEvents on port 5000 from a non-RFC1918 IP; HTTP GET and POST requests in web/proxy logs with no authentication headers

  3. Test 3Verify PraisonAI package version on a Linux host using pip

    Expected signal: Process creation for pip/python3 with 'praisonai' argument in command line; stdout output containing version string <= 4.6.39

  4. Test 4Simulate attacker submitting agent task via unauthenticated PraisonAI API

    Expected signal: HTTP POST to /api endpoint with no Authorization or Cookie headers; PraisonAI process spawning child processes to execute agent task; outbound connections if agent task triggers tool use

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections