VYPR

PyPI package

praisonai

pkg:pypi/praisonai

Vulnerabilities (50)

  • CVE-2026-40287HigApr 14, 2026
    affected < 4.5.139fixed 4.5.139

    PraisonAI is a multi-agent teams system. Versions 4.5.138 and below are vulnerable to arbitrary code execution through automatic, unsanitized import of a tools.py file from the current working directory. Components including call.py (import_tools_from_file()), tool_resolver.py (_

  • CVE-2026-40159MedApr 10, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, PraisonAI’s MCP (Model Context Protocol) integration allows spawning background servers via stdio using user-supplied command strings (e.g., MCP("npx -y @smithery/cli ...")). These commands are executed through Python’s s

  • CVE-2026-40158HigApr 10, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, PraisonAI's AST-based Python sandbox can be bypassed using type.__getattribute__ trampoline, allowing arbitrary code execution when running untrusted agent code. The _execute_code_direct function in praisonaiagents/tools/

  • CVE-2026-40157HigApr 10, 2026
    affected >= 2.7.2, < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, cmd_unpack in the recipe CLI extracts .praison tar archives using raw tar.extract() without validating archive member paths. A .praison bundle containing ../../ entries will write files outside the intended output directo

  • CVE-2026-40156HigApr 10, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, PraisonAI automatically loads a file named tools.py from the current working directory to discover and register custom agent tools. This loading process uses importlib.util.spec_from_file_location and immediately executes

  • CVE-2026-40154CriApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, PraisonAI treats remotely fetched template files as trusted executable code without integrity verification, origin validation, or user confirmation, enabling supply chain attacks through malicious templates. This vulnerab

  • CVE-2026-40151MedApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, the AgentOS deployment platform exposes a GET /api/agents endpoint that returns agent names, roles, and the first 100 characters of agent system instructions to any unauthenticated caller. The AgentOS FastAPI application

  • CVE-2026-40149HigApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, the gateway's /api/approval/allow-list endpoint permits unauthenticated modification of the tool approval allowlist when no auth_token is configured (the default). By adding dangerous tool names (e.g., shell_exec, file_wr

  • CVE-2026-40148MedApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, the _safe_extractall() function in PraisonAI's recipe registry validates archive members against path traversal attacks but performs no checks on individual member sizes, cumulative extracted size, or member count before

  • CVE-2026-40116HigApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, the /media-stream WebSocket endpoint in PraisonAI's call module accepts connections from any client without authentication or Twilio signature validation. Each connection opens an authenticated session to OpenAI's Realtim

  • CVE-2026-40115MedApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, the WSGI-based recipe registry server (server.py) reads the entire HTTP request body into memory based on the client-supplied Content-Length header with no upper bound. Combined with authentication being disabled by defau

  • CVE-2026-40114HigApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, the /api/v1/runs endpoint accepts an arbitrary webhook_url in the request body with no URL validation. When a submitted job completes (success or failure), the server makes an HTTP POST request to this URL using httpx.Asy

  • CVE-2026-40113HigApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, deploy.py constructs a single comma-delimited string for the gcloud run deploy --set-env-vars argument by directly interpolating openai_model, openai_key, and openai_base without validating that these values do not contai

  • CVE-2026-40112MedApr 9, 2026
    affected < 4.5.128fixed 4.5.128

    PraisonAI is a multi-agent teams system. Prior to 4.5.128, the Flask API endpoint in src/praisonai/api.py renders agent output as HTML without effective sanitization. The _sanitize_html function relies on the nh3 library, which is not listed as a required or optional dependency i

  • CVE-2026-40088CriApr 9, 2026
    affected < 4.5.121fixed 4.5.121

    PraisonAI is a multi-agent teams system. Prior to 4.5.121, the execute_command function and workflow shell execution are exposed to user-controlled input via agent workflows, YAML definitions, and LLM-generated tool calls, allowing attackers to inject arbitrary shell commands thr

  • CVE-2026-39891HigApr 8, 2026
    affected < 4.5.115fixed 4.5.115

    PraisonAI is a multi-agent teams system. Prior to 4.5.115, the create_agent_centric_tools() function returns tools (like acp_create_file) that process file content using template rendering. When user input from agent.start() is passed directly into these tools without escaping, t

  • CVE-2026-39890CriApr 8, 2026
    affected < 4.5.115fixed 4.5.115

    PraisonAI is a multi-agent teams system. Prior to 4.5.115, the AgentService.loadAgentFromFile method uses the js-yaml library to parse YAML files without disabling dangerous tags (such as !!js/function and !!js/undefined). This allows an attacker to craft a malicious YAML file th

  • CVE-2026-39889HigApr 8, 2026
    affected < 4.5.115fixed 4.5.115

    PraisonAI is a multi-agent teams system. Prior to 4.5.115, the A2U (Agent-to-User) event stream server in PraisonAI exposes all agent activity without authentication. The create_a2u_routes() function registers the following endpoints with NO authentication checks: /a2u/info, /a2u

  • CVE-2026-39308HigApr 7, 2026
    affected < 4.5.113fixed 4.5.113

    PraisonAI is a multi-agent teams system. Prior to 1.5.113, PraisonAI's recipe registry publish endpoint writes uploaded recipe bundles to a filesystem path derived from the bundle's internal manifest.json before it verifies that the manifest name and version match the HTTP route.

  • CVE-2026-39307HigApr 7, 2026
    affected < 4.5.113fixed 4.5.113

    PraisonAI is a multi-agent teams system. Prior to 1.5.113, The PraisonAI templates installation feature is vulnerable to a "Zip Slip" Arbitrary File Write attack. When downloading and extracting template archives from external sources (e.g., GitHub), the application uses Python's