The probability is the direct output of the EPSS model, and conveys an overall sense of the threat of exploitation in the wild. The percentile measures the EPSS probability relative to all known EPSS scores. Note: This data is updated daily, relying on the latest available EPSS model version. Check out the EPSS documentation for more details.
In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade chainlit to version 2.12.0 or higher.
chainlit is a Build Conversational AI.
Affected versions of this package are vulnerable to Command Injection through the validate_mcp_command() flow in backend/chainlit/mcp.py and the /mcp stdio connect handler. An attacker can execute arbitrary OS commands on the server by sending a POST /mcp request with a crafted fullCommand such as npx -y -c 'PAYLOAD'. When features.mcp.enabled = true, the injected command runs with the privileges of the Chainlit process before the MCP handshake completes, enabling remote code execution and full host compromise.
Workarounds
features.mcp.enabled = false in .chainlit/config.toml to disable /mcp entirely and block the unauthenticated command-injection path./mcp requires an authenticated session, which removes the unauthenticated attack path.