CSIRTS // UNIFIED SECURITY ADVISORY FEEDSYS ● ONLINE · POWERED BY INTELFUSIONS.COM

CVE-2026-57132

highCVSS 8.2covered by 1 sourcefirst seen 2026-06-18
Summary Setting PRAISONAI_CALL_AUTH=disabled completely disables all authentication on the /api/v1/agents/{id}/invoke endpoint. This bypass is advertised in the application's own error messages, making it likely to appear in production Docker and Compose configurations. Details src/praisonai/praisonai/api/agent_invoke.py:32 _CALL_AUTH_DISABLED = os.getenv('PRAISONAI_CALL_AUTH', '').lower() == 'disabled' async def verify_token(...) -> None: if _CALL_AUTH_DISABLED: return # all authentication skipped unconditionally The application's own error message advertises the bypass: "Set CALL_SERVER_TOKEN or PRAISONAI_CALL_AUTH=disabled to run without authentication." This causes the setting to appear in Docker/Compose configurations as a convenience option. Proof of Concept import os os.environ["PRAISONAI_CALL_AUTH"] = "disabled" verify_token() now returns immediately for any request POST /api/v1/agents/any-agent/invoke → 200 OK (no token needed) Common vulnerable deployment: docker-compose.yml environment: - PRAISONAI_CALL_AUTH=disabled # auth completely disabled Impact Full unauthenticated access to the agent invocation API. Any agent registered on the server can be triggered without credentials, potentially executing arbitrary actions depending on the agent's configured tools.

⚡ Watch CVE-2026-57132

Get an email if CVE-2026-57132 is added to CISA KEV, gains public exploit code, or a new advisory cites it — max one per day, one-click unsubscribe.

Advisory coverage (1)

External references

NVD record for CVE-2026-57132

CVE.org record

Embed the live status

CVE-2026-57132 live status badge — this badge updates automatically when the KEV or exploit status changes. How to embed it →

[![CVE-2026-57132 status](https://www.csirts.com/badge/CVE-2026-57132)](https://www.csirts.com/cve/CVE-2026-57132)