CVE-2026-61426
Received Received - Intake

PraisonAI Insecure Default Configuration Exposes API Endpoints

Vulnerability report for CVE-2026-61426, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-11

Last updated on: 2026-07-11

Assigner: VulnCheck

Description

PraisonAI before 1.7.3 contains an insecure default configuration that binds to all interfaces with no API key requirement and wildcard CORS. Unauthenticated attackers can call GET /api/agents to read agent instructions and system prompts, or POST /api/chat to invoke agents without authentication.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-11
Last Modified
2026-07-11
Generated
2026-07-11
AI Q&A
2026-07-11
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
praisonai praisonai to 1.7.3 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-200 The product exposes sensitive information to an actor that is not explicitly authorized to have access to that information.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

PraisonAI versions before 1.7.3 have an insecure default configuration that causes the server to bind to all network interfaces without requiring an API key and enables wildcard CORS with credentials.

Because authentication middleware is only activated when an API key is explicitly set, this default setup leaves critical endpoints accessible to any network peer without authentication.

  • GET /api/agents endpoint allows attackers to read sensitive agent instructions and system prompts.
  • POST /api/chat endpoint allows attackers to invoke agents without authentication.

This vulnerability arises from missing authentication checks, permissive CORS settings, and binding to all interfaces, enabling unauthenticated attackers to access and misuse agent data and functionality.

Impact Analysis

This vulnerability can have significant impacts including unauthorized access to sensitive agent metadata and system prompts.

Attackers can execute arbitrary agent commands without authentication, potentially abusing large language model (LLM) costs or tools integrated with PraisonAI.

Because the server binds to all interfaces and lacks authentication by default, any network peer can exploit these endpoints, leading to confidentiality breaches and unauthorized actions.

Detection Guidance

This vulnerability can be detected by checking if the PraisonAI server is binding to all network interfaces (0.0.0.0) without requiring an API key and if the endpoints /api/agents and /api/chat are accessible without authentication.

You can use network scanning or HTTP request commands to test accessibility of these endpoints.

  • Use curl to send a GET request to check if /api/agents is accessible without authentication: curl -v http://<server-ip>:<port>/api/agents
  • Use curl to send a POST request to /api/chat to see if agent invocation is possible without authentication: curl -v -X POST http://<server-ip>:<port>/api/chat -d '{}'
  • Check the server binding address by inspecting the PraisonAI configuration or running netstat to see if it listens on 0.0.0.0: netstat -tuln | grep <port>
Mitigation Strategies

Immediate mitigation steps include changing the default configuration of PraisonAI to enhance security.

  • Bind the PraisonAI server to localhost (127.0.0.1) instead of all network interfaces (0.0.0.0) to restrict external access.
  • Configure and require an API key for authentication to ensure that only authorized users can access the API endpoints.
  • Disable wildcard CORS settings with credentials to prevent unauthorized cross-origin requests.
  • Upgrade PraisonAI to version 1.7.3 or later where these insecure defaults are fixed.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-61426. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart